diff options
author | Björn Gustavsson <[email protected]> | 2011-02-18 12:31:59 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-02-18 13:28:16 +0100 |
commit | ead290043efcb61a50f61a8f4c777d3d26824211 (patch) | |
tree | 2d6d859322a26630e3b6ed2d1e16a0139874a0c0 /erts/doc | |
parent | 08cec89bb1e781157a75c13e72562258b271b469 (diff) | |
parent | dd3e666c5114f81c9518e9f5ba14959ced079ab6 (diff) | |
download | otp-ead290043efcb61a50f61a8f4c777d3d26824211.tar.gz otp-ead290043efcb61a50f61a8f4c777d3d26824211.tar.bz2 otp-ead290043efcb61a50f61a8f4c777d3d26824211.zip |
Merge branch 'jp/dependencies_makefile' into dev
* jp/dependencies_makefile:
Add dependencies Makefile generation to erlc(1) and compile(3)
Conflicts:
lib/compiler/test/compile_SUITE.erl
OTP-9065
Diffstat (limited to 'erts/doc')
-rw-r--r-- | erts/doc/src/erlc.xml | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/erts/doc/src/erlc.xml b/erts/doc/src/erlc.xml index 1e8960c22c..ebf76a2afe 100644 --- a/erts/doc/src/erlc.xml +++ b/erts/doc/src/erlc.xml @@ -4,7 +4,7 @@ <comref> <header> <copyright> - <year>1997</year><year>2010</year> + <year>1997</year><year>2011</year> <holder>Ericsson AB. All Rights Reserved.</holder> </copyright> <legalnotice> @@ -141,6 +141,50 @@ for compiling native code, which needs to be compiled with the same run-time system that it should be run on.</p> </item> + <tag>-M</tag> + <item> + <p>Produces a Makefile rule to track headers dependencies. The + rule is sent to stdout. No object file is produced. + </p> + </item> + <tag>-MF <em>Makefile</em></tag> + <item> + <p>Like the <c><![CDATA[-M]]></c> option above, except that the + Makefile is written to <em>Makefile</em>. No object + file is produced. + </p> + </item> + <tag>-MD</tag> + <item> + <p>Same as <c><![CDATA[-M -MF <File>.Pbeam]]></c>. + </p> + </item> + <tag>-MT <em>Target</em></tag> + <item> + <p>In conjunction with <c><![CDATA[-M]]></c> or + <c><![CDATA[-MF]]></c>, change the name of the rule emitted + to <em>Target</em>. + </p> + </item> + <tag>-MQ <em>Target</em></tag> + <item> + <p>Like the <c><![CDATA[-MT]]></c> option above, except that + characters special to make(1) are quoted. + </p> + </item> + <tag>-MP</tag> + <item> + <p>In conjunction with <c><![CDATA[-M]]></c> or + <c><![CDATA[-MF]]></c>, add a phony target for each dependency. + </p> + </item> + <tag>-MG</tag> + <item> + <p>In conjunction with <c><![CDATA[-M]]></c> or + <c><![CDATA[-MF]]></c>, consider missing headers as generated + files and add them to the dependencies. + </p> + </item> <tag>--</tag> <item> <p>Signals that no more options will follow. |