json/docs/mkdocs/Makefile

37 lines
897 B
Makefile
Raw Normal View History

2020-05-24 13:40:43 +02:00
# serve the site locally
serve: prepare_files style_check
2020-05-24 13:03:04 +02:00
venv/bin/mkdocs serve
serve_dirty: prepare_files style_check
venv/bin/mkdocs serve --dirtyreload
build: prepare_files style_check
2020-08-13 13:35:05 +02:00
venv/bin/mkdocs build
# create files that are not versioned inside the mkdocs folder (images, examples)
2020-05-24 13:40:43 +02:00
prepare_files: clean
mkdir docs/examples
cp -r ../json.gif docs/images
cp -r ../examples/*.cpp ../examples/*.output docs/examples
style_check:
@cd docs ; python3 ../scripts/check_structure.py
2020-05-24 13:03:04 +02:00
2020-05-24 13:40:43 +02:00
# clean subfolders
clean:
rm -fr docs/images/json.gif docs/examples
2020-05-24 13:40:43 +02:00
# publish site to GitHub pages
2020-05-24 13:03:04 +02:00
publish: prepare_files
venv/bin/mkdocs gh-deploy --clean --force
2020-05-24 13:40:43 +02:00
# install a Python virtual environment
install_venv: requirements.txt
2020-05-24 13:03:04 +02:00
python3 -mvenv venv
venv/bin/pip install wheel
2020-05-24 13:03:04 +02:00
venv/bin/pip install -r requirements.txt
2020-05-24 13:40:43 +02:00
# uninstall the virtual environment
uninstall_venv: clean
2020-05-24 13:03:04 +02:00
rm -fr venv