< Assembler Command Options / Dependency File Output Specification Options >
[Format]
The target name is not changed.
[Description]
- | This option specifies the target name to be output to the dependency file. |
- | This option is invalid if the -MM option is not specified. |
- | If no target name is specified for the -MT option, this option is invalid. |
[Example]
asrx -isa=rxv3 test.src -MM -MT=A
|
<test.src>
.include inc1.inc
.include inc2.inc
.END
|
<inc2.inc>
Note | “inc1.inc” and “inc3.inc” will be empty files. |
<Output contents>
A: test.src
A: inc1.inc
A: inc2.inc
A: inc3.inc
|