From cd8206c0b25a86aa8958b28c359ee39215212441 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Mon, 7 Oct 2013 11:22:35 +0100 Subject: build: Remove svn support from Makefile --- Makefile | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/Makefile b/Makefile index 57c346c..083a78d 100644 --- a/Makefile +++ b/Makefile @@ -41,24 +41,9 @@ clean: dist: dis dis: 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; + @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | bzip2 >../$(NAME)-$(VERSION).tar.bzip2; $(info $(NAME)-$(VERSION).tar.lzma is ready) -dist-svn: - svn export -q -rBASE . $(NAME)-$(VERSION) - tar cjf ../$(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION) - rm -rf $(NAME)-$(VERSION) - -dist-git: - @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | bzip2 >../$(NAME)-$(VERSION).tar.bzip2; - .PHONY: ChangeLog log changelog log: ChangeLog -- cgit v1.2.1