Libraries
Make Source Code
 previous   up   next 

Function Summary
void
make (in string: makefile, in array string: targets, in makeFlags: flags, in stringHash: macros)
Use rules and commands from a makefile to create the specified targets.
void
make (in string: makefile, in array string: targets, in makeFlags: flags)
Use rules and commands from a makefile to create the specified targets.
void
make (in string: makefile, in string: target, in makeFlags: flags, in stringHash: macros)
Use rules and commands from a makefile to create the specified target.
void
make (in string: makefile, in string: target, in makeFlags: flags)
Use rules and commands from a makefile to create the specified target.

Function Detail

make

const proc: make (in string: makefile, in array string: targets, in makeFlags: flags, in stringHash: macros)

Use rules and commands from a makefile to create the specified targets.

Parameters:
makefile - Path of the makefile which contains rules and commands in the usual makefile syntax.
targets - The targets that should be made.
flags - Options which affect command execution
macros - Predefined make macros.
Raises:
FILE_ERROR - A command failed and the flag ignoreErrors has not been set (ignoreErrors not in flags holds).

make

const proc: make (in string: makefile, in array string: targets, in makeFlags: flags)

Use rules and commands from a makefile to create the specified targets.

Parameters:
makefile - Path of the makefile which contains rules and commands in the usual makefile syntax.
targets - The targets that should be made.
flags - Options which affect command execution
Raises:
FILE_ERROR - A command failed and the flag ignoreErrors has not been set (ignoreErrors not in flags holds).

make

const proc: make (in string: makefile, in string: target, in makeFlags: flags, in stringHash: macros)

Use rules and commands from a makefile to create the specified target.

Parameters:
makefile - Path of the makefile which contains rules and commands in the usual makefile syntax.
target - The target that should be made.
flags - Options which affect command execution
macros - Predefined make macros.
Raises:
FILE_ERROR - A command failed and the flag ignoreErrors has not been set (ignoreErrors not in flags holds).

make

const proc: make (in string: makefile, in string: target, in makeFlags: flags)

Use rules and commands from a makefile to create the specified target.

Parameters:
makefile - Path of the makefile which contains rules and commands in the usual makefile syntax.
target - The target that should be made.
flags - Options which affect command execution
Raises:
FILE_ERROR - A command failed and the flag ignoreErrors has not been set (ignoreErrors not in flags holds).


 previous   up   next