Introduction
Introduction Statistics Contact Development Disclaimer Help
config.mk - st - simple terminal
git clone git://git.suckless.org/st
Log
Files
Refs
README
LICENSE
---
config.mk (894B)
---
1 # st version
2 VERSION = 0.9.2
3
4 # Customize below to fit your system
5
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = $(PREFIX)/share/man
9
10 X11INC = /usr/X11R6/include
11 X11LIB = /usr/X11R6/lib
12
13 PKG_CONFIG = pkg-config
14
15 # includes and libs
16 INCS = -I$(X11INC) \
17 `$(PKG_CONFIG) --cflags fontconfig` \
18 `$(PKG_CONFIG) --cflags freetype2`
19 LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \
20 `$(PKG_CONFIG) --libs fontconfig` \
21 `$(PKG_CONFIG) --libs freetype2`
22
23 # flags
24 STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
25 STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
26 STLDFLAGS = $(LIBS) $(LDFLAGS)
27
28 # OpenBSD:
29 #CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
30 #LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \
31 # `$(PKG_CONFIG) --libs fontconfig` \
32 # `$(PKG_CONFIG) --libs freetype2`
33 #MANPREFIX = ${PREFIX}/man
34
35 # compiler and linker
36 # CC = c99
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.