summaryrefslogtreecommitdiff
path: root/tests/libcurlpp/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libcurlpp/GNUmakefile')
-rw-r--r--tests/libcurlpp/GNUmakefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/libcurlpp/GNUmakefile b/tests/libcurlpp/GNUmakefile
new file mode 100644
index 0000000..de0462a
--- /dev/null
+++ b/tests/libcurlpp/GNUmakefile
@@ -0,0 +1,29 @@
+TOPDIR = ../..
+
+SUBDIRS =
+
+INCLUDE_DIRS = $(shell pkg-config --cflags curlpp)
+
+INCLUDE_LDFLAGS = $(shell pkg-config --libs-only-L curlpp)
+
+INCLUDE_LIBS = $(shell pkg-config --libs-only-l curlpp)
+
+TEST_CPP_BINS = \
+ test1$(EXE) \
+ test2$(EXE)
+
+OBJS =
+
+-include $(TOPDIR)/makefiles/gmake/sub.mk
+
+local_all:
+
+local_clean:
+ -@rm -f *.RES *.DIFF
+
+local_distclean:
+
+local_test:
+ @./exec_test test1 "fetch simple test (function)" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)" "http://localhost"
+ @./exec_test test2 "fetch simple test (method)" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)" "http://localhost"
+ \ No newline at end of file