summaryrefslogtreecommitdiff
path: root/test/Makefile.am
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-02-28 21:50:44 +0100
committerJoel Klinghed <the_jk@yahoo.com>2017-02-28 21:50:44 +0100
commitc029d90d1975e124d237605f1edb2be16bd05b5d (patch)
tree9df87ffb365354bdb74a969440b32c8304bdbcb7 /test/Makefile.am
Initial commit
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