diff options
| author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-01 22:24:22 +0200 |
|---|---|---|
| committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-04 19:51:35 +0200 |
| commit | a809bc0f49ee4c6e777f39d1f80ee57862a0fcab (patch) | |
| tree | 5187dbd9b83205aac62d1f48252025b6e2d158a9 /tests/Makefile.am | |
Initial import of the code into gitv0.1
Diffstat (limited to 'tests/Makefile.am')
| -rw-r--r-- | tests/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..44e31d3 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,19 @@ +TESTSUITE_SRC = $(srcdir)/testsuite.at +TESTSUITE = $(builddir)/testsuite +EXTRA_DIST = $(TESTSUITE_SRC) + +DISTCLEANFILES = $(TESTSUITE) atconfig + +AUTOM4TE = $(SHELL) $(top_srcdir)/build-aux/missing --run autom4te +AUTOTEST = $(AUTOM4TE) --language=autotest + +$(TESTSUITE): $(TESTSUITE_SRC) + $(AUTOTEST) $(TESTSUITE_SRC) > $(TESTSUITE) + +check-local: $(TESTSUITE) + $(SHELL) $(TESTSUITE) + +clean-local: + test ! -f $(TESTSUITE) || \ + $(SHELL) $(TESTSUITE) --clean + |