diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-05-20 10:03:59 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-05-20 10:03:59 +0100 |
commit | 1987ae4bacf58c588bbc967434be4e39125c37f9 (patch) | |
tree | 8e78431653d5a5186b259dc24c71c6d0c2a34c83 /config.mk | |
parent | 16f373e36cb2ef0512ac8a281cc18132b2b14b98 (diff) | |
download | st-1987ae4bacf58c588bbc967434be4e39125c37f9.tar.gz st-1987ae4bacf58c588bbc967434be4e39125c37f9.zip |
added some new files for the initial rewrite of st from scratch
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..5983bcb --- /dev/null +++ b/config.mk | |||
@@ -0,0 +1,33 @@ | |||
1 | # st version | ||
2 | VERSION = 0.0 | ||
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 | # Xinerama, comment if you don't want it | ||
14 | XINERAMALIBS = -L${X11LIB} -lXinerama | ||
15 | XINERAMAFLAGS = -DXINERAMA | ||
16 | |||
17 | # includes and libs | ||
18 | INCS = -I. -I/usr/include -I${X11INC} | ||
19 | LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS} | ||
20 | |||
21 | # flags | ||
22 | CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} | ||
23 | CFLAGS = -Os ${INCS} ${CPPFLAGS} | ||
24 | LDFLAGS = -s ${LIBS} | ||
25 | #CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} ${CPPFLAGS} | ||
26 | #LDFLAGS = -g ${LIBS} | ||
27 | |||
28 | # Solaris | ||
29 | #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" | ||
30 | #LDFLAGS = ${LIBS} | ||
31 | |||
32 | # compiler and linker | ||
33 | CC = cc | ||