| Servertec | Macros | ||||||||||||
|
|
A macro represents some set of operations that result in a value. Macros are either inference macros, environmental variables, predefined identifiers, predefined macros, user defined identifiers or user defined macros. Syntax
macro( { expression { , expression }... } ) ] Notes
New macros can be defined using the !define directive. Example
INCLUDES = global.h ppsup.h
CC = cl /c
.c.obj:
$(CC) $*.c
symtab.obj: $(CWD)symtab.c $(INCLUDES)
|
||||||||||||
top of page
|