From: Doug Goldstein Date: Tue, 1 Sep 2015 20:10:08 +0000 (-0500) Subject: build: update top-level make help X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2589 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=06925643ce4e13a2e8d1e2e71fd12d11f81b8b3c;p=xen.git build: update top-level make help Update the top-level make help to include all the possible targets and not reference targets that are deprecated while hopefully being more clear as to what each target does. Signed-off-by: Doug Goldstein Acked-by: Ian Campbell --- diff --git a/Makefile b/Makefile index ba0df708d5..75177f054b 100644 --- a/Makefile +++ b/Makefile @@ -228,16 +228,23 @@ help: @echo ' install-stubdom - build and install the stubdomain images' @echo ' install-docs - build and install user documentation' @echo '' - @echo 'Building targets:' + @echo 'Local dist targets:' @echo ' dist - build and install everything into local dist directory' @echo ' world - clean everything then make dist' - @echo ' xen - build and install Xen hypervisor' - @echo ' tools - build and install tools' - @echo ' stubdom - build and install the stubdomain images' - @echo ' docs - build and install user documentation' + @echo ' dist-xen - build Xen hypervisor and install into local dist' + @echo ' dist-tools - build the tools and install into local dist' + @echo ' dist-stubdom - build the stubdomain images and install into local dist' + @echo ' dist-docs - build user documentation and install into local dist' + @echo '' + @echo 'Building targets:' + @echo ' build - build everything' + @echo ' build-xen - build Xen hypervisor' + @echo ' build-tools - build the tools' + @echo ' build-stubdom - build the stubdomain images' + @echo ' build-docs - build user documentation' @echo '' @echo 'Cleaning targets:' - @echo ' clean - clean the Xen, tools and docs (but not guest kernel trees)' + @echo ' clean - clean the Xen, tools and docs' @echo ' distclean - clean plus delete kernel build trees and' @echo ' local downloaded files' @echo ' subtree-force-update - Call *-force-update on all git subtrees (qemu, seabios, ovmf)'