diff options
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 1bddaa4..496f3c2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -118,7 +118,15 @@ CLEANFILES = \ $(GOBJECTS) \ $(TESTS:tests/%.scm=%.log) +example: + cd $(top_builddir)/example && ../pre-inst-env haunt build + +example-serve: example + cd $(top_builddir)/example && ../pre-inst-env haunt serve + publish: distcheck gpg --sign --detach-sign --armor --yes haunt-$(VERSION).tar.gz && \ scp haunt-$(VERSION).tar.gz haunt-$(VERSION).tar.gz.asc \ publish@dthompson.us:/var/www/files/haunt/ + +.PHONY: example example-serve publish |