summaryrefslogtreecommitdiff
path: root/streamhtmlparser
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-09-02 13:07:14 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-09-02 13:07:14 +0200
commit13da385aa7f5e9a9f52288fd7735d6dc806fab73 (patch)
tree15095ef90056092c59042da092a7ff330920223e /streamhtmlparser
parentda6dc57663d8934f84d6328c9d5d15b06962991e (diff)
downloadcrawler-13da385aa7f5e9a9f52288fd7735d6dc806fab73.tar.gz
crawler-13da385aa7f5e9a9f52288fd7735d6dc806fab73.tar.bz2
prefer dynamic to static linking (linking a non-PIC .a library
into a module is illegal, but on Linux!)
Diffstat (limited to 'streamhtmlparser')
-rw-r--r--streamhtmlparser/GNUmakefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/streamhtmlparser/GNUmakefile b/streamhtmlparser/GNUmakefile
index ea5380d..46f93f0 100644
--- a/streamhtmlparser/GNUmakefile
+++ b/streamhtmlparser/GNUmakefile
@@ -18,8 +18,10 @@ OBJS = \
jsparser.o \
htmlparser.o
-STATIC_LIB = \
- libstreamhtmlparser.a
+DYNAMIC_LIB = libstreamhtmlparser.so
+DYNAMIC_LIB_MAJOR = 0
+DYNAMIC_LIB_MINOR = 0
+DYNAMIC_LIB_PATCH = 0
-include $(TOPDIR)/makefiles/gmake/sub.mk