#!/usr/bin/make -f
# -*- makefile -*-

export DH_VERBOSE=1

%:
	dh $@

override_dh_auto_clean:
	rm -rf bin/*
	make clean++

override_dh_auto_install:
	$(CURDIR)/install.sh --no-sudo
