#!/usr/bin/make -f

build:

binary-arch:

binary-indep:
	install -d debian/tmp/DEBIAN
	cp debian/config debian/tmp/DEBIAN
	cp debian/preinst debian/tmp/DEBIAN
	chmod +x debian/tmp/DEBIAN/preinst
	cp debian/postinst debian/tmp/DEBIAN
	chmod +x debian/tmp/DEBIAN/postinst
	cp debian/prerm debian/tmp/DEBIAN
	chmod +x debian/tmp/DEBIAN/prerm
	cp debian/postrm debian/tmp/DEBIAN
	chmod +x debian/tmp/DEBIAN/postrm
	install -d debian/tmp/usr/share/doc/maintainer-scripts
	cp debian/changelog debian/tmp/usr/share/doc/maintainer-scripts/changelog
	gzip -9 debian/tmp/usr/share/doc/maintainer-scripts/changelog
	dpkg-gencontrol -isp
	dpkg --build debian/tmp ..

binary: binary-arch binary-indep

# Make sure we see dh_clean even in a rule clean depends on.  Not the point of
# this test suite, but a convenient place to put it.
clean: clean1 clean2 clean3
clean1:
clean2:
	dh_clean
clean3:

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