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

Statements
Macros
Legal
Contact Us

 

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
Copyright © 1998-2005 Servertec. All rights reserved.
Privacy Statement.
Last Modified: Sun Sep 04 14:56:00 EDT 2005