Syntax:

     $[@,filespec]

In this transformation, NMAKE32 will return the contents of the specified file, as a single string with comments removed.

Example:

INCLUDE.FIL is a file with the following lines:

     # This is a comment and will not be returned
     Line one,
                 # This comment will not be returned
      and line two.

The transformation macro:

     $[@,INCLUDE.FIL]

returns:

     Line one, and line two.


[Back] [Next]