summaryrefslogtreecommitdiff
path: root/test/Makefile.am
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2015-05-28 21:14:52 +0200
committerJoel Klinghed <the_jk@yahoo.com>2015-05-28 21:16:14 +0200
commit720295848ea0d909cb39c004cbeaf1055fa7cffc (patch)
tree3a4c0332f8145986ddfc1c83e89b9cf8a1491546 /test/Makefile.am
parent978bb2523f2eef42eca8dbe35e0ad351a4953aa7 (diff)
Start of CGI interface
Diffstat (limited to 'test/Makefile.am')
-rw-r--r--test/Makefile.am16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
new file mode 100644
index 0000000..3017b6f
--- /dev/null
+++ b/test/Makefile.am
@@ -0,0 +1,16 @@
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = @DEFINES@ -I$(top_builddir)/src
+
+TESTS = test-query-parser test-header-parser test-multipart-formdata-parser
+
+check_PROGRAMS = $(TESTS)
+
+test_query_parser_SOURCES = test-query-parser.cc
+test_query_parser_LDADD = $(top_srcdir)/src/libcgi.la
+
+test_header_parser_SOURCES = test-header-parser.cc
+test_header_parser_LDADD = $(top_srcdir)/src/libcgi.la
+
+test_multipart_formdata_parser_SOURCES = test-multipart-formdata-parser.cc
+test_multipart_formdata_parser_LDADD = $(top_srcdir)/src/libcgi.la