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.
 
 
 
 

21 lines
355 B

  1. # slstatus version
  2. VERSION = 0
  3. # customize below to fit your system
  4. # paths
  5. PREFIX = /usr/local
  6. MANPREFIX = $(PREFIX)/share/man
  7. X11INC = /usr/X11R6/include
  8. X11LIB = /usr/X11R6/lib
  9. # flags
  10. CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE
  11. CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os
  12. LDFLAGS = -L$(X11LIB) -s
  13. LDLIBS = -lX11
  14. # compiler and linker
  15. CC = cc