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

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

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- -DBUILD_DOC_SUPPORT=OFF

override_dh_install:
	dh_install
	rm -fr $$(find $(CURDIR) -name '__pycache__')

override_dh_auto_test:

