1
0
Fork 0
slstatus/config.mk

21 lines
355 B
Makefile
Raw Normal View History

2017-08-10 15:32:10 -04:00
# slstatus version
VERSION = 0
2017-12-02 19:40:38 -05:00
# customize below to fit your system
2017-08-10 15:32:10 -04:00
2017-12-02 19:40:38 -05:00
# paths
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
2016-09-04 18:40:47 -04:00
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
2017-08-10 15:32:10 -04:00
# 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