#!/usr/bin/make -f

# Uncomment this to turn on verbose mode
#export DH_VERBOSE=1

DEB_PACKAGES := $(shell dh_listpackages)
DEB_PACKAGE := $(firstword $(DEB_PACKAGES))

%:
	dh $@

override_dh_install:
	./debian/bin/install-firmware $(DEB_PACKAGE)
	dh_install

override_dh_builddeb:
	# Individual firmware files are already compressed, so no need to also
	# compress the package
	dh_builddeb -- -Znone

override_dh_strip_nondeterminism:

override_dh_build:
