#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@ --no-parallel


# Temporary workaround for dh_autoreconf error on runstatedir
# To whoever see it: please submit a patch to fix it!
override_dh_auto_configure:
	DH_COMPAT=10 dh_auto_configure

override_dh_auto_install:
	dh_auto_install
	rm -fv debian/tmp/usr/lib/*/*.la
	rm -fv debian/tmp/usr/share/man/man1/explain_license.1
	rm -fv debian/tmp/usr/share/man/man3/explain_license.3

override_dh_missing:
	dh_missing --fail-missing

override_dh_compress:
	dh_compress --exclude=.pdf
