#!/usr/bin/make -f

# This file was automatically generated by stdeb 0.8.5 at
# Thu, 30 May 2019 11:49:33 +0200
#

PYTHON2_VERSIONS = $(shell pyversions -r)
PYTHON3_VERSIONS = $(shell py3versions -r)

export PYBUILD_DISABLE=test
export PYBUILD_NAME=fs-plugin-onedatafs

override_dh_auto_clean:
		dh_auto_clean
		rm -rf build

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

override_dh_auto_install:

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

