Home
last modified time | relevance | path

Searched refs:endNode (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/bmake/
H A Dcompat.c275 GNode *endNode = Targ_GetEndNode(); in Compat_RunCommand() local
276 if (gn != endNode) { in Compat_RunCommand()
288 Lst_Append(&endNode->commands, cmdStart); in Compat_RunCommand()
773 GNode *endNode = Targ_GetEndNode(); in Compat_MakeAll() local
774 Compat_Make(endNode, endNode); in Compat_MakeAll()
775 if (GNode_IsError(endNode)) in Compat_MakeAll()
776 errorNode = endNode; in Compat_MakeAll()
H A Dtarg.c314 static GNode *endNode = NULL; in Targ_GetEndNode() local
316 if (endNode == NULL) { in Targ_GetEndNode()
317 endNode = Targ_GetNode(".END"); in Targ_GetEndNode()
318 endNode->type = OP_SPECIAL; in Targ_GetEndNode()
320 return endNode; in Targ_GetEndNode()
H A Djob.c2518 GNode *endNode = Targ_GetEndNode();
2519 if (!Lst_IsEmpty(&endNode->commands) ||
2520 !Lst_IsEmpty(&endNode->children)) {
2524 JobRun(endNode);
2575 GNode *endNode = Targ_GetEndNode(); Job_Finish() local