#!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # # Modified to make a template file for a multi-binary package with separated # build-arch and build-indep targets by Bill Allombert 2001 # 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 configure: build: build-indep build-arch: build-indep: clean: dh_testdir dh_testroot dh_clean install: install-indep install-indep: dh_testdir dh_testroot dh_clean -k dh_install install-arch: binary-indep: install-indep dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_link dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary-arch: binary: binary-arch binary-indep .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure