A rule that defines a dependency between targets without actually providing any execution script.
Source:R/depRule.R
depRule.RdThis rule is useful when you want to specify that a target depends on another target but you do not want to execute any script to build it.
Arguments
- target
Target file name that depends on
depends- depends
A character vector of prerequisite file names that
targetdepends on.- task
A character vector of parent task names. The mechanism of tasks allows grouping rules. Anything different from
'all'will cause the creation of a new task depending on the given rule. Executingmake tasknamewill then force building this rule.