#!/usr/bin/make -f

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

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

clean:
	dh_testdir
	dh_testroot
	dh_clean

binary-arch:

binary-indep:
	dh_testdir
	dh_testroot
	dh_installchangelogs
	dh_installdocs
	dh_installdebconf
	dh_compress
	dh_fixperms
	dh_installman

	dh_installdeb

	dh_installdirs
	dh_install

	dh_link

	dh_compress

	dh_gencontrol
	dh_md5sums

	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary

