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.

29 lines
579 B

18 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
  11. X11LIBS = -L${X11LIB} -lX11
  12. # Linux/BSD
  13. CFLAGS = -g -Wall -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
  14. -DVERSION=\"${VERSION}\"
  15. LDFLAGS = -g ${LIBS}
  16. X11LDFLAGS = ${LDFLAGS} ${X11LIBS}
  17. # Solaris
  18. #CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\"
  19. #LIBS += -lnsl -lsocket
  20. AR = ar cr
  21. CC = cc
  22. RANLIB = ranlib