Introduction
Introduction Statistics Contact Development Disclaimer Help
config.mk - surf - surf browser, a WebKit based browser
git clone git://git.suckless.org/surf
Log
Files
Refs
README
LICENSE
---
config.mk (898B)
---
1 # surf version
2 VERSION = 2.1
3
4 # Customize below to fit your system
5
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = $(PREFIX)/share/man
9 LIBPREFIX = $(PREFIX)/lib
10 LIBDIR = $(LIBPREFIX)/surf
11
12 X11INC = `pkg-config --cflags x11`
13 X11LIB = `pkg-config --libs x11`
14
15 GTKINC = `pkg-config --cflags gtk+-3.0 gcr-3 webkit2gtk-4.1`
16 GTKLIB = `pkg-config --libs gtk+-3.0 gcr-3 webkit2gtk-4.1`
17 WEBEXTINC = `pkg-config --cflags webkit2gtk-4.1 webkit2gtk-web-extension…
18 WEBEXTLIBS = `pkg-config --libs webkit2gtk-4.1 webkit2gtk-web-extension-…
19
20 # includes and libs
21 INCS = $(X11INC) $(GTKINC)
22 LIBS = $(X11LIB) $(GTKLIB) -lgthread-2.0
23
24 # flags
25 CPPFLAGS = -DVERSION=\"$(VERSION)\" -DGCR_API_SUBJECT_TO_CHANGE \
26 -DLIBPREFIX=\"$(LIBPREFIX)\" -DWEBEXTDIR=\"$(LIBDIR)\" \
27 -D_DEFAULT_SOURCE
28 SURFCFLAGS = -fPIC $(INCS) $(CPPFLAGS)
29 WEBEXTCFLAGS = -fPIC $(WEBEXTINC)
30
31 # compiler
32 #CC = c99
You are viewing proxied material from suckless.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.