Predefined Inference Rules

NMAKE predefines three inference rules:

┌────────────────────┬────────────────────┬────────────────────┐
│Inference Rule      │Default             │Command Action      │
├────────────────────┼────────────────────┼────────────────────┤
│.C.OBJ              │$(CC) $(CFLAGS) /C  │ICC /C $*.C         │
│                    │$*.C                │                    │
├────────────────────┼────────────────────┼────────────────────┤
│.C.EXE              │$(CC) $(CFLAGS) $*.C│ICC $*.C            │
├────────────────────┼────────────────────┼────────────────────┤
│.ASM.OBJ            │$(AS) $(AFLAGS) $*; │MASM $*;            │
└────────────────────┴────────────────────┴────────────────────┘
NOTE


[Back: Inference-Rule Path Specifications]
[Next: Directives]