#!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. include /usr/share/dpatch/dpatch.make configure: dh_testdir build: patch dh_testdir $(MAKE) linux clean: unpatch dh_testdir dh_testroot [ ! -f Makefile ] || $(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs $(MAKE) install DESTDIR=$(CURDIR)/debian/cryptcat binary-indep: build install binary-arch: build install dh_testdir dh_testroot dh_installdocs -n dh_installman debian/cryptcat.1 dh_installchangelogs Changelog dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure