home » zplus/dokk.git
ID: f356fb990c380c10a89fc85dceb29df41505879d
35 lines — 649B — View raw


SHELL = /bin/bash

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

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

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

repository:
	git clone ${REPOSITORY} repository

# Requies graphviz
7.34.0 8.25.0: check_env_vars venv-3.11 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install -r docs/requirements.txt
	pip install .
	cd docs
	make clean
	make html
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive build/html "${OUTPUT_PATH}/$@"

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