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.

32 lines
620 B

18 years ago
18 years ago
18 years ago
  1. # dwm version
  2. VERSION = 4.4
  3. # Customize below to fit your system
  4. # additional layouts beside floating
  5. SRC = tile.c
  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. -I/usr/include -I${X11INC}
  13. LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
  14. # flags
  15. CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
  16. LDFLAGS = -s ${LIBS}
  17. #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
  18. #LDFLAGS = -g ${LIBS}
  19. # Solaris
  20. #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
  21. #LDFLAGS = ${LIBS}
  22. #CFLAGS += -xtarget=ultra
  23. # compiler and linker
  24. CC = cc