#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

override_dh_auto_configure:
	sh autogen.sh
	dh_auto_configure

override_dh_auto_clean:
	sh autogen.sh
	dh_auto_clean

override_dh_clean:
	dh_clean
	-rm aclocal.m4 compile config.h.in configure install-sh missing Makefile.in Makefile
	-rm -rf depcomp

%:
	dh $@
