#!/usr/bin/make -f
# Made with the aid of debmake, by Christoph Lameter,
# based on the sample debian/rules file for GNU hello by Ian Jackson.

export DH_COMPAT=4

package=type1inst

build:
	dh_testdir
	
	touch build

clean:
	dh_testdir
	dh_testroot
	dh_clean build

binary-indep: build
# There are no architecture-independent files to be uploaded
# generated by this package.  If there were any they would be
# made here.

binary-arch: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs
	install t1embed type1inst debian/$(package)/usr/bin
	dh_installdocs README
	dh_installman type1inst.man
	dh_link usr/share/man/man1/type1inst.1.gz \
		usr/share/man/man1/t1embed.1.gz
	dh_installchangelogs ChangeLog
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_perl
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch

.PHONY: binary binary-arch binary-indep clean
