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.

25 lines
472 B

18 years ago
18 years ago
18 years ago
  1. # dwm version
  2. VERSION = 2.4
  3. # Customize below to fit your system
  4. # paths
  5. PREFIX = /usr/local
  6. MANPREFIX = ${PREFIX}/share/man
  7. X11INC = /usr/X11R6/include
  8. X11LIB = /usr/X11R6/lib
  9. # includes and libs
  10. INCS = -I. -I/usr/include -I${X11INC}
  11. LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
  12. # flags
  13. CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
  14. LDFLAGS = ${LIBS}
  15. #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
  16. #LDFLAGS = -g ${LIBS}
  17. # compiler and linker
  18. CC = cc
  19. LD = ${CC}