d-/Makefile.in

20 lines
525 B
Makefile
Raw Normal View History

2024-10-25 16:41:24 -05:00
.PHONY: all clean test install dist distclean
2024-10-23 09:02:27 -05:00
all: d-.go
clean:
rm -rf d-.go
test:
guile -L . test.scm
install: d-.scm d-.go
install -D -t "$(INSTALL_PREFIX)/share/guile/site/3.0/" d-.scm
install -D -t "$(INSTALL_PREFIX)/lib/guile/3.0/site-ccache/" 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"
2024-10-25 16:41:24 -05:00
dist:
tar cvzf d-PRERELEASE.tar.gz configure Makefile.in test.scm d-.scm
distclean: clean
rm Makefile
2024-10-23 09:02:27 -05:00
%.go: %.scm
guild compile $^ -o $@