#!/usr/bin/make -f

build:
	dh_testdir

install:
	dh_testroot

clean:
	$(RM) -r $(CURDIR)/debian/tmp

binary: build install
	dh_installdirs
	dh_installchangelogs
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_builddeb

