[PATCH 3/7] docs: put "make" information together in build-system.rst

Paolo Bonzini posted 7 patches 4 years, 4 months ago
[PATCH 3/7] docs: put "make" information together in build-system.rst
Posted by Paolo Bonzini 4 years, 4 months ago
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 docs/devel/build-system.rst | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/docs/devel/build-system.rst b/docs/devel/build-system.rst
index 3baec158f2..0f636d620e 100644
--- a/docs/devel/build-system.rst
+++ b/docs/devel/build-system.rst
@@ -380,6 +380,16 @@ phony target, while benchmarks are run with ``make bench``.  Meson test
 suites such as ``unit`` can be ran with ``make check-unit`` too.  It is also
 possible to run tests defined in meson.build with ``meson test``.
 
+Useful make targets
+-------------------
+
+``help``
+  Print a help message for the most common build targets.
+
+``print-VAR``
+  Print the value of the variable VAR. Useful for debugging the build
+  system.
+
 Important files for the build system
 ====================================
 
@@ -473,14 +483,3 @@ Built by Makefile:
   meson.build.  The rules are produced from Meson's JSON description of
   tests (obtained with "meson introspect --tests") through the script
   scripts/mtest2make.py.
-
-
-Useful make targets
--------------------
-
-``help``
-  Print a help message for the most common build targets.
-
-``print-VAR``
-  Print the value of the variable VAR. Useful for debugging the build
-  system.
-- 
2.31.1



Re: [PATCH 3/7] docs: put "make" information together in build-system.rst
Posted by Peter Maydell 4 years, 4 months ago
On Thu, 30 Sept 2021 at 14:33, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  docs/devel/build-system.rst | 21 ++++++++++-----------
>  1 file changed, 10 insertions(+), 11 deletions(-)
>
> diff --git a/docs/devel/build-system.rst b/docs/devel/build-system.rst
> index 3baec158f2..0f636d620e 100644
> --- a/docs/devel/build-system.rst
> +++ b/docs/devel/build-system.rst
> @@ -380,6 +380,16 @@ phony target, while benchmarks are run with ``make bench``.  Meson test
>  suites such as ``unit`` can be ran with ``make check-unit`` too.  It is also
>  possible to run tests defined in meson.build with ``meson test``.
>
> +Useful make targets
> +-------------------
> +
> +``help``
> +  Print a help message for the most common build targets.
> +
> +``print-VAR``
> +  Print the value of the variable VAR. Useful for debugging the build
> +  system.
> +

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

thanks
-- PMM