#!/usr/bin/make -f

export GOCACHE=$(CURDIR)/debian/home
export HOME=$(CURDIR)/debian/home

%:
	dh $@

override_dh_auto_build:
	go build -buildvcs=false -trimpath -ldflags "-s -w" -o getallurls cmd/gau/main.go

override_dh_auto_install:
	dh_auto_install -- --no-source
