archive: qi/qirc: adjust blacklist since tarlz is now the default tar(1) implementati...
[dragora.git] / archive / st / config.mk
blobc41397b22798bd331a5580f94ba59daaebd84398
1 # st version
2 VERSION = 0.8.1
4 # Customize below to fit your system
6 # paths
7 PREFIX = /usr
8 MANPREFIX = $(PREFIX)/share/man
10 X11INC = /usr/include/X11
11 X11LIB = /usr/lib/X11
13 # includes and libs
14 INCS = -I$(X11INC) \
15 `pkg-config --cflags fontconfig` \
16 `pkg-config --cflags freetype2`
17 LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \
18 `pkg-config --libs fontconfig` \
19 `pkg-config --libs freetype2`
21 # flags
22 CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
23 STCFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS)
24 STLDFLAGS = $(LIBS) $(LDFLAGS)
26 # compiler and linker
27 CC = cc