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