diff options
Diffstat (limited to 'pkg/Makefile')
-rw-r--r-- | pkg/Makefile | 17 |
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 |