Learn R Programming

rmake (version 1.1.0)

make: 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.

See Also

makefile(), rmakeSkeleton()

Examples

Run this code
# NOT RUN {
  make()        # make all
  make('clean') # make the 'clean' task
  make('-j', 4) # make with 4 processes in parallell
# }

Run the code above in your browser using DataLab