◄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► -♦-