Track slstatus source files

This commit is contained in:
Hektor Misplon
2020-11-15 19:15:09 +01:00
parent 37fb128ea3
commit fd2dcca4e7
33 changed files with 2749 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# slstatus version
VERSION = 0
# customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
# flags
CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os
LDFLAGS = -L$(X11LIB) -s
LDLIBS = -lX11
# compiler and linker
CC = cc