Servertec   Directives
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
iMake
Make Files
Constants
Identifiers
Operators
Directives
#
!define
!error
!if{def|ndef}
!include
!message
!undef

Statements
Macros
Sales
Legal
Feedback

 

A directive is an complete instruction to the make preprocessor.

Directives

    Category Description
    # Used for documentation comments.
    !define Used to define an identifier.
    !error Used to display an error and stop preprocessor.
    [ !if | !ifdef | !ifndef ] Used for conditional compilation.
    !include Used to include a file.
    !message Used to display a message.
    !undef Used to undefined a previously defined identifier.

Example

    !include <init.inc>
    
    !ifndef VERSION
        !define VERSION     "1.0.0"
    !endif
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:18:21 EST 1999