aboutsummaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2009-05-10 13:17:09 +0100
committerAnselm R Garbe <garbeam@gmail.com>2009-05-10 13:17:09 +0100
commitd58dd3b8bc42ed31232e4145696d7dacb117a31c (patch)
treedfe3362a600e9491a687cd765158b70d3328333d /config.mk
parent802f1922f93aef1e4876719e107828a1fa15b1a6 (diff)
downloadst-patched-d58dd3b8bc42ed31232e4145696d7dacb117a31c.tar.bz2
st-patched-d58dd3b8bc42ed31232e4145696d7dacb117a31c.tar.xz
st-patched-d58dd3b8bc42ed31232e4145696d7dacb117a31c.zip
backport of local changes
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..62eb48f
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,31 @@
1# st version
2VERSION = 0.0
3
4# Customize below to fit your system
5
6# paths
7PREFIX = /usr/local
8MANPREFIX = ${PREFIX}/share/man
9
10X11INC = /usr/X11R6/include
11X11LIB = /usr/X11R6/lib
12
13# Xinerama, comment if you don't want it
14#XINERAMALIBS = -L${X11LIB} -lXinerama
15#XINERAMAFLAGS = -DXINERAMA
16
17# includes and libs
18INCS = -I. -I/usr/include -I${X11INC}
19LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
20
21# flags
22CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
23CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
24LDFLAGS = -s ${LIBS}
25
26# Solaris
27#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
28#LDFLAGS = ${LIBS}
29
30# compiler and linker
31CC = cc