diff options
| -rw-r--r-- | misc/GNUmakefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/misc/GNUmakefile b/misc/GNUmakefile index fe5c77eee..188b796ec 100644 --- a/misc/GNUmakefile +++ b/misc/GNUmakefile @@ -3,6 +3,7 @@ VER = $(shell grep 'define NGINX_VERSION' src/core/nginx.h \ | sed -e 's/^.*\"\(.*\)\"/\1/') NGINX = nginx-$(VER) TEMP = tmp +REPO = svn://svn.nginx.com OBJS = objs.msvc8 OPENSSL = openssl-0.9.8r @@ -40,6 +41,22 @@ release: tar -c -z -f $(NGINX).tar.gz --directory $(TEMP) $(NGINX) +RELEASE: + test -d $(TEMP) || mkdir -p $(TEMP) + + echo "nginx-$(VER)-RELEASE" > $(TEMP)/message + svn ci -F $(TEMP)/message + + echo "release-$(VER) tag" > $(TEMP)/message + svn copy $(REPO)/nginx/branches/stable-1.0 \ + $(REPO)/nginx/tags/release-$(VER) \ + -F $(TEMP)/message + + svn up + + $(MAKE) release + + snapshot: rm -rf $(TEMP) |
