summaryrefslogtreecommitdiffhomepage
path: root/pkg/Makefile
diff options
context:
space:
mode:
authorAndrei Belov <defan@nginx.com>2017-10-19 18:23:31 +0300
committerAndrei Belov <defan@nginx.com>2017-10-19 18:23:31 +0300
commiteabe25d98e6805221025daf7bc60d881af1af6b1 (patch)
tree23a72fc526122de22909c62bb06af95d7c5572da /pkg/Makefile
parentc8a8a7c2120e276777f97dcee6d489788417792a (diff)
downloadunit-eabe25d98e6805221025daf7bc60d881af1af6b1.tar.gz
unit-eabe25d98e6805221025daf7bc60d881af1af6b1.tar.bz2
Introduced rpm packages building tools.
Diffstat (limited to 'pkg/Makefile')
-rw-r--r--pkg/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/Makefile b/pkg/Makefile
new file mode 100644
index 00000000..4500684d
--- /dev/null
+++ b/pkg/Makefile
@@ -0,0 +1,17 @@
+#!/usr/bin/make
+
+VERSION ?= $(shell grep 'define NXT_VERSION' ../src/nxt_main.h \
+ | sed -e 's/^.*"\(.*\)".*/\1/')
+
+RELEASE ?= 1
+
+default:
+ @echo "available targets: rpm"
+
+rpm:
+ @cd rpm && VERSION=$(VERSION) RELEASE=$(RELEASE) make all
+
+clean:
+ @cd rpm && make clean
+
+.PHONY: default rpm clean