#!/usr/bin/make -f

%:
	dh $@ --buildsystem=pybuild --with=python2,sphinxdoc

override_dh_auto_clean:
	dh_auto_clean
	make -C docs clean

override_dh_auto_build:
	dh_auto_build
	make -C docs html

override_dh_installchangelogs:
	dh_installchangelogs CHANGELOG
