diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-09-24 13:41:58 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-09-24 13:41:58 -0700 |
commit | 37a321fbbee22a9f5c022cc3ad43fbf4f522c099 (patch) | |
tree | 785cd36169be86f90028bb3ff860c24215ba4896 /doc/nasmdoc.src | |
parent | dee8eaa96710125a171136ab990a46012a0081ab (diff) | |
download | nasm-37a321fbbee22a9f5c022cc3ad43fbf4f522c099.tar.gz nasm-37a321fbbee22a9f5c022cc3ad43fbf4f522c099.tar.bz2 nasm-37a321fbbee22a9f5c022cc3ad43fbf4f522c099.zip |
Implement the -MG option (SF RFE 1564264)
Implement the -MG option, to generate dependencies in the presence of
generated files. In the end, we probably need to support the full
gamut of GCC-like dependency-generation options.
Diffstat (limited to 'doc/nasmdoc.src')
-rw-r--r-- | doc/nasmdoc.src | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/nasmdoc.src b/doc/nasmdoc.src index cdcb6b9..103f40f 100644 --- a/doc/nasmdoc.src +++ b/doc/nasmdoc.src @@ -16,6 +16,7 @@ \IR{-F} \c{-F} option \IR{-I} \c{-I} option \IR{-M} \c{-M} option +\IR{-MG} \c{-MG} option \IR{-On} \c{-On} option \IR{-P} \c{-P} option \IR{-U} \c{-U} option @@ -519,6 +520,14 @@ This can be redirected to a file for further processing. For example: \c NASM -M myfile.asm > myfile.dep +\S{opt-MG} The \i\c{-MG} Option: Generate \i{Makefile Dependencies}. + +This option can be used to generate makefile dependencies on stdout. +This differs from the \c{-M} option in that if a nonexisting file is +encountered, it is assumed to be a generated file and is added to the +dependency list without a prefix. + + \S{opt-F} The \i\c{-F} Option: Selecting a \i{Debug Information Format} This option is used to select the format of the debug information emitted |