#!/usr/bin/make -f
build: build-stamp
build-stamp:
dh_testdir
touch build-stamp
clean:
dh_testroot
rm -f build-stamp
dh_clean
install: build
dh_prep
dh_installdirs
$(MAKE) DESTDIR=$(CURDIR)/debian/tmp
dh_install
binary-indep: build install
dh_installchangelogs
dh_installdocs
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary-arch: build install
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install