diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2009-05-10 13:17:09 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2009-05-10 13:17:09 +0100 |
commit | d58dd3b8bc42ed31232e4145696d7dacb117a31c (patch) | |
tree | dfe3362a600e9491a687cd765158b70d3328333d /config.mk | |
parent | 802f1922f93aef1e4876719e107828a1fa15b1a6 (diff) |
backport of local changes
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 31 |
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 @@ +# st version +VERSION = 0.0 + +# Customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +X11INC = /usr/X11R6/include +X11LIB = /usr/X11R6/lib + +# Xinerama, comment if you don't want it +#XINERAMALIBS = -L${X11LIB} -lXinerama +#XINERAMAFLAGS = -DXINERAMA + +# includes and libs +INCS = -I. -I/usr/include -I${X11INC} +LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS} + +# flags +CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} +LDFLAGS = -s ${LIBS} + +# Solaris +#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = ${LIBS} + +# compiler and linker +CC = cc |