home » zplus/dokk.git
ID: 542517f099976bfb2e5d964236a866205155f68c
31 lines — 596B — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/python-poetry/cleo.git

check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/python-poetry-cleo
else
	$(error OUTPUT_PATH is undefined)
endif

venv:
	python3 -m venv venv

repository:
	git clone ${REPOSITORY} repository

1.0.0 2.0.1 2.1.0: check_env_vars venv repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install sphinx sphinx_rtd_theme
	cd docs
	make clean dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

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