vpncloud/deb/Makefile

16 lines
284 B
Makefile
Raw Normal View History

2015-11-24 09:22:25 +00:00
PACKAGE=vpncloud
DEPENDENCIES=debhelper devscripts
.PHONY: default
default: clean build
.PHONY: build
2015-11-30 16:27:50 +00:00
build: $(PACKAGE)_*.deb
2015-11-24 09:22:25 +00:00
$(PACKAGE)_*.deb:
(cd $(PACKAGE); make clean; debuild -b -us -uc; cd ..)
.PHONY: clean
clean:
(cd $(PACKAGE); debuild clean; cd ..)
2015-11-30 16:27:50 +00:00
rm -rf $(PACKAGE)_*