Configuration file for DWM on MacBook Air
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.

31 lines
652 B

18 years ago
18 years ago
18 years ago
18 years ago
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 -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 = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
  16. # -DVERSION=\"${VERSION}\"
  17. #LDFLAGS = -g ${LIBS}
  18. # Solaris
  19. #CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\"
  20. #LIBS += -lnsl -lsocket
  21. AR = ar cr
  22. CC = cc
  23. RANLIB = ranlib