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

# Comment this to turn off verbose mode.
export DH_VERBOSE=1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# This has to be exported to make some magic below work.
export DH_OPTIONS


build:
	sh build-aux/autogen.sh
	dh $@

override_dh_auto_clean:
	sh build-aux/autogen.sh -r
	dh_auto_clean

override_dh_autoreconf:

# Enable as many compiler warnings as possible.
override_dh_auto_configure:
	dh_auto_configure -- --enable-warnings --disable-silent-rules


%:
	dh $@ 
