You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
369 B

# 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}