#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@ --buildsystem=golang --with=golang

override_dh_dwz:
	# With golang-go, the following issue will appear if to use dh-dwz
	# Found compressed .debug_abbrev section, not attempting dwz compression
	# Skip dh_dwz to solve the issue

override_dh_auto_install:
	dh_auto_install -- --no-source
