summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
new file mode 100644
index 000000000..f480f4809
--- /dev/null
+++ b/test/Makefile
@@ -0,0 +1,19 @@
+CFLAGS := -std=c99 -g -O0 -D_BSD_SOURCE -D_POSIX_C_SOURCE -I.. \
+ `pkg-config --cflags libxml-2.0 libcurl libparserutils`
+LDFLAGS := `pkg-config --libs libxml-2.0 libcurl libparserutils`
+
+llcache_SRCS := content/fetch.c content/fetchers/fetch_curl.c \
+ content/fetchers/fetch_data.c content/llcache.c \
+ content/urldb.c desktop/options.c desktop/version.c \
+ utils/base64.c utils/hashtable.c utils/messages.c \
+ utils/url.c utils/useragent.c utils/utf8.c utils/utils.c \
+ test/llcache.c
+
+llcache: $(addprefix ../,$(llcache_SRCS))
+ $(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
+
+
+.PHONY: clean
+
+clean:
+ $(RM) llcache