From 10685c1e1f7319503ec9288c76eaf1de5f9a2368 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sun, 3 May 2015 07:38:45 +0200 Subject: drop SVN leftovers --- Makefile | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index afe806d..7f3611e 100644 --- a/Makefile +++ b/Makefile @@ -31,30 +31,10 @@ install: clean all install -d $(DESTDIR)$(fake_packages_dir) cd fake_packages ; tar c `find . -name "*.pm"` | tar xC $(DESTDIR)$(fake_packages_dir) -update: - svn update - -commit: - svn commit - tar: dist dist: clean rm -rf ../$(NAME)-$(VERSION).tar* - @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; + @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz >../$(NAME)-$(VERSION).tar.xz; $(info $(NAME)-$(VERSION).tar.xz is ready) -dist-svn: - svn export -q -rBASE . $(NAME)-$(VERSION) - tar cfj $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(PERL_CHECKER_VERSION) - rm -rf $(NAME)-$(VERSION) - -dist-git: - @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz >../$(NAME)-$(VERSION).tar.xz; -- cgit v1.2.1