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.

27 lines
534 B

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