#!/usr/bin/make -f #-*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 D=$(CURDIR)/debian/patchutils/usr configure: configure-stamp configure-stamp: dh_testdir dh_autoreconf dh_auto_configure touch configure-stamp build build-arch: build-stamp build-stamp: configure-stamp dh_testdir # the Makefile runs some stuff twice with -jN $(MAKE) -j1 # Manual files that use the .so links to include other pages should # point to a path relative to the top-level manual hierarchy sed -i -e 's/ rediff.1/ man1\/rediff.1/' doc/editdiff.1 ifneq (nocheck,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) $(MAKE) check -j1 endif touch build-stamp build-indep: clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp [ ! -f Makefile ] || $(MAKE) distclean dh_autoreconf_clean dh_clean doc/*.1 doc/*.6 install: build-stamp dh_testdir dh_testroot dh_prep dh_installdirs $(MAKE) install prefix=$D mkdir $D/games mv $D/bin/espdiff $D/games binary-arch: install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs AUTHORS BUGS NEWS TODO dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_perl dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-indep: binary: binary-indep binary-arch .PHONY: configure build clean install binary-arch binary-indep binary