#!/usr/bin/make -f

export DEB_CFLAGS_MAINT_PREPEND = -Wno-error
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	echo dh $@
	dh $@ --with autoreconf --with autotools_dev

override_dh_installinit:
	dh_installinit --no-restart-on-upgrade --no-start

override_dh_autoreconf:
	dh_autoreconf --as-needed

override_dh_auto_configure:
	dh_auto_configure -- --enable-oidentd

override_dh_installinit:
	dh_installinit --no-restart-on-upgrade

override_dh_strip:
	dh_strip --dbg-package=bip-dbg

