#!/usr/bin/make -f
# -*- makefile -*-

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

binary-arch:
	dh $@

%:
	dh $@ --with sphinxdoc

.PHONY: override_dh_auto_configure
override_dh_auto_configure:
	dh_auto_configure -- -DWITH_DOC=ON

.PHONY: override_dh_auto_build
override_dh_auto_build:
	dh_auto_build -- doc

.PHONY: override_dh_sphinxdoc
override_dh_sphinxdoc:
	dh_sphinxdoc -Xtheme_extras.js
