diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-07-31 14:30:33 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-07-31 14:30:33 +0400 |
commit | 124a462cc206adb34f81c9bff5d1453d7734a52b (patch) | |
tree | 652817405c767f249cb05ed6b4ca879b20c4ff59 /nasm.1 | |
parent | 73b87c68b1b2bc8d4b711b87d25850c98aecdda8 (diff) | |
download | nasm-124a462cc206adb34f81c9bff5d1453d7734a52b.tar.gz nasm-124a462cc206adb34f81c9bff5d1453d7734a52b.tar.bz2 nasm-124a462cc206adb34f81c9bff5d1453d7734a52b.zip |
nasm.1 -- update contents
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.1')
-rw-r--r-- | nasm.1 | 51 |
1 files changed, 50 insertions, 1 deletions
@@ -112,8 +112,51 @@ Causes to output Makefile-style dependencies to stdout; normal output is suppressed. .TP +.BI \-MG " file" +Same as +.B \-M +but assumes that missing Makefile dependecies are generated and added +to dependency list without a prefix. +.TP +.BI \-MF " file" +Output Makefile-style dependencies to the specified file. +.TP +.BI \-MD " file" +Same as a combination of +.B \-M +and +.B \-MF +options. +.TP +.BI \-MT " file" +Override the default name of the dependency target +dependency target name. This is normally the same +as the output filename, specified by the +.B \-o +option. +.TP +.BI \-MQ " file" +The same as +.B \-MT +except it tries to quote characters that have special +meaning in Makefile syntax. This is not foolproof, +as not all characters with special meaning are quotable +in Make. +.TP +.BI \-MP +Emit phony target +.TP .BI \-O " number" -optimize branch offsets (-O0 disables, default). +Optimize branch offsets. +.ti +.B \-O0 +:No optimization (default) +.ti +.B \-O1 +:Minimal optimization +.ti +.B \-Ox +:Multipass optimization (recommended) .TP .BI \-o " outfile" Specifies a precise name for the output file, overriding @@ -180,6 +223,12 @@ to redirect error messages to .IR filename . This option exists to support operating systems on which stderr is not easily redirected. +.TP +.BI \-\-prefix +.TP +.BI \-\-postfix +Prepend or append (respectively) the given argument to all +global or extern variables. .PP .RE .SS SYNTAX |