#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
#export DH_OPTIONS=-v

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh  $@

override_dh_auto_build:
	dh_auto_build
	help2man --no-info --section=1 ./fspy > debian/fspy.1

override_dh_auto_install:
	# Skip make install, use dh_install with debian/install instead

override_dh_builddeb:
	dh_builddeb -- -Zxz
