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

3 years ago
  1. # X11 lib location
  2. # For OpenBSD: replace 'local' with 'X11R6'
  3. # For Linux: figure out yourself
  4. X11INC = /usr/local/include
  5. X11LIB = /usr/local/lib
  6. # includes and libs
  7. INCS = -I. -I/usr/include -I${X11INC}
  8. LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lXtst
  9. # flags
  10. CFLAGS = -O2 ${INCS} -DVERSION=\"${VERSION}\"
  11. LDFLAGS = ${LIBS}
  12. # compiler and linker
  13. CC = cc
  14. LD = ${CC}