diff options
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -88,7 +88,7 @@ endif $(CHOWN) $(OWNER):$(GROUP) $(DESTDIR)$(DOCDIR)/$$i; \ done -# These 2 are maintainer-specific targets. +# The rest are maintainer-specific targets. test: all ./$(PROJ) test.cue @@ -97,4 +97,9 @@ push: all man html git commit -m'auto-regenerate man/html pages' || true git push +release: + mkdir $(PROJ)-$(VERSION) + cp $(PROJ).c $(PROJ).1 $(PROJ).rst $(DOCS) $(PROJ)-$(VERSION) + tar cvfJ $(PROJ)-$(VERSION).tar.xz $(PROJ)-$(VERSION) + .PHONY: all man html test push install |