This 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.
depRule(target, depends = NULL, task = "all")
Instance of S3 class rmake.rule
Target file name that depends on depends
A character vector of prerequisite file names that target
depends on.
A character vector of parent task names. The mechanism of tasks
allows to group rules. Anything different from 'all'
will
cause creation of a new task depending on the given rule.
Executing make taskname
will then force building of this rule.
Michal Burda
rule()
, makefile()