#!/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) -r debian/httest/usr/lib/*/libhello*
	rmdir debian/httest/usr/lib/*
