#!/usr/bin/make -f

build:
	dh_testdir

install:
	dh_testroot

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

binary: build install
	dh_installdirs
	dh_installchangelogs
	cp $(CURDIR)/copyright $(CURDIR)/debian/tmp/usr/share/doc/testcontrol
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_builddeb

