config.mk - surf - Surf web browser.
(HTM) git clone git://r-36.net/surf
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
config.mk (667B)
---
1 # surf version
2 VERSION = 0.7
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
20 # flags
21 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
22 CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
23 LDFLAGS = -g ${LIBS}
24
25 # Solaris
26 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
27 #LDFLAGS = ${LIBS}
28
29 # compiler and linker
30 CC = cc