make {rmake}R Documentation

Run 'make“ in the system

Description

This function executes the make command in order to re-build all dependencies, accordingly to Makefile generated by makefile().

Usage

make(...)

Arguments

...

Command-line arguments passed to the make command

Value

Exit status of the command, see base::system2() for details.

Author(s)

Michal Burda

See Also

makefile(), rmakeSkeleton()

Examples

## Not run: 
  make()        # make all
  make('clean') # make the 'clean' task
  make('-j', 4) # make with 4 processes in parallell

## End(Not run)

[Package rmake version 1.1.0 Index]