diff options
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -43,3 +43,11 @@ install: install -m644 $(NAME).pm $(PMSDIR) install -m644 $(wildcard data/icons/*.png) $(ICONSDIR) for d in $(SUBDIRS); do make -C $$d $@; done + +dis: clean + rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar* + svn export -q -rBASE . $(NAME)-$(VERSION) + find $(NAME)-$(VERSION) -name .svnignore |xargs rm -rf + tar cfY ../$(NAME)-$(VERSION).tar.lzma $(NAME)-$(VERSION) + rm -rf $(NAME)-$(VERSION) + |