#!/usr/bin/make -f # Rules for building of mailman-filter Debian package # (c) 2011 Martin Mares # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 build: build-stamp build-stamp: dh_testdir # $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp # $(MAKE) clean dh_clean binary-arch: binary-indep: build dh_testdir dh_testroot dh_prep dh_installdirs usr/lib/mailman/Mailman/Handlers install -m 644 Filter.py debian/mailman-filter/usr/lib/mailman/Mailman/Handlers/ dh_installchangelogs dh_installdocs README example-filter dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary