Lines Matching full:made

224  * UNMADE -> BEINGMADE -> MADE.
229 * The successful path when dependencies need to be made first:
230 * UNMADE -> DEFERRED -> REQUESTED -> BEINGMADE -> MADE.
232 * A node that has dependencies, and one of the dependencies cannot be made:
243 * dependencies have to be made first.
251 * The node is already being made. Trying to build a node in this
256 /* Was out-of-date and has been made. */
257 MADE, enumerator
258 /* Was already up-to-date, does not need to be made. */
261 * An error occurred while it was being made. Used only in compat
275 * should be made.
333 /* Assume the children of the node have been already made. */
355 * made first, including its children. Once that is finished,
356 * source2 is made, including its children. The .WAIT keyword may
408 /* this target needs to be (re)made */
410 /* children of this target were made */
412 /* children don't exist, and we pretend made */
439 * A graph node represents a target that can possibly be made, including its
465 GNodeMade made; member
492 * .ORDER nodes we need made. The nodes that must be made (if they're
493 * made) before this node can be made, but that do not enter into the
498 * .ORDER nodes who need us. The nodes that must be made (if they're
499 * made at all) after this node is made, but that do not depend on
811 * Randomize the order in which the targets from toBeMade are made,
1126 return gn->flags.remake && gn->made <= REQUESTED; in GNode_IsWaitingFor()
1132 return gn->made > DEFERRED; in GNode_IsReady()
1138 return gn->made >= MADE; in GNode_IsDone()
1144 return gn->made == ERROR || gn->made == ABORTED; in GNode_IsError()