powered by
make
This function executes the make command to rebuild all dependencies according to the Makefile generated by makefile().
Makefile
makefile()
make(..., .stdout = "", .stderr = "", .stdin = "")
Exit status of the command; see base::system2() for details.
base::system2()
Command-line arguments passed to the make command (see ?make in your shell for details)
?make
Where to direct standard output; see base::system2().
Where to direct standard error; see base::system2().
Where to get standard input; see base::system2()
Michal Burda
makefile(), rmakeSkeleton()
rmakeSkeleton()
if (FALSE) { make() # make all make('clean') # make the 'clean' task make('-j', 4) # make with 4 processes in parallel }
Run the code above in your browser using DataLab