Configuration of dwm for Mac Computers
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
522 B

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