]> git.saurik.com Git - cycript.git/blob - Linux.mk
Fixed a bug where the identifier merging algorithm would fail horribly on pre-merged...
[cycript.git] / Linux.mk
1 export PATH := /usr/local/bin:$(PATH)
2
3 ifneq ($(shell pkg-config webkit-1.0 --modversion 2>/dev/null),)
4 flags += $(shell pkg-config --cflags webkit-1.0)
5 library += -lwebkit-1.0
6 include Execute.mk
7 else
8 ifneq ($(shell pkg-config WebKitGtk --modversion 2>/dev/null),)
9 flags += $(shell pkg-config --cflags WebKitGtk)
10 library += $(shell pkg-config --libs WebKitGtk)
11 include Execute.mk
12 endif
13 endif