Home | History | Annotate | Download | only in make

Lines Matching defs:TARGET

243 	 * The target was aborted due to an error making a dependency. Used
251 * communicating to other parts of the program the way in which a target
282 /* Don't care if the target doesn't exist and can't be created. */
287 * Target is never out of date, but always execute commands anyway.
296 /* Don't remove the target when interrupted. */
301 * Target is a recursive make so its commands should always be
307 * Target is out-of-date only if any of its children was out-of-date.
322 * The node does not become the main target, even if it is the first
323 * target in the first makefile.
326 /* Not a file target; run always. */
331 * In a dependency line "target: source1 .WAIT source2", source1 is
350 /* Target is a member of an archive */
364 * Target has all the commands it should. Used when parsing to catch
365 * multiple command groups for a target. Only applies to the
385 /* this target needs to be (re)made */
387 /* children of this target were made */
416 * A graph node represents a target that can possibly be made, including its
420 /* The target's name, such as "clean" or "make.c" */
425 * The full pathname of the file belonging to the target.
500 * The "local" variables that are specific to this target and this
501 * target only, such as $@, $<, $?.
509 /* The commands to be given to a shell to create this target. */
567 /* Names of the variables that are "local" to a specific target. */
568 #define TARGET "@" /* Target of dependency */
580 /* True if every target is precious */
610 * special target .PATH).
783 * The target names specified on the command line. Used to resolve
1134 /* Return whether the target file should be preserved on interrupt. */
1143 GNode_VarTarget(GNode *gn) { return GNode_ValueDirect(gn, TARGET); }