args
argument to make()
.R/Makefile.R
For make(..., parallelism = "Makefile")
,
this function configures the default
arguments to system2()
.
It is an internal function, and most users do not need to
worry about it.
default_Makefile_args(jobs, verbose)
jobs | number of jobs |
---|---|
verbose | logical or numeric, control printing to the console.
Use
|
args
for system2(command, args)
default_Makefile_args(jobs = 2, verbose = FALSE)#> [1] "--jobs=2" "--silent"default_Makefile_args(jobs = 4, verbose = TRUE)#> [1] "--jobs=4"