# X11 lib location # For OpenBSD: replace 'local' with 'X11R6' # For Linux: figure out yourself X11INC = /usr/local/include X11LIB = /usr/local/lib # includes and libs INCS = -I. -I/usr/include -I${X11INC} LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lXtst # flags CFLAGS = -O2 ${INCS} -DVERSION=\"${VERSION}\" LDFLAGS = ${LIBS} # compiler and linker CC = cc LD = ${CC}