Files
nginx-unit/pkg/Makefile
2017-10-19 18:23:31 +03:00

18 lines
296 B
Makefile

#!/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