diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-11-21 00:22:47 -0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2017-12-18 17:07:02 +0300 |
commit | 28fa29272f660b3407c6499ea6313e84c89e1784 (patch) | |
tree | 392843445f4a33573c91db052564076145897100 | |
parent | 4d60b25b371c62bd1a0fad8981d034cd2d3e5385 (diff) | |
download | qemu-28fa29272f660b3407c6499ea6313e84c89e1784.zip qemu-28fa29272f660b3407c6499ea6313e84c89e1784.tar.gz qemu-28fa29272f660b3407c6499ea6313e84c89e1784.tar.bz2 |
Makefile: add more targets to the UNCHECKED_GOALS rule
These targets don't need a full build of git submodules.
(See b8e535ae8af and eaa2ddbb767).
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,7 +6,10 @@ BUILD_DIR=$(CURDIR) # Before including a proper config-host.mak, assume we are in the source tree SRC_PATH=. -UNCHECKED_GOALS := %clean TAGS cscope ctags docker docker-% help +UNCHECKED_GOALS := %clean TAGS cscope ctags dist \ + html info pdf txt \ + help check-help \ + docker docker-% vm-test vm-build-% # All following code might depend on configuration variables ifneq ($(wildcard config-host.mak),) |