diff options
author | Andrei Belov <defan@nginx.com> | 2017-10-19 18:23:32 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2017-10-19 18:23:32 +0300 |
commit | 156877f3c99b54c78e3cae111542f5519a97a68a (patch) | |
tree | 2c21edccede53614245118f927f0a2aea8d3e944 /pkg/Makefile | |
parent | eabe25d98e6805221025daf7bc60d881af1af6b1 (diff) | |
download | unit-156877f3c99b54c78e3cae111542f5519a97a68a.tar.gz unit-156877f3c99b54c78e3cae111542f5519a97a68a.tar.bz2 |
Introduced deb packages building tools.0.2
Diffstat (limited to '')
-rw-r--r-- | pkg/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkg/Makefile b/pkg/Makefile index 4500684d..3fa96632 100644 --- a/pkg/Makefile +++ b/pkg/Makefile @@ -6,12 +6,16 @@ VERSION ?= $(shell grep 'define NXT_VERSION' ../src/nxt_main.h \ RELEASE ?= 1 default: - @echo "available targets: rpm" + @echo "available targets: rpm deb" rpm: @cd rpm && VERSION=$(VERSION) RELEASE=$(RELEASE) make all +deb: + @cd deb && VERSION=$(VERSION) RELEASE=$(RELEASE) make all + clean: @cd rpm && make clean + @cd deb && make clean -.PHONY: default rpm clean +.PHONY: default rpm deb clean |