Updated help mojo.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s
This commit is contained in:
parent
cb9b0aa733
commit
8760a8dd98
73
README.md
73
README.md
|
@ -44,39 +44,40 @@ TODO
|
||||||
|
|
||||||
Running: `make`
|
Running: `make`
|
||||||
|
|
||||||
Use 'make help' for possible targets and documention.
|
|
||||||
|
|
||||||
Running: `make help`
|
|
||||||
|
|
||||||
Welcome to the MSXBUILD help system.
|
Welcome to the MSXBUILD help system.
|
||||||
|
|
||||||
For detailed help use one of the following targets;
|
For detailed fire help use one of the following targets;
|
||||||
|
|
||||||
* help@target
|
* @help-variable
|
||||||
* help@function
|
Lists build variables.
|
||||||
* help@variable
|
|
||||||
|
* @help-variable-deep
|
||||||
|
Lists deep variables.
|
||||||
|
|
||||||
|
* @help-variable-rock
|
||||||
|
Lists rock variables.
|
||||||
|
|
||||||
|
* @help-variable-flow
|
||||||
|
Lists flow variables.
|
||||||
|
|
||||||
|
* @help-function
|
||||||
|
Lists build functions.
|
||||||
|
|
||||||
|
* @help-function-deep
|
||||||
|
Lists deep functions.
|
||||||
|
|
||||||
|
* @help-function-flow
|
||||||
|
Lists flow functions.
|
||||||
|
|
||||||
|
* @help-target
|
||||||
|
Lists build targets.
|
||||||
|
|
||||||
|
* @help-target-deep
|
||||||
|
Lists deep targets.
|
||||||
|
|
||||||
|
* @help-all
|
||||||
|
Lists all documented information.
|
||||||
|
|
||||||
Running: `make help@function`
|
|
||||||
|
|
||||||
Documention of the make functions;
|
|
||||||
|
|
||||||
* mb_doc_function <name> [desc] [args]
|
|
||||||
Prints formatted documention of an function.
|
|
||||||
|
|
||||||
* mb_doc_variable <name> [desc] [value]
|
|
||||||
Prints formatted documention of an variable.
|
|
||||||
|
|
||||||
* mb_doc_target <name> [desc]
|
|
||||||
Prints formatted documention of an target.
|
|
||||||
|
|
||||||
* mb_doc_project <name>
|
|
||||||
Prints formatted documention of an project (help).
|
|
||||||
|
|
||||||
* mb_doc_show_help@all
|
|
||||||
Displays text for 'make'
|
|
||||||
|
|
||||||
...
|
|
||||||
|
|
||||||
## Example Project
|
## Example Project
|
||||||
|
|
||||||
|
@ -87,23 +88,23 @@ When you want to see whats happening do a debug run;
|
||||||
real 0m3.223s
|
real 0m3.223s
|
||||||
|
|
||||||
debug run at 11 Mhz;
|
debug run at 11 Mhz;
|
||||||
time MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on make bin/@assert-all
|
time VERBOSE=on MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on make bin/@assert-all
|
||||||
real 1m4.856s
|
real 1m4.856s
|
||||||
|
|
||||||
debug run real msx speed;
|
debug run real msx speed;
|
||||||
time MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on MB_OPENMSX_SPEED=100 make bin/@assert-all
|
time VERBOSE=on MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on MB_OPENMSX_SPEED=100 make bin/@assert-all
|
||||||
real 2m37.379s
|
real 2m37.379s
|
||||||
|
|
||||||
debug run with screenshot on exit; (black screens without throttle)
|
record run with screenshot on exit; (black screens without throttle)
|
||||||
time MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on MB_FLIGHT_SCREEN=on make -s bin/@assert-all
|
time MB_OPENMSX_HEADLESS=off MB_OPENMSX_THROTTLE=on MB_FLIGHT_SCREEN=on make bin/@assert-all
|
||||||
real 1m14.043s
|
real 1m14.043s
|
||||||
|
|
||||||
debug run with video recorder and merge to one video file;
|
record run with video per session and merge to one video file;
|
||||||
time MB_OPENMSX_HEADLESS=off MB_FLIGHT_VIDEO=on make -s bin/@assert-all
|
time MB_OPENMSX_HEADLESS=off MB_FLIGHT_VIDEO=on make bin/@assert-all
|
||||||
real 0m7.136s
|
real 0m7.136s
|
||||||
|
|
||||||
build parallel;
|
build parallel;
|
||||||
time make -s -j4 bin/@assert-all
|
time make -j4 bin/@assert-all
|
||||||
real 0m1.817s
|
real 0m1.817s
|
||||||
|
|
||||||
manual test msxhub on machine;
|
manual test msxhub on machine;
|
||||||
|
|
Loading…
Reference in a new issue