summaryrefslogtreecommitdiff
path: root/test/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile.am')
-rw-r--r--test/Makefile.am25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
new file mode 100644
index 0000000..c23bd9f
--- /dev/null
+++ b/test/Makefile.am
@@ -0,0 +1,25 @@
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CXXFLAGS = @DEFINES@
+
+TESTS = test-url test-http test-args test-xdg test-paths test-strings
+
+check_PROGRAMS = $(TESTS)
+
+test_url_SOURCES = test-url.cc
+test_url_LDADD = $(top_builddir)/src/libtp.a
+
+test_http_SOURCES = test-http.cc
+test_http_LDADD = $(top_builddir)/src/libtp.a
+
+test_args_SOURCES = test-args.cc
+test_args_LDADD = $(top_builddir)/src/libtp.a
+
+test_xdg_SOURCES = test-xdg.cc
+test_xdg_LDADD = $(top_builddir)/src/libtp.a
+
+test_strings_SOURCES = test-strings.cc
+test_strings_LDADD = $(top_builddir)/src/libtp.a
+
+test_paths_SOURCES = test-paths.cc
+test_paths_LDADD = $(top_builddir)/src/libtp.a