| 12345678910111213141516171819202122 | #!/usr/bin/make -fexport DEB_BUILD_HARDENING=1export CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)export LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)%:	dh $@override_dh_auto_configure:	autoreconf	dh_auto_configure -- \		--prefix=/usr \		--mandir=/usr/share/man \		--with-libwrap \		--enable-bcrelayoverride_dh_install:	dh_install --fail-missingoverride_dh_installdocs:	dh_installdocs --exclude=CVS --exclude=test.txt
 |