mirror of
https://github.com/KarolS/millfork.git
synced 2026-04-25 19:17:54 +00:00
Add the -R option
This commit is contained in:
@@ -60,6 +60,8 @@ Unlike `-I`, this does not replace the default include directory and allows usin
|
||||
|
||||
* `-r <program>` – Run given program after successful compilation. Useful for automatically launching emulators without any external scripting.
|
||||
|
||||
* `-R <param>` – Adds a parameter to the command line of the program run with `-r`. All `-R` options are added in order, before the output file name.
|
||||
|
||||
* `-D <feature>=<value>` – Defines a feature value for the preprocessor.
|
||||
|
||||
* `-finput_intel_syntax`, `-finput_zilog_syntax` –
|
||||
|
||||
@@ -37,9 +37,9 @@ x64 hello_world.prg
|
||||
|
||||
The following options are obligatory when compiling your sources:
|
||||
|
||||
* `-o FILENAME` – specifies the base name for your output file, an appropriate file extension will be appended.
|
||||
* `-o <FILENAME>` – specifies the base name for your output file, an appropriate file extension will be appended.
|
||||
|
||||
* `-t PLATFORM` – specifies the target platform.
|
||||
* `-t <PLATFORM>` – specifies the target platform.
|
||||
Each platform is defined in an `.ini` file in the include directory.
|
||||
For the list of supported platforms, see [Supported platforms](target-platforms.md)
|
||||
|
||||
@@ -58,7 +58,7 @@ You may be also interested in the following:
|
||||
|
||||
* `-g` – additionally generate a label file
|
||||
|
||||
* `-r PROGRAM` – automatically launch given program after successful compilation
|
||||
* `-r <PROGRAM>` – automatically launch given program after successful compilation; you can supply extra params for it with `-R <PARAM>`
|
||||
|
||||
* `-Wall` – enable all warnings
|
||||
|
||||
|
||||
Reference in New Issue
Block a user