#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# See https://bugs.debian.org/1133139
ifeq ($(DEB_HOST_ARCH), armhf)
    export DEB_CFLAGS_MAINT_APPEND = -O0
    export CC = gcc-14
endif

%:
	dh $@

override_dh_autoreconf:
	mkdir -p m4
	dh_autoreconf
