[nmake]
.SUFFIXES: .pli
COMPILE_OPTS = gonumber source
.pli.obj:
PLI $*.pli ($(COMPILE_OPTS)
These lines in the TOOLS.INI file do the following:
- Add the .pli file extension to the list of extensions that can have inference
rules.
- Define the COMPILE_OPTS macro as gonumber source.
- Define an inference rule to build .obj files from .pli source files.