#!/usr/bin/make -f
BUILDDIR = $(CURDIR)/debian/build

%:
	dh $@ --builddirectory=$(BUILDDIR)

# Unittests are explicitly set to "true" due to their failures.
# The "|| true" should be removed, when #860949 is resolved
override_dh_auto_install:
	dh_auto_install
	cd $(BUILDDIR) ; $(MAKE) test ARGS=-VV

override_dh_auto_test:
