summaryrefslogtreecommitdiff
path: root/tests/url/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-08-07 11:56:16 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-08-07 11:56:16 +0200
commit9dfe4aa8f2fe2fc93479e4b806aafc0cdd76f650 (patch)
tree70930568daa261300e31baca29e08a75955a7076 /tests/url/GNUmakefile
parentd61420eab67f2acab8ea6e3b51a4e763a3259569 (diff)
downloadcrawler-9dfe4aa8f2fe2fc93479e4b806aafc0cdd76f650.tar.gz
crawler-9dfe4aa8f2fe2fc93479e4b806aafc0cdd76f650.tar.bz2
allow modules to be linked as static libraries, mainly to be able to
use valgrind for leak-checking
Diffstat (limited to 'tests/url/GNUmakefile')
-rw-r--r--tests/url/GNUmakefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/url/GNUmakefile b/tests/url/GNUmakefile
index df37f62..8ce49bd 100644
--- a/tests/url/GNUmakefile
+++ b/tests/url/GNUmakefile
@@ -3,12 +3,18 @@ TOPDIR = ../..
SUBDIRS =
INCLUDE_DIRS = \
- -I$(TOPDIR)/src
+ -I$(TOPDIR)/src \
+ -I$(TOPDIR)/src/modules/urlnormalizer/simpleurl \
+ -I$(TOPDIR)/src/modules/urlnormalizer/googleurl
INCLUDE_LDFLAGS =
INCLUDE_LIBS = \
- $(TOPDIR)/src/libcrawlingwolf.a
+ $(TOPDIR)/src/libcrawlingwolf.a \
+ $(TOPDIR)/src/modules/urlnormalizer/simpleurl/libsimpleurlnormalizer.a \
+ $(TOPDIR)/src/modules/urlnormalizer/googleurl/libgoogleurlnormalizer.a \
+ $(TOPDIR)/googleurl/libgoogleurl.a \
+ -licui18n -licuuc
TEST_CPP_BINS = \
test1$(EXE)