about summary refs log tree commit diff homepage
path: root/README-CMake.md
diff options
context:
space:
mode:
authorAndrea Mattavelli <andreamattavelli@users.noreply.github.com>2017-10-05 07:50:22 +0100
committerGitHub <noreply@github.com>2017-10-05 07:50:22 +0100
commit5e6b6342dc2bc9d45a7db8fa45d7e949c55d908b (patch)
treec89cf0c6d43dba711e56c3d525fa865ce1160ac4 /README-CMake.md
parent12f0e2cd11e4bb9e0aa829f95bb437bee0e929cb (diff)
parent4f72f52f09d75f942bd1f28bf03b5abd95d9627d (diff)
downloadklee-5e6b6342dc2bc9d45a7db8fa45d7e949c55d908b.tar.gz
Merge pull request #757 from delcypher/cmake_clean_all
[CMake] Implement clean-all (fixes #718)
Diffstat (limited to 'README-CMake.md')
-rw-r--r--README-CMake.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/README-CMake.md b/README-CMake.md
index daa1e90c..5828e319 100644
--- a/README-CMake.md
+++ b/README-CMake.md
@@ -6,7 +6,11 @@ its autoconf/Makefile based build system.
 ## Useful top level targets
 
 * `check` - Build and run all tests.
-* `clean` - Clean the build tree. Note this won't clean the runtime build.
+* `clean` - Invoke CMake's built-in target to clean the build tree.  Note this
+  won't invoke the `clean_*` targets. It is advised that the `clean_all` target
+  is used instead.
+* `clean_all` - Run all clean targets.
+* `clean_doxygen` - Clean doxygen build tree.
 * `clean_runtime` - Clean the runtime build tree.
 * `docs` - Build documentation
 * `edit_cache` - Show cmake/ccmake/cmake-gui interface for chaning configure options.