summaryrefslogtreecommitdiffstats
path: root/clean.sh
diff options
context:
space:
mode:
Diffstat (limited to 'clean.sh')
-rwxr-xr-xclean.sh5
1 files changed, 4 insertions, 1 deletions
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."