#!/usr/bin/make -f

configure: configure-stamp
configure-stamp:
	dh_testdir
	cp -f /usr/share/misc/config.sub config.sub
	cp -f /usr/share/misc/config.guess config.guess
	EXT2FS_LIBS="-lext2fs -lcom_err" ./configure \
		--prefix=/usr \
		--with-ccopts="-O2 -g -Wall" \
		--with-dumpdatespath=/var/lib/dumpdates \
		--enable-largefile \
		--enable-qfa \
		--enable-staticz
	touch configure-stamp

build: configure-stamp build-stamp
build-stamp:
	dh_testdir
	make
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp
	[ ! -f Makefile ] || make distclean
	dh_clean

binary-indep: build

binary-arch: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs
	make install \
		SBINDIR=`pwd`/debian/dump/sbin \
		MANDIR=`pwd`/debian/dump/usr/share/man/man8

	mv debian/dump/usr/share/man/man8/rmt.8 \
		debian/dump/usr/share/man/man8/rmt-dump.8
	mv debian/dump/sbin/rmt debian/dump/usr/sbin/rmt-dump

	(cd debian/dump/sbin ; rm -f rdump rrestore ; \
		ln -s dump rdump ; ln -s restore rrestore )
	(cd debian/dump/usr/share/man/man8 ; rm -f rdump* rrestore* ; \
		ln -s dump.8.gz rdump.8.gz ; ln -s restore.8.gz rrestore.8.gz )
	dh_installdocs KNOWNBUGS MAINTAINERS README THANKS TODO
	dh_installexamples examples/*
	dh_installchangelogs CHANGES
	dh_lintian
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

source diff:                                                                  
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

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