Introduction
Introduction Statistics Contact Development Disclaimer Help
config.mk - surf-adblock - Surf adblock web extension
git clone git://git.codemadness.org/surf-adblock
Log
Files
Refs
README
LICENSE
---
config.mk (845B)
---
1 VERSION = 0.1
2
3 # Customize below to fit your system
4
5 # paths
6 PREFIX = /usr/local
7 MANPREFIX = ${PREFIX}/share/man
8 LIBPREFIX = ${PREFIX}/lib/surf
9
10 X11INC = /usr/X11R6/include
11 X11LIB = /usr/X11R6/lib
12
13 WEBEXTINC = `pkg-config --cflags gtk+-3.0 webkit2gtk-4.0 \
14 webkit2gtk-web-extension-4.0`
15 WEBEXTLIB = `pkg-config --libs gtk+-3.0 webkit2gtk-4.0 \
16 webkit2gtk-web-extension-4.0`
17
18 # includes and libs
19 INCS = -I. -I/usr/include -I${X11INC} ${WEBEXTINC}
20 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${WEBEXTLIB} -lgthread-2.0
21
22 # flags
23 CPPFLAGS = -DVERSION=\"${VERSION}\" -DWEBEXTDIR=\"${LIBPREFIX}\" \
24 -D_DEFAULT_SOURCE -DWEBEXTDIR=\"${LIBPREFIX}\"
25 CFLAGS = -std=c99 -pedantic -Wall -O2 ${INCS} ${CPPFLAGS} ${WEBEXTINC}
26 LDFLAGS = -s ${LIBS} -module -avoid-version
27
28 # compiler and linker
29 CC = cc
30 LIBTOOL = libtool --quiet
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.