#!/usr/bin/make -f

PACKAGE=vyatta-vmare-tools
PKGDIR=$(CURDIR)/debian/tmp

configure	 = ./configure
configure	+= --host=$(DEB_HOST_GNU_TYPE)
configure	+= --build=$(DEB_BUILD_GNU_TYPE)
configure	+= --prefix=/opt/vyatta
configure	+= --mandir=\$${prefix}/share/man
configure	+= --infodir=\$${prefix}/share/info

configure: configure.ac Makefile.am
	chmod +x debian/autogen.sh
	debian/autogen.sh

config.status: configure
	dh_testdir
	rm -f config.cache
	$(configure)

build: build-stamp

build-stamp:  config.status
	dh_testdir
	$(MAKE)

clean: clean-patched

# Clean everything up, including everything auto-generated
# at build time that needs not to be kept around in the Debian diff
clean-patched:
	dh_testdir
	dh_testroot
	if test -f Makefile ; then $(MAKE) clean distclean ; fi
	rm -f build-stamp
	rm -f config.status config.sub config.guess config.log
	rm -f aclocal.m4 configure Makefile.in Makefile INSTALL
	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs
	dh_installchangelogs
	$(MAKE) DESTDIR=$(PKGDIR) install


# Build architecture-independent files here.
binary-indep: build install
	rm -f debian/files
	dh_testdir
	dh_testroot
	dh_installdocs
	dh_install --sourcedir=debian/tmp
	dh_installdebconf	
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

# Build architecture-dependent files here.
binary-arch: build install
# This is an architecture independent package
# so; we have nothing to do by default.

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