home » zplus/dokk.git
ID: 57940bc355887bbe8e99388d16fe2358de952958
59 lines — 1K — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/pyinstaller/pyinstaller.git

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

venv:
	python3 -m venv venv

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

repository:
	git clone ${REPOSITORY} repository

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

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

v3.6: check_env_vars venv-3.7 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r requirements.txt
	pip install .
	pip install sphinx sphinx_rtd_theme
	cd doc
	make clean dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

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