make.c revision 1.24 1 1.24 mycroft /* $NetBSD: make.c,v 1.24 1999/09/16 00:54:14 mycroft Exp $ */
2 1.7 christos
3 1.1 cgd /*
4 1.10 christos * Copyright (c) 1988, 1989, 1990, 1993
5 1.10 christos * The Regents of the University of California. All rights reserved.
6 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
7 1.1 cgd * All rights reserved.
8 1.1 cgd *
9 1.1 cgd * This code is derived from software contributed to Berkeley by
10 1.1 cgd * Adam de Boor.
11 1.1 cgd *
12 1.1 cgd * Redistribution and use in source and binary forms, with or without
13 1.1 cgd * modification, are permitted provided that the following conditions
14 1.1 cgd * are met:
15 1.1 cgd * 1. Redistributions of source code must retain the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer.
17 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 cgd * notice, this list of conditions and the following disclaimer in the
19 1.1 cgd * documentation and/or other materials provided with the distribution.
20 1.1 cgd * 3. All advertising materials mentioning features or use of this software
21 1.1 cgd * must display the following acknowledgement:
22 1.1 cgd * This product includes software developed by the University of
23 1.1 cgd * California, Berkeley and its contributors.
24 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
25 1.1 cgd * may be used to endorse or promote products derived from this software
26 1.1 cgd * without specific prior written permission.
27 1.1 cgd *
28 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 cgd * SUCH DAMAGE.
39 1.1 cgd */
40 1.1 cgd
41 1.19 lukem #ifdef MAKE_BOOTSTRAP
42 1.24 mycroft static char rcsid[] = "$NetBSD: make.c,v 1.24 1999/09/16 00:54:14 mycroft Exp $";
43 1.19 lukem #else
44 1.18 christos #include <sys/cdefs.h>
45 1.1 cgd #ifndef lint
46 1.7 christos #if 0
47 1.10 christos static char sccsid[] = "@(#)make.c 8.1 (Berkeley) 6/6/93";
48 1.7 christos #else
49 1.24 mycroft __RCSID("$NetBSD: make.c,v 1.24 1999/09/16 00:54:14 mycroft Exp $");
50 1.7 christos #endif
51 1.1 cgd #endif /* not lint */
52 1.19 lukem #endif
53 1.1 cgd
54 1.1 cgd /*-
55 1.1 cgd * make.c --
56 1.1 cgd * The functions which perform the examination of targets and
57 1.1 cgd * their suitability for creation
58 1.1 cgd *
59 1.1 cgd * Interface:
60 1.1 cgd * Make_Run Initialize things for the module and recreate
61 1.1 cgd * whatever needs recreating. Returns TRUE if
62 1.1 cgd * work was (or would have been) done and FALSE
63 1.1 cgd * otherwise.
64 1.1 cgd *
65 1.1 cgd * Make_Update Update all parents of a given child. Performs
66 1.1 cgd * various bookkeeping chores like the updating
67 1.1 cgd * of the cmtime field of the parent, filling
68 1.1 cgd * of the IMPSRC context variable, etc. It will
69 1.1 cgd * place the parent on the toBeMade queue if it
70 1.1 cgd * should be.
71 1.1 cgd *
72 1.1 cgd * Make_TimeStamp Function to set the parent's cmtime field
73 1.1 cgd * based on a child's modification time.
74 1.1 cgd *
75 1.1 cgd * Make_DoAllVar Set up the various local variables for a
76 1.1 cgd * target, including the .ALLSRC variable, making
77 1.1 cgd * sure that any variable that needs to exist
78 1.1 cgd * at the very least has the empty value.
79 1.1 cgd *
80 1.1 cgd * Make_OODate Determine if a target is out-of-date.
81 1.1 cgd *
82 1.1 cgd * Make_HandleUse See if a child is a .USE node for a parent
83 1.1 cgd * and perform the .USE actions if so.
84 1.11 christos *
85 1.11 christos * Make_ExpandUse Expand .USE nodes and return the new list of
86 1.11 christos * targets.
87 1.1 cgd */
88 1.1 cgd
89 1.1 cgd #include "make.h"
90 1.4 cgd #include "hash.h"
91 1.4 cgd #include "dir.h"
92 1.4 cgd #include "job.h"
93 1.1 cgd
94 1.1 cgd static Lst toBeMade; /* The current fringe of the graph. These
95 1.1 cgd * are nodes which await examination by
96 1.1 cgd * MakeOODate. It is added to by
97 1.1 cgd * Make_Update and subtracted from by
98 1.1 cgd * MakeStartJobs */
99 1.1 cgd static int numNodes; /* Number of nodes to be processed. If this
100 1.1 cgd * is non-zero when Job_Empty() returns
101 1.1 cgd * TRUE, there's a cycle in the graph */
102 1.1 cgd
103 1.5 jtc static int MakeAddChild __P((ClientData, ClientData));
104 1.13 christos static int MakeFindChild __P((ClientData, ClientData));
105 1.5 jtc static int MakeAddAllSrc __P((ClientData, ClientData));
106 1.5 jtc static int MakeTimeStamp __P((ClientData, ClientData));
107 1.5 jtc static int MakeHandleUse __P((ClientData, ClientData));
108 1.4 cgd static Boolean MakeStartJobs __P((void));
109 1.5 jtc static int MakePrintStatus __P((ClientData, ClientData));
110 1.1 cgd /*-
111 1.1 cgd *-----------------------------------------------------------------------
112 1.1 cgd * Make_TimeStamp --
113 1.1 cgd * Set the cmtime field of a parent node based on the mtime stamp in its
114 1.10 christos * child. Called from MakeOODate via Lst_ForEach.
115 1.1 cgd *
116 1.1 cgd * Results:
117 1.10 christos * Always returns 0.
118 1.1 cgd *
119 1.1 cgd * Side Effects:
120 1.1 cgd * The cmtime of the parent node will be changed if the mtime
121 1.1 cgd * field of the child is greater than it.
122 1.1 cgd *-----------------------------------------------------------------------
123 1.1 cgd */
124 1.1 cgd int
125 1.1 cgd Make_TimeStamp (pgn, cgn)
126 1.5 jtc GNode *pgn; /* the current parent */
127 1.5 jtc GNode *cgn; /* the child we've just examined */
128 1.1 cgd {
129 1.1 cgd if (cgn->mtime > pgn->cmtime) {
130 1.1 cgd pgn->cmtime = cgn->mtime;
131 1.1 cgd }
132 1.1 cgd return (0);
133 1.1 cgd }
134 1.5 jtc
135 1.5 jtc static int
136 1.5 jtc MakeTimeStamp (pgn, cgn)
137 1.5 jtc ClientData pgn; /* the current parent */
138 1.5 jtc ClientData cgn; /* the child we've just examined */
139 1.5 jtc {
140 1.5 jtc return Make_TimeStamp((GNode *) pgn, (GNode *) cgn);
141 1.5 jtc }
142 1.1 cgd
143 1.1 cgd /*-
145 1.1 cgd *-----------------------------------------------------------------------
146 1.1 cgd * Make_OODate --
147 1.1 cgd * See if a given node is out of date with respect to its sources.
148 1.1 cgd * Used by Make_Run when deciding which nodes to place on the
149 1.1 cgd * toBeMade queue initially and by Make_Update to screen out USE and
150 1.1 cgd * EXEC nodes. In the latter case, however, any other sort of node
151 1.1 cgd * must be considered out-of-date since at least one of its children
152 1.1 cgd * will have been recreated.
153 1.1 cgd *
154 1.10 christos * Results:
155 1.1 cgd * TRUE if the node is out of date. FALSE otherwise.
156 1.1 cgd *
157 1.1 cgd * Side Effects:
158 1.1 cgd * The mtime field of the node and the cmtime field of its parents
159 1.1 cgd * will/may be changed.
160 1.1 cgd *-----------------------------------------------------------------------
161 1.1 cgd */
162 1.1 cgd Boolean
163 1.1 cgd Make_OODate (gn)
164 1.1 cgd register GNode *gn; /* the node to check */
165 1.1 cgd {
166 1.1 cgd Boolean oodate;
167 1.1 cgd
168 1.1 cgd /*
169 1.1 cgd * Certain types of targets needn't even be sought as their datedness
170 1.1 cgd * doesn't depend on their modification time...
171 1.1 cgd */
172 1.1 cgd if ((gn->type & (OP_JOIN|OP_USE|OP_EXEC)) == 0) {
173 1.1 cgd (void) Dir_MTime (gn);
174 1.1 cgd if (DEBUG(MAKE)) {
175 1.1 cgd if (gn->mtime != 0) {
176 1.1 cgd printf ("modified %s...", Targ_FmtTime(gn->mtime));
177 1.1 cgd } else {
178 1.1 cgd printf ("non-existent...");
179 1.1 cgd }
180 1.1 cgd }
181 1.1 cgd }
182 1.1 cgd
183 1.1 cgd /*
184 1.1 cgd * A target is remade in one of the following circumstances:
185 1.1 cgd * its modification time is smaller than that of its youngest child
186 1.1 cgd * and it would actually be run (has commands or type OP_NOP)
187 1.1 cgd * it's the object of a force operator
188 1.1 cgd * it has no children, was on the lhs of an operator and doesn't exist
189 1.1 cgd * already.
190 1.1 cgd *
191 1.1 cgd * Libraries are only considered out-of-date if the archive module says
192 1.1 cgd * they are.
193 1.1 cgd *
194 1.1 cgd * These weird rules are brought to you by Backward-Compatability and
195 1.1 cgd * the strange people who wrote 'Make'.
196 1.1 cgd */
197 1.1 cgd if (gn->type & OP_USE) {
198 1.1 cgd /*
199 1.1 cgd * If the node is a USE node it is *never* out of date
200 1.1 cgd * no matter *what*.
201 1.1 cgd */
202 1.1 cgd if (DEBUG(MAKE)) {
203 1.1 cgd printf(".USE node...");
204 1.1 cgd }
205 1.10 christos oodate = FALSE;
206 1.1 cgd } else if ((gn->type & OP_LIB) && Arch_IsLib(gn)) {
207 1.1 cgd if (DEBUG(MAKE)) {
208 1.1 cgd printf("library...");
209 1.6 christos }
210 1.6 christos
211 1.6 christos /*
212 1.6 christos * always out of date if no children and :: target
213 1.6 christos */
214 1.6 christos
215 1.6 christos oodate = Arch_LibOODate (gn) ||
216 1.1 cgd ((gn->cmtime == 0) && (gn->type & OP_DOUBLEDEP));
217 1.1 cgd } else if (gn->type & OP_JOIN) {
218 1.1 cgd /*
219 1.1 cgd * A target with the .JOIN attribute is only considered
220 1.1 cgd * out-of-date if any of its children was out-of-date.
221 1.1 cgd */
222 1.1 cgd if (DEBUG(MAKE)) {
223 1.1 cgd printf(".JOIN node...");
224 1.22 christos }
225 1.22 christos if (DEBUG(MAKE)) {
226 1.22 christos printf("source %smade...", gn->flags & CHILDMADE ? "" : "not ");
227 1.22 christos }
228 1.8 christos oodate = (gn->flags & CHILDMADE) ? 1 : 0;
229 1.1 cgd } else if (gn->type & (OP_FORCE|OP_EXEC|OP_PHONY)) {
230 1.1 cgd /*
231 1.1 cgd * A node which is the object of the force (!) operator or which has
232 1.1 cgd * the .EXEC attribute is always considered out-of-date.
233 1.1 cgd */
234 1.1 cgd if (DEBUG(MAKE)) {
235 1.1 cgd if (gn->type & OP_FORCE) {
236 1.8 christos printf("! operator...");
237 1.8 christos } else if (gn->type & OP_PHONY) {
238 1.1 cgd printf(".PHONY node...");
239 1.1 cgd } else {
240 1.1 cgd printf(".EXEC node...");
241 1.1 cgd }
242 1.1 cgd }
243 1.1 cgd oodate = TRUE;
244 1.1 cgd } else if ((gn->mtime < gn->cmtime) ||
245 1.1 cgd ((gn->cmtime == 0) &&
246 1.1 cgd ((gn->mtime==0) || (gn->type & OP_DOUBLEDEP))))
247 1.1 cgd {
248 1.1 cgd /*
249 1.1 cgd * A node whose modification time is less than that of its
250 1.1 cgd * youngest child or that has no children (cmtime == 0) and
251 1.1 cgd * either doesn't exist (mtime == 0) or was the object of a
252 1.1 cgd * :: operator is out-of-date. Why? Because that's the way Make does
253 1.1 cgd * it.
254 1.1 cgd */
255 1.1 cgd if (DEBUG(MAKE)) {
256 1.1 cgd if (gn->mtime < gn->cmtime) {
257 1.1 cgd printf("modified before source...");
258 1.1 cgd } else if (gn->mtime == 0) {
259 1.1 cgd printf("non-existent and no sources...");
260 1.1 cgd } else {
261 1.1 cgd printf(":: operator and no sources...");
262 1.1 cgd }
263 1.1 cgd }
264 1.1 cgd oodate = TRUE;
265 1.21 christos } else {
266 1.22 christos /*
267 1.21 christos * When a non-existing child with no sources
268 1.21 christos * (such as a typically used FORCE source) has been made and
269 1.21 christos * the target of the child (usually a directory) has the same
270 1.21 christos * timestamp as the timestamp just given to the non-existing child
271 1.21 christos * after it was considered made.
272 1.1 cgd */
273 1.22 christos if (DEBUG(MAKE)) {
274 1.22 christos if (gn->flags & FORCE)
275 1.1 cgd printf("non existing child...");
276 1.22 christos }
277 1.1 cgd oodate = (gn->flags & FORCE) ? 1 : 0;
278 1.1 cgd }
279 1.1 cgd
280 1.1 cgd /*
281 1.1 cgd * If the target isn't out-of-date, the parents need to know its
282 1.1 cgd * modification time. Note that targets that appear to be out-of-date
283 1.1 cgd * but aren't, because they have no commands and aren't of type OP_NOP,
284 1.1 cgd * have their mtime stay below their children's mtime to keep parents from
285 1.1 cgd * thinking they're out-of-date.
286 1.1 cgd */
287 1.5 jtc if (!oodate) {
288 1.1 cgd Lst_ForEach (gn->parents, MakeTimeStamp, (ClientData)gn);
289 1.1 cgd }
290 1.1 cgd
291 1.1 cgd return (oodate);
292 1.1 cgd }
293 1.1 cgd
294 1.1 cgd /*-
296 1.1 cgd *-----------------------------------------------------------------------
297 1.1 cgd * MakeAddChild --
298 1.1 cgd * Function used by Make_Run to add a child to the list l.
299 1.1 cgd * It will only add the child if its make field is FALSE.
300 1.1 cgd *
301 1.1 cgd * Results:
302 1.1 cgd * Always returns 0
303 1.1 cgd *
304 1.1 cgd * Side Effects:
305 1.1 cgd * The given list is extended
306 1.1 cgd *-----------------------------------------------------------------------
307 1.5 jtc */
308 1.5 jtc static int
309 1.5 jtc MakeAddChild (gnp, lp)
310 1.1 cgd ClientData gnp; /* the node to add */
311 1.5 jtc ClientData lp; /* the list to which to add it */
312 1.5 jtc {
313 1.14 christos GNode *gn = (GNode *) gnp;
314 1.22 christos Lst l = (Lst) lp;
315 1.1 cgd
316 1.1 cgd if ((gn->flags & REMAKE) == 0 && !(gn->type & OP_USE)) {
317 1.1 cgd (void)Lst_EnQueue (l, (ClientData)gn);
318 1.1 cgd }
319 1.13 christos return (0);
320 1.13 christos }
321 1.13 christos
322 1.13 christos /*-
324 1.13 christos *-----------------------------------------------------------------------
325 1.13 christos * MakeFindChild --
326 1.13 christos * Function used by Make_Run to find the pathname of a child
327 1.13 christos * that was already made.
328 1.13 christos *
329 1.13 christos * Results:
330 1.14 christos * Always returns 0
331 1.14 christos *
332 1.13 christos * Side Effects:
333 1.13 christos * The path and mtime of the node and the cmtime of the parent are
334 1.13 christos * updated
335 1.14 christos *-----------------------------------------------------------------------
336 1.13 christos */
337 1.14 christos static int
338 1.13 christos MakeFindChild (gnp, pgnp)
339 1.13 christos ClientData gnp; /* the node to find */
340 1.14 christos ClientData pgnp;
341 1.14 christos {
342 1.14 christos GNode *gn = (GNode *) gnp;
343 1.22 christos GNode *pgn = (GNode *) pgnp;
344 1.14 christos
345 1.14 christos (void) Dir_MTime(gn);
346 1.13 christos Make_TimeStamp(pgn, gn);
347 1.13 christos gn->made = UPTODATE;
348 1.13 christos
349 1.1 cgd return (0);
350 1.1 cgd }
351 1.1 cgd
352 1.1 cgd /*-
354 1.1 cgd *-----------------------------------------------------------------------
355 1.1 cgd * Make_HandleUse --
356 1.1 cgd * Function called by Make_Run and SuffApplyTransform on the downward
357 1.1 cgd * pass to handle .USE and transformation nodes. A callback function
358 1.1 cgd * for Lst_ForEach, it implements the .USE and transformation
359 1.1 cgd * functionality by copying the node's commands, type flags
360 1.1 cgd * and children to the parent node. Should be called before the
361 1.1 cgd * children are enqueued to be looked at by MakeAddChild.
362 1.1 cgd *
363 1.1 cgd * A .USE node is much like an explicit transformation rule, except
364 1.1 cgd * its commands are always added to the target node, even if the
365 1.1 cgd * target already has commands.
366 1.1 cgd *
367 1.1 cgd * Results:
368 1.1 cgd * returns 0.
369 1.1 cgd *
370 1.1 cgd * Side Effects:
371 1.1 cgd * Children and commands may be added to the parent and the parent's
372 1.1 cgd * type may be changed.
373 1.1 cgd *
374 1.1 cgd *-----------------------------------------------------------------------
375 1.1 cgd */
376 1.1 cgd int
377 1.1 cgd Make_HandleUse (cgn, pgn)
378 1.1 cgd register GNode *cgn; /* The .USE node */
379 1.1 cgd register GNode *pgn; /* The target of the .USE node */
380 1.1 cgd {
381 1.1 cgd register LstNode ln; /* An element in the children list */
382 1.1 cgd
383 1.1 cgd if (cgn->type & (OP_USE|OP_TRANSFORM)) {
384 1.1 cgd if ((cgn->type & OP_USE) || Lst_IsEmpty(pgn->commands)) {
385 1.1 cgd /*
386 1.1 cgd * .USE or transformation and target has no commands -- append
387 1.10 christos * the child's commands to the parent.
388 1.1 cgd */
389 1.1 cgd (void) Lst_Concat (pgn->commands, cgn->commands, LST_CONCNEW);
390 1.11 christos }
391 1.11 christos
392 1.11 christos if (Lst_Open (cgn->children) == SUCCESS) {
393 1.11 christos while ((ln = Lst_Next (cgn->children)) != NILLNODE) {
394 1.11 christos register GNode *tgn, *gn = (GNode *)Lst_Datum (ln);
395 1.11 christos
396 1.11 christos /*
397 1.11 christos * Expand variables in the .USE node's name
398 1.11 christos * and save the unexpanded form.
399 1.11 christos * We don't need to do this for commands.
400 1.11 christos * They get expanded properly when we execute.
401 1.11 christos */
402 1.11 christos if (gn->uname == NULL) {
403 1.11 christos gn->uname = gn->name;
404 1.11 christos } else {
405 1.11 christos if (gn->name)
406 1.11 christos free(gn->name);
407 1.11 christos }
408 1.11 christos gn->name = Var_Subst(NULL, gn->uname, pgn, FALSE);
409 1.11 christos if (gn->name && gn->uname && strcmp(gn->name, gn->uname) != 0) {
410 1.11 christos /* See if we have a target for this node. */
411 1.1 cgd tgn = Targ_FindNode(gn->name, TARG_NOCREATE);
412 1.1 cgd if (tgn != NILGNODE)
413 1.1 cgd gn = tgn;
414 1.1 cgd }
415 1.1 cgd
416 1.1 cgd if (Lst_Member (pgn->children, gn) == NILLNODE) {
417 1.1 cgd (void) Lst_AtEnd (pgn->children, gn);
418 1.1 cgd (void) Lst_AtEnd (gn->parents, pgn);
419 1.1 cgd pgn->unmade += 1;
420 1.10 christos }
421 1.1 cgd }
422 1.1 cgd Lst_Close (cgn->children);
423 1.1 cgd }
424 1.1 cgd
425 1.1 cgd pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_TRANSFORM);
426 1.1 cgd
427 1.1 cgd /*
428 1.1 cgd * This child node is now "made", so we decrement the count of
429 1.1 cgd * unmade children in the parent... We also remove the child
430 1.11 christos * from the parent's list to accurately reflect the number of decent
431 1.11 christos * children the parent has. This is used by Make_Run to decide
432 1.11 christos * whether to queue the parent or examine its children...
433 1.11 christos */
434 1.1 cgd if ((cgn->type & OP_USE) &&
435 1.1 cgd (ln = Lst_Member (pgn->children, (ClientData) cgn)) != NILLNODE) {
436 1.1 cgd Lst_Remove(pgn->children, ln);
437 1.1 cgd pgn->unmade--;
438 1.5 jtc }
439 1.5 jtc }
440 1.5 jtc return (0);
441 1.5 jtc }
442 1.5 jtc static int
443 1.5 jtc MakeHandleUse (pgn, cgn)
444 1.5 jtc ClientData pgn; /* the current parent */
445 1.22 christos ClientData cgn; /* the child we've just examined */
446 1.22 christos {
447 1.22 christos return Make_HandleUse((GNode *) pgn, (GNode *) cgn);
448 1.22 christos }
449 1.22 christos
450 1.22 christos
451 1.22 christos /*-
452 1.22 christos *-----------------------------------------------------------------------
453 1.22 christos * Make_Recheck --
454 1.22 christos * Check the modification time of a gnode, and update it as described
455 1.22 christos * in the comments below.
456 1.22 christos *
457 1.22 christos * Results:
458 1.22 christos * returns 0 if the gnode does not exist, or it's filesystem
459 1.22 christos * time if it does.
460 1.22 christos *
461 1.22 christos * Side Effects:
462 1.22 christos * the gnode's modification time and path name are affected.
463 1.22 christos *
464 1.22 christos *-----------------------------------------------------------------------
465 1.22 christos */
466 1.22 christos time_t
467 1.22 christos Make_Recheck (gn)
468 1.22 christos GNode *gn;
469 1.22 christos {
470 1.22 christos time_t mtime = Dir_MTime(gn);
471 1.22 christos
472 1.22 christos #ifndef RECHECK
473 1.22 christos /*
474 1.22 christos * We can't re-stat the thing, but we can at least take care of rules
475 1.22 christos * where a target depends on a source that actually creates the
476 1.22 christos * target, but only if it has changed, e.g.
477 1.22 christos *
478 1.22 christos * parse.h : parse.o
479 1.22 christos *
480 1.22 christos * parse.o : parse.y
481 1.22 christos * yacc -d parse.y
482 1.22 christos * cc -c y.tab.c
483 1.22 christos * mv y.tab.o parse.o
484 1.22 christos * cmp -s y.tab.h parse.h || mv y.tab.h parse.h
485 1.22 christos *
486 1.22 christos * In this case, if the definitions produced by yacc haven't changed
487 1.22 christos * from before, parse.h won't have been updated and gn->mtime will
488 1.22 christos * reflect the current modification time for parse.h. This is
489 1.22 christos * something of a kludge, I admit, but it's a useful one..
490 1.22 christos * XXX: People like to use a rule like
491 1.22 christos *
492 1.22 christos * FRC:
493 1.22 christos *
494 1.22 christos * To force things that depend on FRC to be made, so we have to
495 1.22 christos * check for gn->children being empty as well...
496 1.22 christos */
497 1.22 christos if (!Lst_IsEmpty(gn->commands) || Lst_IsEmpty(gn->children)) {
498 1.22 christos gn->mtime = now;
499 1.22 christos }
500 1.22 christos #else
501 1.22 christos /*
502 1.22 christos * This is what Make does and it's actually a good thing, as it
503 1.22 christos * allows rules like
504 1.22 christos *
505 1.22 christos * cmp -s y.tab.h parse.h || cp y.tab.h parse.h
506 1.22 christos *
507 1.22 christos * to function as intended. Unfortunately, thanks to the stateless
508 1.22 christos * nature of NFS (by which I mean the loose coupling of two clients
509 1.22 christos * using the same file from a common server), there are times
510 1.22 christos * when the modification time of a file created on a remote
511 1.22 christos * machine will not be modified before the local stat() implied by
512 1.22 christos * the Dir_MTime occurs, thus leading us to believe that the file
513 1.22 christos * is unchanged, wreaking havoc with files that depend on this one.
514 1.22 christos *
515 1.22 christos * I have decided it is better to make too much than to make too
516 1.22 christos * little, so this stuff is commented out unless you're sure it's ok.
517 1.22 christos * -- ardeb 1/12/88
518 1.22 christos */
519 1.22 christos /*
520 1.22 christos * Christos, 4/9/92: If we are saving commands pretend that
521 1.22 christos * the target is made now. Otherwise archives with ... rules
522 1.22 christos * don't work!
523 1.22 christos */
524 1.22 christos if ((noExecute && !(gn->type & OP_MAKE)) ||
525 1.22 christos (gn->type & OP_SAVE_CMDS) || mtime == 0) {
526 1.22 christos if (DEBUG(MAKE)) {
527 1.22 christos printf("update time to now: %s\n", Targ_FmtTime(gn->mtime));
528 1.22 christos }
529 1.22 christos gn->mtime = now;
530 1.22 christos }
531 1.22 christos else {
532 1.22 christos if (DEBUG(MAKE)) {
533 1.22 christos printf("current update time: %s\n", Targ_FmtTime(gn->mtime));
534 1.22 christos }
535 1.22 christos }
536 1.1 cgd #endif
537 1.1 cgd return mtime;
538 1.1 cgd }
539 1.1 cgd
540 1.1 cgd /*-
541 1.10 christos *-----------------------------------------------------------------------
542 1.1 cgd * Make_Update --
543 1.1 cgd * Perform update on the parents of a node. Used by JobFinish once
544 1.1 cgd * a node has been dealt with and by MakeStartJobs if it finds an
545 1.1 cgd * up-to-date node.
546 1.1 cgd *
547 1.1 cgd * Results:
548 1.1 cgd * Always returns 0
549 1.1 cgd *
550 1.22 christos * Side Effects:
551 1.22 christos * The unmade field of pgn is decremented and pgn may be placed on
552 1.22 christos * the toBeMade queue if this field becomes 0.
553 1.22 christos *
554 1.22 christos * If the child was made, the parent's flag CHILDMADE field will be
555 1.1 cgd * set true and its cmtime set to now.
556 1.1 cgd *
557 1.1 cgd * If the child is not up-to-date and still does not exist,
558 1.1 cgd * set the FORCE flag on the parents.
559 1.1 cgd *
560 1.1 cgd * If the child wasn't made, the cmtime field of the parent will be
561 1.1 cgd * altered if the child's mtime is big enough.
562 1.1 cgd *
563 1.1 cgd * Finally, if the child is the implied source for the parent, the
564 1.1 cgd * parent's IMPSRC variable is set appropriately.
565 1.1 cgd *
566 1.1 cgd *-----------------------------------------------------------------------
567 1.1 cgd */
568 1.1 cgd void
569 1.1 cgd Make_Update (cgn)
570 1.1 cgd register GNode *cgn; /* the child node */
571 1.22 christos {
572 1.5 jtc register GNode *pgn; /* the parent node */
573 1.1 cgd register char *cname; /* the child's name */
574 1.5 jtc register LstNode ln; /* Element in parents and iParents lists */
575 1.5 jtc time_t mtime = -1;
576 1.5 jtc char *p1;
577 1.1 cgd
578 1.1 cgd cname = Var_Value (TARGET, cgn, &p1);
579 1.1 cgd if (p1)
580 1.1 cgd free(p1);
581 1.1 cgd
582 1.1 cgd /*
583 1.1 cgd * If the child was actually made, see what its modification time is
584 1.22 christos * now -- some rules won't actually update the file. If the file still
585 1.1 cgd * doesn't exist, make its mtime now.
586 1.10 christos */
587 1.1 cgd if (cgn->made != UPTODATE) {
588 1.1 cgd mtime = Make_Recheck(cgn);
589 1.1 cgd }
590 1.22 christos
591 1.22 christos if (Lst_Open (cgn->parents) == SUCCESS) {
592 1.22 christos while ((ln = Lst_Next (cgn->parents)) != NILLNODE) {
593 1.1 cgd pgn = (GNode *)Lst_Datum (ln);
594 1.1 cgd if (mtime == 0)
595 1.1 cgd pgn->flags |= FORCE;
596 1.22 christos if (pgn->flags & REMAKE) {
597 1.22 christos pgn->unmade -= 1;
598 1.22 christos
599 1.1 cgd if ( ! (cgn->type & (OP_EXEC|OP_USE))) {
600 1.1 cgd if (cgn->made == MADE)
601 1.1 cgd pgn->flags |= CHILDMADE;
602 1.1 cgd (void)Make_TimeStamp (pgn, cgn);
603 1.1 cgd }
604 1.1 cgd if (pgn->unmade == 0) {
605 1.1 cgd /*
606 1.1 cgd * Queue the node up -- any unmade predecessors will
607 1.1 cgd * be dealt with in MakeStartJobs.
608 1.1 cgd */
609 1.1 cgd (void)Lst_EnQueue (toBeMade, (ClientData)pgn);
610 1.1 cgd } else if (pgn->unmade < 0) {
611 1.1 cgd Error ("Graph cycles through %s", pgn->name);
612 1.1 cgd }
613 1.1 cgd }
614 1.1 cgd }
615 1.1 cgd Lst_Close (cgn->parents);
616 1.1 cgd }
617 1.1 cgd /*
618 1.1 cgd * Deal with successor nodes. If any is marked for making and has an unmade
619 1.1 cgd * count of 0, has not been made and isn't in the examination queue,
620 1.1 cgd * it means we need to place it in the queue as it restrained itself
621 1.1 cgd * before.
622 1.22 christos */
623 1.1 cgd for (ln = Lst_First(cgn->successors); ln != NILLNODE; ln = Lst_Succ(ln)) {
624 1.1 cgd GNode *succ = (GNode *)Lst_Datum(ln);
625 1.1 cgd
626 1.1 cgd if ((succ->flags & REMAKE) && succ->unmade == 0 && succ->made == UNMADE &&
627 1.1 cgd Lst_Member(toBeMade, (ClientData)succ) == NILLNODE)
628 1.10 christos {
629 1.1 cgd (void)Lst_EnQueue(toBeMade, (ClientData)succ);
630 1.1 cgd }
631 1.1 cgd }
632 1.1 cgd
633 1.1 cgd /*
634 1.5 jtc * Set the .PREFIX and .IMPSRC variables for all the implied parents
635 1.5 jtc * of this node.
636 1.1 cgd */
637 1.1 cgd if (Lst_Open (cgn->iParents) == SUCCESS) {
638 1.1 cgd char *p1;
639 1.22 christos char *cpref = Var_Value(PREFIX, cgn, &p1);
640 1.1 cgd
641 1.1 cgd while ((ln = Lst_Next (cgn->iParents)) != NILLNODE) {
642 1.1 cgd pgn = (GNode *)Lst_Datum (ln);
643 1.1 cgd if (pgn->flags & REMAKE) {
644 1.5 jtc Var_Set (IMPSRC, cname, pgn);
645 1.5 jtc Var_Set (PREFIX, cpref, pgn);
646 1.1 cgd }
647 1.1 cgd }
648 1.1 cgd if (p1)
649 1.1 cgd free(p1);
650 1.1 cgd Lst_Close (cgn->iParents);
651 1.1 cgd }
652 1.1 cgd }
653 1.1 cgd
654 1.1 cgd /*-
656 1.1 cgd *-----------------------------------------------------------------------
657 1.1 cgd * MakeAddAllSrc --
658 1.1 cgd * Add a child's name to the ALLSRC and OODATE variables of the given
659 1.1 cgd * node. Called from Make_DoAllVar via Lst_ForEach. A child is added only
660 1.1 cgd * if it has not been given the .EXEC, .USE or .INVISIBLE attributes.
661 1.1 cgd * .EXEC and .USE children are very rarely going to be files, so...
662 1.1 cgd * A child is added to the OODATE variable if its modification time is
663 1.1 cgd * later than that of its parent, as defined by Make, except if the
664 1.1 cgd * parent is a .JOIN node. In that case, it is only added to the OODATE
665 1.1 cgd * variable if it was actually made (since .JOIN nodes don't have
666 1.1 cgd * modification times, the comparison is rather unfair...)..
667 1.1 cgd *
668 1.1 cgd * Results:
669 1.1 cgd * Always returns 0
670 1.1 cgd *
671 1.5 jtc * Side Effects:
672 1.5 jtc * The ALLSRC variable for the given node is extended.
673 1.5 jtc *-----------------------------------------------------------------------
674 1.1 cgd */
675 1.1 cgd static int
676 1.5 jtc MakeAddAllSrc (cgnp, pgnp)
677 1.5 jtc ClientData cgnp; /* The child to add */
678 1.1 cgd ClientData pgnp; /* The parent to whose ALLSRC variable it should be */
679 1.5 jtc /* added */
680 1.9 christos {
681 1.1 cgd GNode *cgn = (GNode *) cgnp;
682 1.17 christos GNode *pgn = (GNode *) pgnp;
683 1.17 christos if ((cgn->type & (OP_EXEC|OP_USE|OP_INVISIBLE)) == 0) {
684 1.17 christos char *child;
685 1.17 christos char *p1 = NULL;
686 1.1 cgd
687 1.1 cgd if (cgn->type & OP_ARCHV)
688 1.1 cgd child = Var_Value (MEMBER, cgn, &p1);
689 1.1 cgd else
690 1.1 cgd child = cgn->path ? cgn->path : cgn->name;
691 1.1 cgd Var_Append (ALLSRC, child, pgn);
692 1.1 cgd if (pgn->type & OP_JOIN) {
693 1.1 cgd if (cgn->made == MADE) {
694 1.1 cgd Var_Append(OODATE, child, pgn);
695 1.1 cgd }
696 1.1 cgd } else if ((pgn->mtime < cgn->mtime) ||
697 1.1 cgd (cgn->mtime >= now && cgn->made == MADE))
698 1.1 cgd {
699 1.1 cgd /*
700 1.1 cgd * It goes in the OODATE variable if the parent is younger than the
701 1.1 cgd * child or if the child has been modified more recently than
702 1.1 cgd * the start of the make. This is to keep pmake from getting
703 1.1 cgd * confused if something else updates the parent after the
704 1.1 cgd * make starts (shouldn't happen, I know, but sometimes it
705 1.1 cgd * does). In such a case, if we've updated the kid, the parent
706 1.1 cgd * is likely to have a modification time later than that of
707 1.1 cgd * the kid and anything that relies on the OODATE variable will
708 1.1 cgd * be hosed.
709 1.1 cgd *
710 1.1 cgd * XXX: This will cause all made children to go in the OODATE
711 1.1 cgd * variable, even if they're not touched, if RECHECK isn't defined,
712 1.5 jtc * since cgn->mtime is set to now in Make_Update. According to
713 1.5 jtc * some people, this is good...
714 1.1 cgd */
715 1.1 cgd Var_Append(OODATE, child, pgn);
716 1.1 cgd }
717 1.1 cgd if (p1)
718 1.1 cgd free(p1);
719 1.1 cgd }
720 1.1 cgd return (0);
721 1.1 cgd }
722 1.1 cgd
723 1.1 cgd /*-
725 1.1 cgd *-----------------------------------------------------------------------
726 1.1 cgd * Make_DoAllVar --
727 1.1 cgd * Set up the ALLSRC and OODATE variables. Sad to say, it must be
728 1.1 cgd * done separately, rather than while traversing the graph. This is
729 1.1 cgd * because Make defined OODATE to contain all sources whose modification
730 1.1 cgd * times were later than that of the target, *not* those sources that
731 1.1 cgd * were out-of-date. Since in both compatibility and native modes,
732 1.1 cgd * the modification time of the parent isn't found until the child
733 1.1 cgd * has been dealt with, we have to wait until now to fill in the
734 1.1 cgd * variable. As for ALLSRC, the ordering is important and not
735 1.1 cgd * guaranteed when in native mode, so it must be set here, too.
736 1.1 cgd *
737 1.1 cgd * Results:
738 1.1 cgd * None
739 1.1 cgd *
740 1.1 cgd * Side Effects:
741 1.1 cgd * The ALLSRC and OODATE variables of the given node is filled in.
742 1.1 cgd * If the node is a .JOIN node, its TARGET variable will be set to
743 1.1 cgd * match its ALLSRC variable.
744 1.5 jtc *-----------------------------------------------------------------------
745 1.1 cgd */
746 1.1 cgd void
747 1.1 cgd Make_DoAllVar (gn)
748 1.1 cgd GNode *gn;
749 1.1 cgd {
750 1.1 cgd Lst_ForEach (gn->children, MakeAddAllSrc, (ClientData) gn);
751 1.1 cgd
752 1.1 cgd if (!Var_Exists (OODATE, gn)) {
753 1.1 cgd Var_Set (OODATE, "", gn);
754 1.5 jtc }
755 1.5 jtc if (!Var_Exists (ALLSRC, gn)) {
756 1.5 jtc Var_Set (ALLSRC, "", gn);
757 1.5 jtc }
758 1.1 cgd
759 1.1 cgd if (gn->type & OP_JOIN) {
760 1.1 cgd char *p1;
761 1.1 cgd Var_Set (TARGET, Var_Value (ALLSRC, gn, &p1), gn);
762 1.1 cgd if (p1)
763 1.1 cgd free(p1);
764 1.1 cgd }
765 1.1 cgd }
766 1.1 cgd
767 1.1 cgd /*-
769 1.1 cgd *-----------------------------------------------------------------------
770 1.1 cgd * MakeStartJobs --
771 1.1 cgd * Start as many jobs as possible.
772 1.1 cgd *
773 1.1 cgd * Results:
774 1.1 cgd * If the query flag was given to pmake, no job will be started,
775 1.1 cgd * but as soon as an out-of-date target is found, this function
776 1.1 cgd * returns TRUE. At all other times, this function returns FALSE.
777 1.1 cgd *
778 1.1 cgd * Side Effects:
779 1.1 cgd * Nodes are removed from the toBeMade queue and job table slots
780 1.1 cgd * are filled.
781 1.10 christos *
782 1.1 cgd *-----------------------------------------------------------------------
783 1.1 cgd */
784 1.1 cgd static Boolean
785 1.1 cgd MakeStartJobs ()
786 1.1 cgd {
787 1.1 cgd register GNode *gn;
788 1.1 cgd
789 1.1 cgd while (!Job_Full() && !Lst_IsEmpty (toBeMade)) {
790 1.1 cgd gn = (GNode *) Lst_DeQueue (toBeMade);
791 1.1 cgd if (DEBUG(MAKE)) {
792 1.1 cgd printf ("Examining %s...", gn->name);
793 1.1 cgd }
794 1.1 cgd /*
795 1.1 cgd * Make sure any and all predecessors that are going to be made,
796 1.1 cgd * have been.
797 1.22 christos */
798 1.1 cgd if (!Lst_IsEmpty(gn->preds)) {
799 1.1 cgd LstNode ln;
800 1.1 cgd
801 1.1 cgd for (ln = Lst_First(gn->preds); ln != NILLNODE; ln = Lst_Succ(ln)){
802 1.1 cgd GNode *pgn = (GNode *)Lst_Datum(ln);
803 1.1 cgd
804 1.1 cgd if ((pgn->flags & REMAKE) && pgn->made == UNMADE) {
805 1.1 cgd if (DEBUG(MAKE)) {
806 1.1 cgd printf("predecessor %s not made yet.\n", pgn->name);
807 1.1 cgd }
808 1.1 cgd break;
809 1.1 cgd }
810 1.1 cgd }
811 1.1 cgd /*
812 1.1 cgd * If ln isn't nil, there's a predecessor as yet unmade, so we
813 1.1 cgd * just drop this node on the floor. When the node in question
814 1.10 christos * has been made, it will notice this node as being ready to
815 1.1 cgd * make but as yet unmade and will place the node on the queue.
816 1.1 cgd */
817 1.1 cgd if (ln != NILLNODE) {
818 1.1 cgd continue;
819 1.1 cgd }
820 1.1 cgd }
821 1.1 cgd
822 1.1 cgd numNodes--;
823 1.1 cgd if (Make_OODate (gn)) {
824 1.1 cgd if (DEBUG(MAKE)) {
825 1.1 cgd printf ("out-of-date\n");
826 1.1 cgd }
827 1.1 cgd if (queryFlag) {
828 1.1 cgd return (TRUE);
829 1.1 cgd }
830 1.1 cgd Make_DoAllVar (gn);
831 1.1 cgd Job_Make (gn);
832 1.1 cgd } else {
833 1.1 cgd if (DEBUG(MAKE)) {
834 1.1 cgd printf ("up-to-date\n");
835 1.1 cgd }
836 1.1 cgd gn->made = UPTODATE;
837 1.1 cgd if (gn->type & OP_JOIN) {
838 1.1 cgd /*
839 1.10 christos * Even for an up-to-date .JOIN node, we need it to have its
840 1.1 cgd * context variables so references to it get the correct
841 1.1 cgd * value for .TARGET when building up the context variables
842 1.1 cgd * of its parent(s)...
843 1.1 cgd */
844 1.1 cgd Make_DoAllVar (gn);
845 1.1 cgd }
846 1.1 cgd
847 1.1 cgd Make_Update (gn);
848 1.1 cgd }
849 1.1 cgd }
850 1.1 cgd return (FALSE);
851 1.1 cgd }
852 1.1 cgd
853 1.1 cgd /*-
855 1.1 cgd *-----------------------------------------------------------------------
856 1.1 cgd * MakePrintStatus --
857 1.1 cgd * Print the status of a top-level node, viz. it being up-to-date
858 1.1 cgd * already or not created due to an error in a lower level.
859 1.1 cgd * Callback function for Make_Run via Lst_ForEach.
860 1.1 cgd *
861 1.1 cgd * Results:
862 1.5 jtc * Always returns 0.
863 1.5 jtc *
864 1.5 jtc * Side Effects:
865 1.1 cgd * A message may be printed.
866 1.1 cgd *
867 1.1 cgd *-----------------------------------------------------------------------
868 1.5 jtc */
869 1.5 jtc static int
870 1.1 cgd MakePrintStatus(gnp, cyclep)
871 1.1 cgd ClientData gnp; /* Node to examine */
872 1.1 cgd ClientData cyclep; /* True if gn->unmade being non-zero implies
873 1.1 cgd * a cycle in the graph, not an error in an
874 1.5 jtc * inferior */
875 1.1 cgd {
876 1.1 cgd GNode *gn = (GNode *) gnp;
877 1.1 cgd Boolean cycle = *(Boolean *) cyclep;
878 1.1 cgd if (gn->made == UPTODATE) {
879 1.1 cgd printf ("`%s' is up to date.\n", gn->name);
880 1.1 cgd } else if (gn->unmade != 0) {
881 1.1 cgd if (cycle) {
882 1.1 cgd Boolean t = TRUE;
883 1.1 cgd /*
884 1.1 cgd * If printing cycles and came to one that has unmade children,
885 1.1 cgd * print out the cycle by recursing on its children. Note a
886 1.1 cgd * cycle like:
887 1.1 cgd * a : b
888 1.5 jtc * b : c
889 1.1 cgd * c : b
890 1.1 cgd * will cause this to erroneously complain about a being in
891 1.1 cgd * the cycle, but this is a good approximation.
892 1.5 jtc */
893 1.1 cgd if (gn->made == CYCLE) {
894 1.1 cgd Error("Graph cycles through `%s'", gn->name);
895 1.1 cgd gn->made = ENDCYCLE;
896 1.1 cgd Lst_ForEach(gn->children, MakePrintStatus, (ClientData) &t);
897 1.1 cgd gn->made = UNMADE;
898 1.1 cgd } else if (gn->made != ENDCYCLE) {
899 1.1 cgd gn->made = CYCLE;
900 1.1 cgd Lst_ForEach(gn->children, MakePrintStatus, (ClientData) &t);
901 1.11 christos }
902 1.1 cgd } else {
903 1.1 cgd printf ("`%s' not remade because of errors.\n", gn->name);
904 1.11 christos }
905 1.11 christos }
906 1.1 cgd return (0);
907 1.11 christos }
908 1.1 cgd
909 1.1 cgd
911 1.1 cgd /*-
912 1.1 cgd *-----------------------------------------------------------------------
913 1.11 christos * Make_ExpandUse --
914 1.11 christos * Expand .USE nodes and create a new targets list
915 1.1 cgd * Results:
916 1.1 cgd * The new list of targets.
917 1.1 cgd *
918 1.1 cgd * Side Effects:
919 1.11 christos * numNodes is set to the number of elements in the list of targets.
920 1.1 cgd *-----------------------------------------------------------------------
921 1.11 christos */
922 1.1 cgd Lst
923 1.1 cgd Make_ExpandUse (targs)
924 1.1 cgd Lst targs; /* the initial list of targets */
925 1.10 christos {
926 1.1 cgd register GNode *gn; /* a temporary pointer */
927 1.1 cgd register Lst examine; /* List of targets to examine */
928 1.1 cgd register Lst ntargs; /* List of new targets to be made */
929 1.1 cgd
930 1.1 cgd ntargs = Lst_Init (FALSE);
931 1.1 cgd
932 1.10 christos examine = Lst_Duplicate(targs, NOCOPY);
933 1.1 cgd numNodes = 0;
934 1.1 cgd
935 1.1 cgd /*
936 1.10 christos * Make an initial downward pass over the graph, marking nodes to be made
937 1.24 mycroft * as we go down. We call Suff_FindDeps to find where a node is and
938 1.23 mycroft * to get some children for it if it has none and also has no commands.
939 1.23 mycroft * If the node is a leaf, we stick it on the toBeMade queue to
940 1.23 mycroft * be looked at in a minute, otherwise we add its children to our queue
941 1.23 mycroft * and go on about our business.
942 1.23 mycroft */
943 1.23 mycroft while (!Lst_IsEmpty (examine)) {
944 1.22 christos gn = (GNode *) Lst_DeQueue (examine);
945 1.22 christos
946 1.1 cgd if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty (gn->cohorts)) {
947 1.10 christos Lst new;
948 1.1 cgd new = Lst_Duplicate (gn->cohorts, NOCOPY);
949 1.1 cgd Lst_Concat (new, examine, LST_CONCLINK);
950 1.1 cgd examine = new;
951 1.11 christos }
952 1.11 christos
953 1.1 cgd if ((gn->flags & REMAKE) == 0) {
954 1.17 christos gn->flags |= REMAKE;
955 1.17 christos numNodes++;
956 1.17 christos
957 1.17 christos /*
958 1.17 christos * Apply any .USE rules before looking for implicit dependencies
959 1.17 christos * to make sure everything has commands that should...
960 1.17 christos * Make sure that the TARGET is set, so that we can make
961 1.17 christos * expansions.
962 1.17 christos */
963 1.17 christos if (gn->type & OP_ARCHV) {
964 1.17 christos char *eoa, *eon;
965 1.17 christos eoa = strchr(gn->name, '(');
966 1.17 christos eon = strchr(gn->name, ')');
967 1.17 christos if (eoa == NULL || eon == NULL)
968 1.22 christos continue;
969 1.15 christos *eoa = '\0';
970 1.5 jtc *eon = '\0';
971 1.1 cgd Var_Set (MEMBER, eoa + 1, gn);
972 1.1 cgd Var_Set (ARCHIVE, gn->name, gn);
973 1.12 christos *eoa = '(';
974 1.1 cgd *eon = ')';
975 1.1 cgd }
976 1.11 christos
977 1.13 christos (void)Dir_MTime(gn);
978 1.14 christos Var_Set (TARGET, gn->path ? gn->path : gn->name, gn);
979 1.1 cgd Lst_ForEach (gn->children, MakeHandleUse, (ClientData)gn);
980 1.1 cgd Suff_FindDeps (gn);
981 1.1 cgd
982 1.10 christos if (gn->unmade != 0 && (gn->type & OP_MADE) == 0) {
983 1.1 cgd Lst_ForEach (gn->children, MakeAddChild, (ClientData)examine);
984 1.11 christos } else {
985 1.11 christos (void)Lst_EnQueue (ntargs, (ClientData)gn);
986 1.11 christos if (gn->type & OP_MADE)
987 1.11 christos Lst_ForEach (gn->children, MakeFindChild, (ClientData)gn);
988 1.11 christos }
989 1.11 christos }
990 1.11 christos }
991 1.11 christos
992 1.11 christos Lst_Destroy (examine, NOFREE);
993 1.11 christos return ntargs;
994 1.11 christos }
995 1.11 christos
996 1.11 christos /*-
997 1.11 christos *-----------------------------------------------------------------------
998 1.11 christos * Make_Run --
999 1.11 christos * Initialize the nodes to remake and the list of nodes which are
1000 1.11 christos * ready to be made by doing a breadth-first traversal of the graph
1001 1.11 christos * starting from the nodes in the given list. Once this traversal
1002 1.11 christos * is finished, all the 'leaves' of the graph are in the toBeMade
1003 1.11 christos * queue.
1004 1.11 christos * Using this queue and the Job module, work back up the graph,
1005 1.11 christos * calling on MakeStartJobs to keep the job table as full as
1006 1.11 christos * possible.
1007 1.11 christos *
1008 1.11 christos * Results:
1009 1.11 christos * TRUE if work was done. FALSE otherwise.
1010 1.11 christos *
1011 1.11 christos * Side Effects:
1012 1.11 christos * The make field of all nodes involved in the creation of the given
1013 1.11 christos * targets is set to 1. The toBeMade list is set to contain all the
1014 1.11 christos * 'leaves' of these subgraphs.
1015 1.1 cgd *-----------------------------------------------------------------------
1016 1.1 cgd */
1017 1.1 cgd Boolean
1018 1.1 cgd Make_Run (targs)
1019 1.1 cgd Lst targs; /* the initial list of targets */
1020 1.1 cgd {
1021 1.1 cgd int errors; /* Number of errors the Job module reports */
1022 1.1 cgd
1023 1.1 cgd toBeMade = Make_ExpandUse (targs);
1024 1.1 cgd
1025 1.1 cgd if (queryFlag) {
1026 1.1 cgd /*
1027 1.1 cgd * We wouldn't do any work unless we could start some jobs in the
1028 1.1 cgd * next loop... (we won't actually start any, of course, this is just
1029 1.10 christos * to see if any of the targets was out of date)
1030 1.1 cgd */
1031 1.1 cgd return (MakeStartJobs());
1032 1.1 cgd } else {
1033 1.1 cgd /*
1034 1.1 cgd * Initialization. At the moment, no jobs are running and until some
1035 1.1 cgd * get started, nothing will happen since the remaining upward
1036 1.1 cgd * traversal of the graph is performed by the routines in job.c upon
1037 1.1 cgd * the finishing of a job. So we fill the Job table as much as we can
1038 1.1 cgd * before going into our loop.
1039 1.1 cgd */
1040 1.1 cgd (void) MakeStartJobs();
1041 1.1 cgd }
1042 1.1 cgd
1043 1.1 cgd /*
1044 1.1 cgd * Main Loop: The idea here is that the ending of jobs will take
1045 1.1 cgd * care of the maintenance of data structures and the waiting for output
1046 1.1 cgd * will cause us to be idle most of the time while our children run as
1047 1.1 cgd * much as possible. Because the job table is kept as full as possible,
1048 1.1 cgd * the only time when it will be empty is when all the jobs which need
1049 1.1 cgd * running have been run, so that is the end condition of this loop.
1050 1.20 christos * Note that the Job module will exit if there were any errors unless the
1051 1.1 cgd * keepgoing flag was given.
1052 1.1 cgd */
1053 1.1 cgd while (!Job_Empty ()) {
1054 1.1 cgd Job_CatchOutput ();
1055 1.1 cgd Job_CatchChildren (!usePipes);
1056 1.5 jtc (void)MakeStartJobs();
1057 1.5 jtc }
1058 1.10 christos
1059 1.1 cgd errors = Job_Finish();
1060 1.1 cgd
1061 /*
1062 * Print the final status of each target. E.g. if it wasn't made
1063 * because some inferior reported an error.
1064 */
1065 errors = ((errors == 0) && (numNodes != 0));
1066 Lst_ForEach(targs, MakePrintStatus, (ClientData) &errors);
1067
1068 return (TRUE);
1069 }
1070