summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-02-08 10:16:23 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-02-08 10:16:39 -0600
commitd85a108a1b37b9dbaf151d4141e21674ab53f569 (patch)
tree7415234430d9ed87281e30c9aaa55353de1e8158 /solenv
parentmake hsqldb build with java 1.7 (diff)
downloadcore-d85a108a1b37b9dbaf151d4141e21674ab53f569.tar.gz
core-d85a108a1b37b9dbaf151d4141e21674ab53f569.zip
re-enable make help from the top-level make
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gbuild/gbuild.help.txt76
-rw-r--r--solenv/gbuild/gbuild.mk81
2 files changed, 77 insertions, 80 deletions
diff --git a/solenv/gbuild/gbuild.help.txt b/solenv/gbuild/gbuild.help.txt
new file mode 100644
index 000000000000..d93285fa1bc6
--- /dev/null
+++ b/solenv/gbuild/gbuild.help.txt
@@ -0,0 +1,76 @@
+NAME
+ gbuild - GNU make based build system for LibreOffice
+
+SYNOPSIS
+ make [ -f makefile ] [ options ] [ variable=value ... ] [ targets ] ...
+
+IMPORTANT OPTIONS
+ -s Silent operation; do not print the commands as they are executed.
+
+ -n Print the commands that would be executed, but do not execute them.
+ -k Continue as much as possible after an error.
+
+ -j Specifies the number of jobs (commands) to run simultaneously.
+ -l Specifies that no new jobs (commands) should be started if there are
+ others jobs running and the load average is at least load.
+
+ -t Touch files (mark them up to date without really changing them)
+ instead of running their commands.
+ -W Pretend that the target file has just been modified.
+ -o Do not remake the file file even if it is older than its
+ dependencies, and do not remake anything on account of changes in file.
+
+ -p Print the data base (rules and variable values) that results from
+ reading the makefiles.
+ --debug=b debug make run, see GNU make man page for details
+
+ (descriptions from GNU make man page)
+
+AVAILABLE TARGETS
+ all build product and run unit tests (default goal)
+ build build product
+ unitcheck run unit tests
+ subsequentcheck run system tests (requires full installation)
+ check run unit tests and if in toplevel subsequentcheck
+ clean remove all generated files
+ showdeliverables show the targets delivered to OUTDIR and their source
+ debugrun starts the dev-install instance and allows tests to be run
+ against it
+ <module> build the named module
+ <module>.clean clean the named module
+ <module>.all for dmake modules only, build the named module and
+ the pre-requisite modules for this module
+ <module>.deliver for dmake modules only, deliver the named module
+ cmd execute the command contained in the variable cmd=""
+ in a shell with config_host.mk or config_build.mk
+ environement set. (see gb_SIDE)
+
+INTERACTIVE VARIABLES:
+ DEBUG / debug If not empty, build with DBGLEVEL=1 (see below).
+ ENABLE_SYMBOLS / enable_symbols
+ If not empty, build with debug symbols. Automatically
+ enabled by DEBUG/debug.
+ DBGLEVEL / dbglevel
+ If not empty, force the debug level to the specified value. The
+ debug level is passed to the source code through OSL_DEBUG_LEVEL
+ macro.
+ 0 = no debug
+ 1 = symbols + no optimizations
+ 2 = symbols + no optimizations + extra debug output. OSL_TRACE
+ starts being active on this level.
+ 3... = symbols + no optimizations + extra debug output (usually
+ extremely verbose). Levels > 2 are not used very much.
+
+ YACCFLAGS Add as flags for YACC parser generator invocation.
+ CPPFLAGS Add as preprocessor flags for C/C++/ObjC/ObjC++ compilation.
+ CFLAGS Add as compiler flags for plain C compilation.
+ CXXFLAGS Add as compiler flags for C++ compilation.
+ OBJCFLAGS Add as compiler flags for Objective C compilation.
+ OBJCXXFLAGS Add as compiler flags for Objective C++ compilation.
+ LDFLAGS Add as linker flags.
+ gb_FULLDEPS Generate and use dependencies (on by default, handle with care).
+ gb_COLOR Use ASCII color output.
+ gb_TITLES Show progress in terminal title.
+ gb_Side Either "host" of "build" (default to "host").
+ determine if config_host.mk or config_build.mk is used to
+ set the build environment.
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index 16587041bae1..65d5a809ee8b 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -330,88 +330,9 @@ gb_PYTHONTARGET := $(OUTDIR)/bin/python
gb_PYTHON := $(gb_PYTHON_PRECOMMAND) $(gb_PYTHONTARGET)
endif
-define gb_HelpMessage
-NAME
- gbuild - GNU make based build system for LibreOffice
-
-SYNOPSIS
- make [ -f makefile ] [ options ] [ variable=value ... ] [ targets ] ...
-
-IMPORTANT OPTIONS
- -s Silent operation; do not print the commands as they are executed.
-
- -n Print the commands that would be executed, but do not execute them.
- -k Continue as much as possible after an error.
-
- -j Specifies the number of jobs (commands) to run simultaneously.
- -l Specifies that no new jobs (commands) should be started if there are
- others jobs running and the load average is at least load.
-
- -t Touch files (mark them up to date without really changing them)
- instead of running their commands.
- -W Pretend that the target file has just been modified.
- -o Do not remake the file file even if it is older than its
- dependencies, and do not remake anything on account of changes in file.
-
- -p Print the data base (rules and variable values) that results from
- reading the makefiles.
- --debug=b debug make run, see GNU make man page for details
-
- (descriptions from GNU make man page)
-
-AVAILABLE TARGETS
- all build product and run unit tests (default goal)
- build build product
- unitcheck run unit tests
- subsequentcheck run system tests (requires full installation)
- check run unit tests and if in toplevel subsequentcheck
- clean remove all generated files
- showdeliverables show the targets delivered to OUTDIR and their source
- debugrun starts the dev-install instance and allows tests to be run
- against it
- <module> build the named module
- <module>.clean clean the named module
- <module>.all for dmake modules only, build the named module and
- the pre-requisite modules for this module
- <module>.deliver for dmake modules only, deliver the named module
- cmd execute the command contained in the variable cmd=""
- in a shell with config_host.mk or config_build.mk
- environement set. (see gb_SIDE)
-
-INTERACTIVE VARIABLES:
- DEBUG / debug If not empty, build with DBGLEVEL=1 (see below).
- ENABLE_SYMBOLS / enable_symbols
- If not empty, build with debug symbols. Automatically
- enabled by DEBUG/debug.
- DBGLEVEL / dbglevel
- If not empty, force the debug level to the specified value. The
- debug level is passed to the source code through OSL_DEBUG_LEVEL
- macro.
- 0 = no debug
- 1 = symbols + no optimizations
- 2 = symbols + no optimizations + extra debug output. OSL_TRACE
- starts being active on this level.
- 3... = symbols + no optimizations + extra debug output (usually
- extremely verbose). Levels > 2 are not used very much.
-
- YACCFLAGS Add as flags for YACC parser generator invocation.
- CPPFLAGS Add as preprocessor flags for C/C++/ObjC/ObjC++ compilation.
- CFLAGS Add as compiler flags for plain C compilation.
- CXXFLAGS Add as compiler flags for C++ compilation.
- OBJCFLAGS Add as compiler flags for Objective C compilation.
- OBJCXXFLAGS Add as compiler flags for Objective C++ compilation.
- LDFLAGS Add as linker flags.
- gb_FULLDEPS Generate and use dependencies (on by default, handle with care).
- gb_COLOR Use ASCII color output.
- gb_TITLES Show progress in terminal title.
- gb_Side Either "host" of "build" (default to "host").
- determine if config_host.mk or config_build.mk is used to
- set the build environment.
-endef
-
.PHONY: help
help:
- $(info $(gb_HelpMessage))
+ @cat $(SRCDIR)/solenv/gbuild/gbuild.help.txt
@true
# vim: set noet sw=4: