#!/usr/bin/make -f
# -*- makefile -*-

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

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk

%:
	dh $@

execute_before_dh_auto_clean:
	# https://bugs.debian.org/1019298
	# Makefile may not exist before build
	[ ! -f Makefile ] || $(MAKE) cleandep
