#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS=hardening=+all
export NON_INTERACTIVE=1

%:
	dh $@

# Collapse upstream changes file into single file

override_dh_auto_build:
	cat CHANGES.* > changelog
	dh_auto_build --buildsystem=makefile

override_dh_auto_install:
	dh_auto_install --buildsystem=makefile
