diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 4ceaad18..99d2ed5d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -14,10 +14,10 @@ all: .PHONY: tag-release tarball release install version clean -diff-tag-release: +diff-tag: svn diff $(REPO)/trunk/src $(REPO)/tags/$(SVNTAG) -tag-release: +tag: @if ( svn list $(REPO)/tags/$(SVNTAG)/Makefile &> /dev/null ); then \ echo "The repository already contains a tag for version $(VERSION)"; \ exit 1; \ @@ -26,6 +26,10 @@ tag-release: -m "Tagging the $(SVNTAG) release of the sos project" @echo "Tagged as $(SVNTAG)" +tag-force: + @echo svn del $(REPO)/tags/$(SVNTAG) + @echo make diff-tag + tarball: clean @echo "Creating an archive from HEAD of development" @rm -rf /tmp/$(NAME) @@ -55,7 +59,7 @@ release: clean @echo " " @echo "The final archive is ./$(NAME)-$(VERSION).tar.bz2." -install: +install:mo python setup.py install version: |