Introduced rpm packages building tools.

This commit is contained in:
Andrei Belov
2017-10-19 18:23:31 +03:00
parent c8a8a7c212
commit eabe25d98e
21 changed files with 932 additions and 1 deletions

17
pkg/Makefile Normal file
View File

@@ -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