#!/usr/bin/make -f

export PYBUILD_NAME=django-pxetool

PREFIX=debian/python-django-pxetool


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


override_dh_auto_test:
	tox -v -e flake8

override_dh_auto_clean:
	dh_auto_clean
	make -C docs clean

override_dh_auto_build:
	dh_auto_build
	make -C docs html
