diff options
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 1 | ||||
-rw-r--r-- | tests/scripts/Makefile.am | 5 |
4 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 736d918..eb70745 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,8 @@ SUBDIRS = \ etc \ docs \ m4macros \ - packaging + packaging \ + tests # tools want this on a single line ACLOCAL_AMFLAGS = -I m4macros diff --git a/configure.ac b/configure.ac index f74a66b..d432804 100644 --- a/configure.ac +++ b/configure.ac @@ -337,6 +337,8 @@ m4macros/Makefile packaging/Makefile packaging/fedora/tinyproxy.spec packaging/fedora/Makefile +tests/Makefile +tests/scripts/Makefile ]) AC_OUTPUT diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..7d7f88a --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = scripts diff --git a/tests/scripts/Makefile.am b/tests/scripts/Makefile.am new file mode 100644 index 0000000..c4d8b32 --- /dev/null +++ b/tests/scripts/Makefile.am @@ -0,0 +1,5 @@ +EXTRA_DIST = \ + run_tests.sh \ + run_tests_valgrind.sh \ + webclient.pl \ + webserver.pl |