#!/usr/bin/make -f

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

%:
	dh $@ --with=quilt --with=systemd

override_dh_auto_build:
	@#noop

ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
	# tests disabled by request
endif

override_dh_auto_install:
	$(MAKE) PREFIX="$(CURDIR)/debian/tmp/usr" TAGS="build_docs" install
