Make.Rd
This will run the make
program with whatever target the user selects. The default target is "all". The function works by calling
the system2
function. It is presumed that an appropriate make
utilty exists on the user's computer. Further
note that the default makefile for an analysis project uses GNU extensions like wildcards.
Make(target = "all", command = "", ...)
target | The make target to run |
---|---|
command | User-supplied location of the |
... | Additional arguments to the |
The function will to try to confirm
if (FALSE) { Make() Make("clean", command = "/usr/bin/gmake") Make("gather") Make("MyFile.rda") }