1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#!/usr/bin/make -f
#
# Stephen J. Carpenter Thu, 23 Jul 1998 01:57:18 -0400
# Now maintained by Bill Jonas Thu, 28 Mar 2002 00:09:12 -0500
# Now maintained by Christoph Berg Tue, 18 Jul 2006 19:07:10 +0200
# Now maintained by Denis Briand Fri, 6 Mar 2009 22:37:40 +0100
build-indep:
build build-arch: build-stamp
build-stamp:
dh_quilt_patch
dh_testdir
make
touch build-stamp
install: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs
clean:
dh_testdir
make clean
dh_quilt_unpatch
dh_clean
rm -f build-stamp
binary-indep:
binary-arch: install
dh_testdir
dh_testroot
dh_prep
dh_install
dh_installdocs README
dh_installman debian/dtmfdial.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: binary binary-arch binary-indep clean build build-arch build-indep install
|