mirror of https://github.com/dswd/vpncloud.git
16 lines
284 B
Makefile
16 lines
284 B
Makefile
PACKAGE=vpncloud
|
|
DEPENDENCIES=debhelper devscripts
|
|
|
|
.PHONY: default
|
|
default: clean build
|
|
|
|
.PHONY: build
|
|
build: $(PACKAGE)_*.deb
|
|
$(PACKAGE)_*.deb:
|
|
(cd $(PACKAGE); make clean; debuild -b -us -uc; cd ..)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
(cd $(PACKAGE); debuild clean; cd ..)
|
|
rm -rf $(PACKAGE)_*
|