From a9aacd4d48c3a5887267366c2ef643e953975792 Mon Sep 17 00:00:00 2001 From: Michal Cmarada Date: Mon, 11 Mar 2019 13:29:57 +0100 Subject: add documentation generator Enables generating of HTML documentation. It depends on sphinx generator. During configuration if sphinx is detected it will generate "docs" target for make. To build the documentation use "make docs", which will build the HTML documentation in build-root/html. Change-Id: Ia627f7d26c954a2341e13a54006955d21d162802 Signed-off-by: Michal Cmarada --- clean.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'clean.sh') diff --git a/clean.sh b/clean.sh index 92e3185..95d0961 100755 --- a/clean.sh +++ b/clean.sh @@ -16,9 +16,12 @@ echo "JVPP cleanup started" make clean rm -rf build-root/packages/* +rm -rf build-root/html/* +rm -rf docs/_build/* +rm -rf docs/_doctrees/* rm -rf java/*.jar # clean cmake cache -find . -iwholename '*cmake*' -not -name CMakeLists.txt -delete +find . -iwholename '*cmake*' -not -name CMakeLists.txt -not -name FindSphinx.cmake -delete # clean cpack cache find . -iwholename '*cpack*' -delete echo "... cleanup finished." -- cgit 1.2.3-korg