config.mk 361 B

123456789101112131415161718192021
  1. # sic version
  2. VERSION = 1.3
  3. # Customize below to fit your system
  4. # paths
  5. PREFIX = /freon
  6. MANPREFIX = ${PREFIX}/share/man
  7. # includes and libs
  8. INCS = -I. -I/usr/include
  9. LIBS = -L/usr/lib -lc
  10. # flags
  11. CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
  12. CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
  13. LDFLAGS = -s ${LIBS}
  14. # compiler and linker
  15. CC = cc