config.mk 454 B

1234567891011121314151617181920212223242526
  1. # tabbed version
  2. VERSION = 0.6
  3. # Customize below to fit your system
  4. # paths
  5. PREFIX = /usr/local
  6. MANPREFIX = ${PREFIX}/share/man
  7. # includes and libs
  8. INCS = -I. -I/usr/include
  9. LIBS = -L/usr/lib -lc -lX11
  10. # flags
  11. CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
  12. CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
  13. LDFLAGS = -s ${LIBS}
  14. # Solaris
  15. #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
  16. #LDFLAGS = ${LIBS}
  17. # compiler and linker
  18. CC = cc