fl.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Conditional Compilation Symbols (/D)
                                             Up Contents Index Back
─────Conditional Compilation Symbols (/D)───────────────────────────────────
 
     The /D option defines a symbolic name used by the conditional-
     compilation metacommands. The name must immediately follow /D,
     with no intervening space.
 
     Syntax: /Dsymbol[=val]
 
     An equal sign (=) and integer value may be added. This assigns a
     specific value to the symbol that the conditional-compilation
     metacommands can check.
 
     Example
 
          FL /Dtestprocs foo.for
 
     This example defines the symbol testprocs. The compiler will then
     evaluate any DEFINED (testprocs) expression in the conditional-
     compilation metacommands as true.
 
     See Also: $DEFINE
               /4cc
                                    -♦-