#!/usr/bin/make -f

%:
	dh $@

# autoconf/make contain *.mk~ files that are needed for the build
override_dh_prep:
	dh_prep -Xmk~

override_dh_clean:
	dh_clean -Xmk~

# upstream tests fail with non-C locales
override_dh_auto_test:
	LANG=C LC_ALL=C dh_auto_test
