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.tar.bz2 |
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 @@ +# 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 = -Os ${INCS} ${CPPFLAGS} +LDFLAGS = -s ${LIBS} +#CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} ${CPPFLAGS} +#LDFLAGS = -g ${LIBS} + +# Solaris +#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = ${LIBS} + +# compiler and linker +CC = cc |