ID: e2c523e37d9a9b8e41d19afd81ed6b45d3d9158d
36 lines
—
738B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/biothings/myvariant.info.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/biothings-myvariant.info
else
$(error OUTPUT_PATH is undefined)
endif
venv-2.7:
export PYENV_VERSION=2.7
pyenv virtualenv $$PYENV_VERSION venv
repository:
git clone ${REPOSITORY} repository
2023-12-26-643995dd: check_env_vars venv-2.7 repository
# Extract hash id
commit_hash=$@
commit_hash=$${commit_hash:11}
source ~/.pyenv/versions/venv/bin/activate
cd repository
git checkout $${commit_hash}
pip install sphinx
cd docs
make clean dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|