Searched refs:curTargs (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/usr.bin/make/
H A Dparse.c929 Lst curTargs = Lst_Initializer(curTargs); local
942 Path_Expand(line, &emptyPath, &curTargs);
951 Lst_AtEnd(&curTargs, line);
954 while (!Lst_IsEmpty(&curTargs)) {
955 char *targName = Lst_DeQueue(&curTargs);
/freebsd-10.0-release/contrib/bmake/
H A Dparse.c1191 Lst curTargs; /* list of target names to be found and added local
1202 curTargs = Lst_Init(FALSE);
1396 Dir_Expand(line, emptyPath, curTargs);
1404 (void)Lst_AtEnd(curTargs, line);
1407 while(!Lst_IsEmpty(curTargs)) {
1408 char *targName = (char *)Lst_DeQueue(curTargs);
1455 Lst_Destroy(curTargs, NULL);
1456 curTargs = NULL;
1700 if (curTargs)
1701 Lst_Destroy(curTargs, NUL
[all...]

Completed in 59 milliseconds