#!/usr/bin/make -f
# output every command that modifies files on the build system.
# export DH_VERBOSE = 1

%:
	dh $@

# Upstream does not remove auto-generated files
override_dh_auto_clean:
	dh_auto_clean
	rm -rf src/*.1 src/modules.c test/Makefile

# remove libhello
override_dh_install:
	dh_install
	rm -rf debian/httest/usr/lib/x86_64-linux-gnu/libhello*
