home » zplus/dokk.git
ID: 22dfbf9d83eb606ca705ff18fe4deb761cd9171e
66 lines — 1K — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/pallets/flask.git

check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/flask
else
	$(error OUTPUT_PATH is undefined)
endif

venv-3.11:
	export PYENV_VERSION=3.11
	python3 -m venv venv

venv-3.8:
	export PYENV_VERSION=3.8
	python3 -m venv venv

venv-3.5:
	export PYENV_VERSION=3.5
	python3 -m venv venv

repository:
	git clone ${REPOSITORY} repository

2.3.3 3.0.1: check_env_vars venv-3.11 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r requirements/docs.txt
	pip install .
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

1.1.4: check_env_vars venv-3.8 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r docs/requirements.txt "markupsafe == 2.0.1"
	pip install .
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

0.12.5: check_env_vars venv-3.5 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r docs/requirements.txt
	pip install .
	cd docs
	make clean
	make dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR: