From: Marc-André Lureau Date: Tue, 6 Mar 2018 16:17:28 +0000 (+0100) Subject: build-sys: make help could have 'modules' target X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0decdfe29ba6e6c9253af342916395b182bd4f84;p=qemu.git build-sys: make help could have 'modules' target Available when configure --enable-modules. Signed-off-by: Marc-André Lureau Message-Id: <20180306161728.20890-1-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/Makefile b/Makefile index 9a75c48ae0..5d9ef3b8fd 100644 --- a/Makefile +++ b/Makefile @@ -1046,6 +1046,9 @@ include $(SRC_PATH)/tests/vm/Makefile.include help: @echo 'Generic targets:' @echo ' all - Build all' +ifdef CONFIG_MODULES + @echo ' modules - Build all modules' +endif @echo ' dir/file.o - Build specified target only' @echo ' install - Install QEMU, documentation and tools' @echo ' ctags/TAGS - Generate tags file for editors'