#!/usr/bin/make -f
# DH_VERBOSE := 1

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

include /usr/share/dh-dlang/dlang-flags.mk

# we can not build with NEON on armhf, the Debian builders
# don't support it.
ifeq ($(DEB_HOST_ARCH),armhf)
	DFLAGS += -mattr=-neon
endif

%:
	dh $@ --buildsystem=meson

override_missing:
	dh_missing --list-missing
