diff options
Diffstat (limited to 'pkg/Makefile')
-rw-r--r-- | pkg/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pkg/Makefile b/pkg/Makefile index 5b0a9e97..f5cfd3c2 100644 --- a/pkg/Makefile +++ b/pkg/Makefile @@ -6,7 +6,14 @@ VERSION ?= $(shell grep 'define NXT_VERSION' ../src/nxt_main.h \ RELEASE ?= 1 default: - @echo "available targets: rpm deb docker" + @echo "available targets: dist rpm deb docker" + +dist: + rm -f unit-$(VERSION).tar.gz + hg archive unit-$(VERSION).tar.gz \ + -r $(VERSION) \ + -p unit-$(VERSION) \ + -X "../.hg*" -X "../pkg/" -X "../docs/" rpm: @cd rpm && VERSION=$(VERSION) RELEASE=$(RELEASE) make all |