#!/usr/bin/make -f
export DH_ALWAYS_EXCLUDE=COPYING:Changelog.gz

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@

override_dh_clean:
	dh_clean
	if [ ! -L src/tilde ] ; then ln -s . src/tilde ; fi

override_dh_auto_configure:
	dh_auto_configure -- --with-verbose-compile

override_dh_auto_install:
	dh_auto_install -- INSTALL='install --strip-program=true'
