make

#Maker.makeFunction.


make(name::AbstractString = "default"; 
     dryrun::Bool = false, verbose::Bool = false)
make(names::AbstractVector; 
     dryrun::Bool = false, verbose::Bool = false)

Check, and if needed, update target name after updating its dependencies. For multiple targets specified in names, run make on each item sequentially.

If keyword argument verbose is set, the chain of targets and dependencies is shown.

If keyword argument dryrun is set, the chain of targets and actions is shown but not run.