NMAKE Help (nmake.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.
/I Option
                                             Up Contents Index Back
─────NMAKE──────────────────────────────────────────────────────────────────
 
     Syntax:  /I
 
     Ignores exit codes from all commands. This option tells NMAKE to
     process the whole makefile even if errors occur.
 
     To ignore exit codes for part of a makefile, use the dash (-)
     command modifier or the .IGNORE directive.
     See: Dash (-) Modifier
          .IGNORE Directive
 
     To set or clear /I for part of a makefile, use !CMDSWITCHES.
     See: !CMDSWITCHES Directive
 
     To ignore errors for unrelated parts of the build, use the /K
     option; /I overrides /K if both are specified.
     See: /K Option
                                    -♦-