summaryrefslogtreecommitdiffhomepage
path: root/pkg/Makefile
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2018-06-27 18:30:49 +0300
committerValentin Bartenev <vbart@nginx.com>2018-06-27 18:30:49 +0300
commit42e1d8e3b2705b60e3aee900579d569e9fa44300 (patch)
tree9333ad6a0ec1550b7cb13d0a1b8ebb44eaa6e703 /pkg/Makefile
parent606eda045bc3608977648fb1de61d8e328984d30 (diff)
downloadunit-42e1d8e3b2705b60e3aee900579d569e9fa44300.tar.gz
unit-42e1d8e3b2705b60e3aee900579d569e9fa44300.tar.bz2
Packages: tar building functionality moved into pkg/Makefile.
Diffstat (limited to 'pkg/Makefile')
-rw-r--r--pkg/Makefile9
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