#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@ --with autoreconf

override_dh_auto_configure:
	dh_auto_configure -- --with-curses-driver

override_dh_auto_build:
	${MAKE}
	${MAKE} -C doc

override_dh_installdocs:
	dh_installdocs --link-doc=libaa1

