Include make test

This commit is contained in:
Dane Johnson 2024-11-18 12:58:04 -06:00
parent eac30fae76
commit 5f1f728d7a
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View File

@ -4,5 +4,6 @@ autom4te.cache/
*.m4 *.m4
Makefile Makefile
Makefile.in
configure configure
configure~ configure~

View File

@ -1,4 +1,8 @@
SOURCES = d-.scm SOURCES = d-.scm
check_PROGRAMS = guiletest
nodist_guiletest_SOURCES = test.scm
GOBJECTS = $(SOURCES:%.scm=%.go) GOBJECTS = $(SOURCES:%.scm=%.go)
GUILD = @GUILD@ GUILD = @GUILD@
@ -10,3 +14,6 @@ nobase_go_DATA = $(GOBJECTS)
%.go: %.scm %.go: %.scm
$(GUILD) compile $^ -o $@ $(GUILD) compile $^ -o $@
test: $(nodist_guiletest_SOURCES)
$(GUILE) -L $(srcdir) -s $^