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
520 B

18 years ago
18 years ago
18 years ago
  1. # Customize to fit your system
  2. # paths
  3. PREFIX = /usr/local
  4. MANPREFIX = ${PREFIX}/share/man
  5. X11INC = /usr/X11R6/include
  6. X11LIB = /usr/X11R6/lib
  7. # includes and libs
  8. INCS = -I/usr/lib -I${X11INC}
  9. LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
  10. # dwm version
  11. VERSION = 0.6
  12. # default config.h
  13. CONFIG = config.h
  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