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.

32 lines
864 B

19 years ago
19 years ago
19 years ago
19 years ago
  1. # Customize to fit your system
  2. # paths
  3. PREFIX = /usr/local
  4. CONFPREFIX = ${PREFIX}/etc
  5. MANPREFIX = ${PREFIX}/share/man
  6. X11INC = /usr/X11R6/include
  7. X11LIB = /usr/X11R6/lib
  8. VERSION = 0.0
  9. # includes and libs
  10. LIBS = -L${PREFIX}/lib -L/usr/lib -lc -lm -L${X11LIB} -lX11
  11. # Linux/BSD
  12. CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
  13. -DVERSION=\"${VERSION}\"
  14. LDFLAGS = ${LIBS}
  15. #CFLAGS += -W -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Waggregate-return -Wnested-externs -Winline -Wwrite-strings -Wundef -Wsign-compare -Wmissing-prototypes -Wredundant-decls
  16. #CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
  17. # -DVERSION=\"${VERSION}\"
  18. #LDFLAGS = -g ${LIBS}
  19. # Solaris
  20. #CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\"
  21. #LIBS += -lnsl -lsocket
  22. AR = ar cr
  23. CC = cc
  24. RANLIB = ranlib