From ef8efcb3e048d1f2e8b5cd92beb4385dd5787044 Mon Sep 17 00:00:00 2001 From: Dane Johnson Date: Fri, 25 Oct 2024 16:41:24 -0500 Subject: [PATCH] Added dist and distclean options --- Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index edba529..9508f23 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -.PHONY: all clean test install todo +.PHONY: all clean test install dist distclean all: d-.go clean: @@ -11,5 +11,9 @@ install: d-.scm d-.go uninstall: rm -f "$(INSTALL_PREFIX)/share/guile/site/3.0/d-.scm" rm -f "$(INSTALL_PREFIX)/lib/guile/3.0/site-ccache/d-.go" +dist: + tar cvzf d-PRERELEASE.tar.gz configure Makefile.in test.scm d-.scm +distclean: clean + rm Makefile %.go: %.scm guild compile $^ -o $@