summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2015-05-03 07:38:45 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2015-05-03 07:38:45 +0200
commit10685c1e1f7319503ec9288c76eaf1de5f9a2368 (patch)
treef5e77e6208f82e15453651065ebff8fcb5052c9b /Makefile
parentb7f52c783a40d9c8197816251ffcaf74345e951e (diff)
downloadperl_checker-10685c1e1f7319503ec9288c76eaf1de5f9a2368.tar
perl_checker-10685c1e1f7319503ec9288c76eaf1de5f9a2368.tar.gz
perl_checker-10685c1e1f7319503ec9288c76eaf1de5f9a2368.tar.bz2
perl_checker-10685c1e1f7319503ec9288c76eaf1de5f9a2368.tar.xz
perl_checker-10685c1e1f7319503ec9288c76eaf1de5f9a2368.zip
drop SVN leftovers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 1 insertions, 21 deletions
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;