#!/usr/bin/make -f
# -*- makefile -*-

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

DESTDIR = $(CURDIR)/debian/tmp/usr/

ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS)))
override_dh_auto_build:
	dh_auto_build -- VERBOSE=true
endif

override_dh_auto_install:
	$(MAKE) install DESTDIR=$(DESTDIR)
	dh_auto_install

%:
	dh $@ --parallel

.PHONY: override_dh_auto_install
