Example

MATH.LIB :  ADD.OBJ SUB.OBJ MUL.OBJ DIV.OBJ
  LIB @<<
MATH.LIB
-+ADD.OBJ-+SUB.OBJ-+MUL.OBJ-+DIV.OBJ
listing
<<

The above example creates an inline file and uses it to invoke the Library Manager (LIB). The inline file is used as a response file by (LIB). It specifies which library to use, the commands to execute, and the listing file to produce. The inline file contains:

          MATH.LIB
          -+ADD.OBJ-+SUB.OBJ-+MUL.OBJ-+DIV.OBJ
          listing

Because no file name is listed after the LIB command, the inline file is given a unique name and placed into the current directory (or the directory defined by the TMP environment variable).


[Back: InLine Files]
[Next: Escape Characters]