From 5f1f728d7a6f5c91dbcd630f696276729d845654 Mon Sep 17 00:00:00 2001 From: Dane Johnson Date: Mon, 18 Nov 2024 12:58:04 -0600 Subject: [PATCH] Include make test --- .gitignore | 1 + Makefile.am | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index e3d6042..63047f2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,6 @@ autom4te.cache/ *.m4 Makefile +Makefile.in configure configure~ diff --git a/Makefile.am b/Makefile.am index 467350e..36e1645 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,8 @@ SOURCES = d-.scm + +check_PROGRAMS = guiletest +nodist_guiletest_SOURCES = test.scm + GOBJECTS = $(SOURCES:%.scm=%.go) GUILD = @GUILD@ @@ -10,3 +14,6 @@ nobase_go_DATA = $(GOBJECTS) %.go: %.scm $(GUILD) compile $^ -o $@ + +test: $(nodist_guiletest_SOURCES) + $(GUILE) -L $(srcdir) -s $^