DWM Status Bar
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
613 B

6 years ago
  1. NAME = dwmstatus
  2. VERSION = 1.0
  3. # Customize below to fit your system
  4. # paths
  5. PREFIX = /usr
  6. MANPREFIX = ${PREFIX}/share/man
  7. X11INC = /usr/X11R6/include
  8. X11LIB = /usr/X11R6/lib
  9. # includes and libs
  10. INCS = -I. -I/usr/include -I${X11INC}
  11. LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
  12. # flags
  13. CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
  14. CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
  15. #CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
  16. LDFLAGS = -g ${LIBS}
  17. #LDFLAGS = -s ${LIBS}
  18. # Solaris
  19. #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
  20. #LDFLAGS = ${LIBS}
  21. # compiler and linker
  22. CC = cc