json/doc/mkdocs/Makefile

32 lines
792 B
Makefile
Raw Normal View History

2020-05-24 11:40:43 +00:00
# serve the site locally
2020-05-24 11:03:04 +00:00
serve: prepare_files
venv/bin/mkdocs serve
2020-05-24 11:40:43 +00:00
# create files that are not versioned inside the mkdocs folder
prepare_files: clean
2020-05-24 11:03:04 +00:00
# build Doxygen
$(MAKE) -C ..
# create subfolders
mkdir docs/images docs/examples
# copy images
2020-05-24 20:45:38 +00:00
cp -vr ../json.gif ../images/range-begin-end.svg ../images/range-rbegin-rend.svg docs/images
2020-05-24 11:03:04 +00:00
# copy examples
cp -vr ../examples/*.cpp ../examples/*.output docs/examples
2020-05-24 11:40:43 +00:00
# clean subfolders
clean:
rm -fr docs/images docs/examples
# publish site to GitHub pages
2020-05-24 11:03:04 +00:00
publish: prepare_files
venv/bin/mkdocs gh-deploy --clean --force
2020-05-24 11:40:43 +00:00
# install a Python virtual environment
install_venv: requirements.txt
2020-05-24 11:03:04 +00:00
python3 -mvenv venv
venv/bin/pip install -r requirements.txt
2020-05-24 11:40:43 +00:00
# uninstall the virtual environment
uninstall_venv: clean
2020-05-24 11:03:04 +00:00
rm -fr venv