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.

33 lines
734 B

18 years ago
18 years ago
18 years ago
18 years ago
  1. # dwm version
  2. VERSION = 5.6
  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. # Xinerama, un-comment if you want it
  10. XINERAMALIBS = -L${X11LIB} -lXinerama
  11. XINERAMAFLAGS = -DXINERAMA
  12. # includes and libs
  13. INCS = -I. -I/usr/include -I${X11INC}
  14. LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
  15. # flags
  16. CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
  17. CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
  18. #CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
  19. LDFLAGS = -g ${LIBS}
  20. #LDFLAGS = -s ${LIBS}
  21. # Solaris
  22. #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
  23. #LDFLAGS = ${LIBS}
  24. # compiler and linker
  25. CC = cc