1 export PATH := /usr/local/bin:$(PATH)
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
8 ifneq ($(shell pkg-config WebKitGtk --modversion 2>/dev/null),)
9 flags += $(shell pkg-config --cflags WebKitGtk)
10 library += $(shell pkg-config --libs WebKitGtk)