#!/usr/bin/make -f # debian/rules for doschk, modified by Ben Pfaff from original by Joey # Hess. build: build-stamp build-stamp: dh_testdir dh_auto_configure -- --cache-file=/dev/null $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp [ ! -f Makefile ] || $(MAKE) distclean dh_clean install: build dh_testdir dh_testroot dh_prep dh_auto_install binary-indep: build install # We have nothing to do. binary-arch: build install dh_testdir dh_testroot dh_installdocs dh_installman doschk.1 dh_installchangelogs dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install