diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-16 20:08:19 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-17 11:10:34 +0100 |
commit | 4b8cef4f6e3a4eb5969631485a7c725252f3cabc (patch) | |
tree | d770ef74664bb81601edca6632b7db97cebea56c /configure.ac | |
parent | df044d1558d340e51d42264f212c3247c534f6da (diff) |
Add <module>.*all aliases to .all* and update help
And just echo a rename info for the 'all' target and exit with
an error, so people will actually adapt. 'all' had been modified
to run 'allbuild' in the original commit anyway. And since there
is no toplevel 'all' target, this just seems consequent.
And .PHONY the new targets.
Also advertise "make help" a bit more at the end of configure.
Follow-up on commit d6496fce2e51a3e44753e6b5c462824f182b48d5
("split gbuild's <module>.all to <module>.allbuild or .allcheck").
Change-Id: Ia74020375f0a024dc67ea37ae4b18655af9df084
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128490
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 911a02107f52..890f5eb47040 100644 --- a/configure.ac +++ b/configure.ac @@ -14602,12 +14602,12 @@ fi cat << _EOF **************************************************************************** -To build, run: -$GNUMAKE - -To view some help, run: +To show information on various make targets and make flags, run: $GNUMAKE help +To just build, run: +$GNUMAKE + _EOF if test $_os != WINNT -a "$CROSS_COMPILING" != TRUE; then @@ -14622,7 +14622,7 @@ _EOF fi cat << _EOF -If you want to run the smoketest, run: +If you want to run the unit tests, run: $GNUMAKE check _EOF |