#!/usr/bin/make -f

# This file was automatically generated by stdeb 0.6.0+git at
# Thu, 01 Aug 2013 15:23:00 +0100

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

override_dh_auto_build:
	dh_auto_build
	set -ex; for python in $(shell py3versions -r); do \
		$$python setup.py build; \
	done;

override_dh_auto_install:
	dh_auto_install
	set -ex; for python in $(shell py3versions -r); do \
		$$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \
	done;