Add a few configuration options
[surf.git] / config.mk
1 # surf version
2 VERSION = 0.6
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 GTKINC = `pkg-config --cflags gtk+-3.0 webkit2gtk-4.0`
14 GTKLIB = `pkg-config --libs gtk+-3.0 webkit2gtk-4.0`
15
16 # includes and libs
17 INCS = -I. -I/usr/include -I${X11INC} ${GTKINC}
18 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${GTKLIB} -lgthread-2.0
19
20 # flags
21 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
22 CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
23 LDFLAGS = -s ${LIBS}
24
25 # Solaris
26 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
27 #LDFLAGS = ${LIBS}
28
29 # compiler and linker
30 CC = cc