#!/usr/bin/make -f

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

# copy also the test data in the build directory, so the tests can use them
# copy also the "version" file, as it is embedded during the build
export DH_GOLANG_INSTALL_EXTRA := test version

%:
	dh $@ --builddirectory=_build

override_dh_auto_install:
	dh_auto_install --builddirectory=_build -- --no-source
