From 6fac0a81e2971f72cbc1a03add372836240e4301 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Wed, 22 Apr 2009 13:56:21 +0000 Subject: Add git support to make dist --- Makefile | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 22d2ab6..180e867 100644 --- a/Makefile +++ b/Makefile @@ -11,12 +11,27 @@ install: install -d $(dli_sysconfigdir) make -C po install +dist: dis dis: clean - rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar* + rm -rf ../$(NAME)-$(VERSION)*.tar* $(NAME)-$(VERSION) + @if [ -e ".svn" ]; then \ + $(MAKE) dist-svn; \ + elif [ -e ".git" ]; then \ + $(MAKE) dist-git; \ + else \ + echo "Unknown SCM (not SVN nor GIT)";\ + exit 1; \ + fi; + $(info $(NAME)-$(VERSION).tar.lzma is ready) + +dist-svn: 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) + tar cfY ../$(NAME)-$(VERSION).tar.lzma $(NAME)-$(VERSION) + rm -rf $(NAME)-$(VERSION) + +dist-git: + @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz >../$(NAME)-$(VERSION).tar.lzma; check: perl -cw $(NAME) -- cgit v1.2.1