#!/usr/bin/make -f

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

include /usr/share/quilt/quilt.make

DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)

CXXFLAGS = -Wall -g -fPIC

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
        CXXFLAGS += -O0
else
        CXXFLAGS += -O2
endif

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp

build-stamp: patch
	dh_testdir

	./configure = CXXFLAGS="$(CXXFLAGS)" --build=$(DEB_BUILD_GNU_TYPE) \
                                           --host=$(DEB_HOST_GNU_TYPE) \
                                           --prefix=/usr --datadir=/etc
	$(MAKE) STRIP=:
	touch build-stamp

clean: clean-patched unpatch

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

patch: patch-stamp
patch-stamp:
	dh_quilt_patch

unpatch:
	dh_quilt_patch
	rm -rf patch-stamp debian/patched
	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs

	install -m 755 src/bbpager debian/bbpager/usr/bin
	install -m 644 data/bbpager.* debian/bbpager/etc/bbtools

	touch install-stamp

binary-indep: build install

binary-arch: build install
	dh_testdir
	dh_testroot
	dh_installdocs
	dh_installmenu
	dh_installman debian/bbpager.1
	dh_installchangelogs ChangeLog
	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 patch unpatch clean-patched
