#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE=1

DFLAGS=-O -g -release -wi
ifeq ($(DEB_HOST_ARCH),armhf)
	DFLAGS += -mattr=-neon
endif
export DFLAGS

%:
	dh $@ --parallel --buildsystem=meson

override_dh_missing:
	dh_missing --fail-missing
