#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

build: build-stamp
build-stamp:
	dh_testdir

	./configure
	$(MAKE)

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp

	-$(MAKE) clean

	dh_clean

install: install-stamp
install-stamp: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Install the package into debian/tmp.
	$(MAKE) install DESTDIR=`pwd`/debian/tmp

        # Install the configuration utility.
	install -m 755 `pwd`/debian/udconfig `pwd`/debian/tmp/usr/sbin

        # Install update utility.
	install -m 755 `pwd`/ud-update.sh `pwd`/debian/tmp/usr/sbin/ud-update
	
	# Install empty record file.
	install -m 644 `pwd`/debian/uptime.record `pwd`/debian/tmp/etc/uptime.record
	
	touch install-stamp

# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
	dh_testdir
	dh_testroot
	dh_installdirs
	dh_installdocs README NEWS AUTHORS INSTALL TEMPLATE-CODES
	dh_installmanpages
	dh_installchangelogs
	dh_installexamples template
	dh_strip
	dh_compress
	dh_fixperms
	dh_installinit
	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
