Lines Matching full:made
215 * UNMADE -> BEINGMADE -> MADE.
220 * The successful path when dependencies need to be made first:
221 * UNMADE -> DEFERRED -> REQUESTED -> BEINGMADE -> MADE.
223 * A node that has dependencies, and one of the dependencies cannot be made:
234 * dependencies have to be made first.
242 * The node is already being made. Trying to build a node in this
247 /* Was out-of-date and has been made. */
248 MADE,
249 /* Was already up-to-date, does not need to be made. */
252 * An error occurred while it was being made. Used only in compat
266 * should be made.
324 /* Assume the children of the node have been already made. */
346 * made first, including its children. Once that is finished,
347 * source2 is made, including its children. The .WAIT keyword may
399 /* this target needs to be (re)made */
401 /* children of this target were made */
403 /* children don't exist, and we pretend made */
430 * A graph node represents a target that can possibly be made, including its
456 GNodeMade made;
483 * .ORDER nodes we need made. The nodes that must be made (if they're
484 * made) before this node can be made, but that do not enter into the
489 * .ORDER nodes who need us. The nodes that must be made (if they're
490 * made at all) after this node is made, but that do not depend on
802 * Randomize the order in which the targets from toBeMade are made,
1111 return gn->flags.remake && gn->made <= REQUESTED;
1117 return gn->made > DEFERRED;
1123 return gn->made >= MADE;
1129 return gn->made == ERROR || gn->made == ABORTED;