summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ba4bc5a..e8c2acd 100644
--- a/Makefile
+++ b/Makefile
@@ -51,8 +51,7 @@ dist: cleandist
@git archive --prefix=$(PACKAGE)-$(VERSION)/ HEAD | xz >../$(PACKAGE)-$(VERSION).tar.xz;
$(info $(PACKAGE)-$(VERSION).tar.xz is ready)
-svntag:
- -svn mkdir $(SVN_BASE)/releases/$(TAG) -m "created directory $(TAG)"
- svn copy $(SVNCOPY) $(SVNROOT)/releases/$(TAG) -m "Tagged as $(TAG)"
+tag:
+ git tag $(TAG)
# Makefile ends here