My slstatus configuration
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.

config.mk 446 B

8 years ago
8 years ago
12345678910111213141516171819202122
  1. NAME = slstatus
  2. VERSION = 1.0
  3. # Customize below to fit your system
  4. PREFIX = /usr/local
  5. X11INC = /usr/X11R6/include
  6. X11LIB = /usr/X11R6/lib
  7. # includes and libs
  8. INCS = -I. -I/usr/include -I${X11INC}
  9. LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound
  10. # flags
  11. CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
  12. CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS}
  13. LDFLAGS = ${LIBS}
  14. # compiler and linker
  15. CC = cc