#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 build: build-stamp build-stamp: dh_testdir python setup.py build touch $@ clean: dh_testdir dh_testroot rm -f build-stamp python setup.py clean rm -rf build PyRoom/*.pyc dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs python setup.py install --no-compile \ --prefix=$(CURDIR)/debian/pyroom/usr binary-arch: build install binary-indep: build install dh_testdir dh_testroot dh_installchangelogs -i dh_installdocs -i dh_install -i dh_installmenu -i dh_installman -i pyroom.1 dh_link -i dh_compress -i dh_fixperms -i dh_pysupport -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install