2.1.13. The `-u' Option: Undefine a Macro
-----------------------------------------
The `-u' option undefines a macro that would otherwise have been pre-
defined, either automatically or by a `-p' or `-d' option specified
earlier on the command lines.
For example, the following command line:
nasm myfile.asm -dFOO=100 -uFOO
would result in `FOO' _not_ being a predefined macro in the program.
This is useful to override options specified at a different point in a
Makefile.
For Makefile compatibility with many C compilers, this option can
also be specified as `-U'.