#!/usr/bin/make -f

#export DH_VERBOSE = 1

export CARGO_HOME=$(CURDIR)/debian/cargo_home

%:
	dh $@

override_dh_auto_build:
	cargo build --release
	target/release/dalfox man > dalfox.1
	target/release/dalfox completion bash > dalfox.bash
	target/release/dalfox completion zsh > dalfox.zsh
	target/release/dalfox completion fish > dalfox.fish
