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.

30 lines
625 B

18 years ago
18 years ago
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. MANPREFIX = ${PREFIX}/share/man
  5. X11INC = /usr/X11R6/include
  6. X11LIB = /usr/X11R6/lib
  7. VERSION = 0.3
  8. # includes and libs
  9. LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11
  10. # Linux/BSD
  11. #CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
  12. # -DVERSION=\"${VERSION}\"
  13. #LDFLAGS = ${LIBS}
  14. CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
  15. -DVERSION=\"${VERSION}\"
  16. LDFLAGS = -g ${LIBS}
  17. # Solaris
  18. #CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\"
  19. #LIBS += -lnsl -lsocket
  20. AR = ar cr
  21. CC = cc
  22. RANLIB = ranlib