Servertec Inference
M E N U

Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
iMake
Make Files
Constants
Identifiers
Operators
Directives
Statements
Assignment
Inference
Target

Macros
Legal
Feedback

 


Informs the make processor how to build a target file from a source file.

Syntax

    .sourceextension.targetextension:
    command ...

Notes

    sourceextension the extension of the source file.
    targetextension the extension of the target file.
    command the command(s) to use to build the target from from the source file.

Notes

    A make file contains one or more inference statement definitions, followed by one or more commands. Each inference statement definition tells iMake how to make the target file.

    Each inference statement must be terminated by an blank (empty) line.

Example

    .c.obj:
        cl /c $*.c
    
top of page
Built with iMake Copyright © 1997-1998 Servertec. All rights reserved.
Last Modified: Sun Aug 23 19:52:09 PDT 1998