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

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

%:
	dh $@ --with python3

override_dh_auto_configure:
	dh_auto_configure -- \
		-DBUILD_TESTS=ON \
		-DBUILD_PYTHON=ON \
		-DBUILD_SHARED_LIBS=ON

override_dh_auto_build-arch:
	dh_auto_build -a

override_dh_auto_build-indep:
	doxygen

override_dh_auto_clean:
	dh_auto_clean
	rm -rf doc/html doc/latex


