A description file consists of description blocks that define the dependent relationship between files. The description block specifies the creation and/or update process for each file. A description block has the following format:

targets...  :  dependents...
   command
   .
   .

targets...  :  dependents...
   command
   .
   .

Example:

# Program build description block

program.obj : program.c program.h
    icc /c program.c /Foprogram.obj

# End of program build description block


[Back] [Next]