summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-03 17:49:30 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-11-03 17:49:30 +0000
commitdc1d99abcc35fd50673ed009d9247ef976beed4f (patch)
treee2b5f1697a7f89401abb457a8d1b7df773564606 /Makefile
parent4f6c3034252830b3f4c0a03cbb03a661fdb1d8e8 (diff)
downloadlibsvgtiny-dc1d99abcc35fd50673ed009d9247ef976beed4f.tar.gz
libsvgtiny-dc1d99abcc35fd50673ed009d9247ef976beed4f.tar.bz2
Convert the last bits for libdomdsilvers/tolibdom
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index cb393a7..ff41860 100644
--- a/Makefile
+++ b/Makefile
@@ -34,12 +34,12 @@ endif
# libdom
ifneq ($(PKGCONFIG),)
CFLAGS := $(CFLAGS) \
- $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --cflags libdom)
- LDFLAGS := $(LDFLAGS) \
- $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --libs libdom)
+ $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --cflags libdom libwapcaplet)
+ LDFLAGS := $(LDFLAGS) -lm \
+ $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --libs libdom libwapcaplet)
else
CFLAGS := $(CFLAGS) -I$(PREFIX)/include
- LDFLAGS := $(CFLAGS) -ldom
+ LDFLAGS := $(CFLAGS) -ldom -lwapcaplet -lexpat -lm
endif
include $(NSBUILD)/Makefile.top