summaryrefslogblamecommitdiffhomepage
path: root/pkg/Makefile
blob: 3fa96632558aff212f5e004bb7f0025c06fc6cf6 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                         
                                          



                                                                 


                                                                 

                             
                             
 
                             
#!/usr/bin/make

VERSION ?= $(shell grep 'define NXT_VERSION' ../src/nxt_main.h		\
		| sed -e 's/^.*"\(.*\)".*/\1/')

RELEASE ?= 1

default:
	@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 deb clean