#!/usr/bin/make -f

DESTDIR=debian/tmp

%:
	dh $@

override_dh_auto_clean:
	ischroot || just vendor

override_dh_auto_build:
	test -e vendor.tar && (just build-vendored) || (just)

override_dh_auto_install:
	just rootdir=$(DESTDIR) install
