summaryrefslogtreecommitdiff
path: root/libfetch
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 /libfetch
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 'libfetch')
-rw-r--r--libfetch/GNUmakefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/libfetch/GNUmakefile b/libfetch/GNUmakefile
index 181270d..5c2f6c1 100644
--- a/libfetch/GNUmakefile
+++ b/libfetch/GNUmakefile
@@ -32,8 +32,10 @@ OBJS = \
ftp.o \
http.o
-STATIC_LIB = \
- libfetch.a
+DYNAMIC_LIB = libfetch.so
+DYNAMIC_LIB_MAJOR = 0
+DYNAMIC_LIB_MINOR = 0
+DYNAMIC_LIB_PATCH = 0
-include $(TOPDIR)/makefiles/gmake/sub.mk