#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1

get-orig-source:
	wget https://github.com/michiexile/hodie/tarball/hodie-1.5

override_dh_auto_configure:
	sh autogen.sh
	dh_auto_configure

override_dh_clean:
	dh_clean
	-rm aclocal.m4 config.h.in configure install-sh missing Makefile.in
	-rm -rf depcomp

%:
	dh $@ 

