#!/usr/bin/make -f # This script uses debhelper by Joey Hess export DH_VERBOSE=1 DEB=debian/tmp build: build-stamp build-stamp: dh_testdir # build package here $(MAKE) cd tpserv && make touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp [ ! -f Makefile ] || $(MAKE) distclean [ ! -f tpserv/Makefile ] || $(MAKE) -C tpserv distclean #cd tpserv && make distclean dh_clean binary-indep: build # is it arch or indep? binary-arch: build dh_testdir dh_testroot dh_clean dh_installdocs README TODO README.tp dh_installman man/hunt.1 dh_installchangelogs CHANGES dh_install dh_strip dh_compress dh_fixperms # dh_suidregister dh_installdeb dh_shlibdeps dh_gencontrol # dh_makeshlibs dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary