#!/usr/bin/make -f

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

export PYBUILD_NAME = pybind11

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

override_dh_auto_clean:
	dh_auto_clean
	dh_auto_clean --buildsystem=pybuild

override_dh_auto_build:
	dh_auto_build
	dh_auto_build --buildsystem=pybuild
	PYTHONPATH=. http_proxy='127.0.0.1:9' \
		   sphinx-build -N -b html docs build/html

override_dh_auto_install:
	dh_auto_install
	dh_auto_install --buildsystem=pybuild

override_dh_installchangelogs:
	dh_installchangelogs docs/changelog.rst
