summaryrefslogtreecommitdiff
path: root/tests/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-03-05 18:00:29 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2015-03-05 18:00:29 +0100
commit5bc84b277da9ed51e70d070f38688f629e18fb73 (patch)
tree39821eedde78c06370c4875c539525f382cac001 /tests/GNUmakefile
parent8c195035bc14f186fa46abdad59b036bb2840b4b (diff)
downloadcrawler-5bc84b277da9ed51e70d070f38688f629e18fb73.tar.gz
crawler-5bc84b277da9ed51e70d070f38688f629e18fb73.tar.bz2
more lua fixes
Diffstat (limited to 'tests/GNUmakefile')
-rw-r--r--tests/GNUmakefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/GNUmakefile b/tests/GNUmakefile
index e80f114..34ae488 100644
--- a/tests/GNUmakefile
+++ b/tests/GNUmakefile
@@ -1,13 +1,21 @@
TOPDIR = ..
SUBDIRS = \
- utils logger modules url streamhtmlparser libfetch psql sqlite typedetect \
+ utils logger modules url streamhtmlparser psql typedetect \
fetcher textwolf
+ifeq ($(WITH_SQLITE3),1)
+SUBDIRS += sqlite
+endif
+
ifeq ($(WITH_CURL),1)
SUBDIRS += libcurlpp
endif
+ifeq ($(WITH_LIBFETCH),1)
+SUBDIRS += libfetch
+endif
+
ifeq ($(WITH_LUA),1)
SUBDIRS += tolua
endif