Adding back the Escape to stop loading the current page. Thanks Daniel Bainton
[surf.git] / config.mk
1 # surf version
2 VERSION = 0.5
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+-2.0 webkit-1.0`
14 GTKLIB = `pkg-config --libs gtk+-2.0 webkit-1.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        -ljavascriptcoregtk-1.0
20
21 # flags
22 CPPFLAGS = -DVERSION=\"${VERSION}\"
23 CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
24 LDFLAGS = -g ${LIBS}
25
26 # Solaris
27 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
28 #LDFLAGS = ${LIBS}
29
30 # compiler and linker
31 CC = cc