#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	make -C doc

override_dh_auto_install:
	cargo install --locked --offline --target x86_64-unknown-linux-musl --path=. --root=debian/ambient-ci/usr
	find debian -name '.crates*' -delete

override_dh_auto_test:
	echo tests are disabled, for now
