diff options
author | Enno Boland (Gottox) <gottox@s01.de> | 2009-06-05 13:22:40 +0200 |
---|---|---|
committer | Enno Boland (Gottox) <gottox@s01.de> | 2009-06-05 13:22:40 +0200 |
commit | efdd0dd584829a9db969511e487010bf2107b503 (patch) | |
tree | 5b18f76172ff79eed9566608f817ac62f3a8e4f3 /config.mk | |
download | surf-efdd0dd584829a9db969511e487010bf2107b503.tar.gz surf-efdd0dd584829a9db969511e487010bf2107b503.tar.bz2 surf-efdd0dd584829a9db969511e487010bf2107b503.zip |
Initial Commit.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..6d24691 --- /dev/null +++ b/config.mk @@ -0,0 +1,30 @@ +# surf version +VERSION = 0.0 + +# Customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +GTKINC=$(shell pkg-config --cflags gtk+-2.0 webkit-1.0) +GTKLIB=$(shell pkg-config --libs gtk+-2.0 webkit-1.0) + + +# includes and libs +INCS = -I. -I/usr/include ${GTKINC} +LIBS = -L/usr/lib -lc ${GTKLIB} + +# flags +CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} +#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} +#LDFLAGS = -s ${LIBS} +LDFLAGS = ${LIBS} + +# Solaris +#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = ${LIBS} + +# compiler and linker +CC = cc |