parse.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
4 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Adam de Boor.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.1 cgd #ifndef lint
40 1.1 cgd static char sccsid[] = "@(#)parse.c 5.18 (Berkeley) 2/19/91";
41 1.1 cgd #endif /* not lint */
42 1.1 cgd
43 1.1 cgd /*-
44 1.1 cgd * parse.c --
45 1.1 cgd * Functions to parse a makefile.
46 1.1 cgd *
47 1.1 cgd * One function, Parse_Init, must be called before any functions
48 1.1 cgd * in this module are used. After that, the function Parse_File is the
49 1.1 cgd * main entry point and controls most of the other functions in this
50 1.1 cgd * module.
51 1.1 cgd *
52 1.1 cgd * Most important structures are kept in Lsts. Directories for
53 1.1 cgd * the #include "..." function are kept in the 'parseIncPath' Lst, while
54 1.1 cgd * those for the #include <...> are kept in the 'sysIncPath' Lst. The
55 1.1 cgd * targets currently being defined are kept in the 'targets' Lst.
56 1.1 cgd *
57 1.1 cgd * The variables 'fname' and 'lineno' are used to track the name
58 1.1 cgd * of the current file and the line number in that file so that error
59 1.1 cgd * messages can be more meaningful.
60 1.1 cgd *
61 1.1 cgd * Interface:
62 1.1 cgd * Parse_Init Initialization function which must be
63 1.1 cgd * called before anything else in this module
64 1.1 cgd * is used.
65 1.1 cgd *
66 1.1 cgd * Parse_File Function used to parse a makefile. It must
67 1.1 cgd * be given the name of the file, which should
68 1.1 cgd * already have been opened, and a function
69 1.1 cgd * to call to read a character from the file.
70 1.1 cgd *
71 1.1 cgd * Parse_IsVar Returns TRUE if the given line is a
72 1.1 cgd * variable assignment. Used by MainParseArgs
73 1.1 cgd * to determine if an argument is a target
74 1.1 cgd * or a variable assignment. Used internally
75 1.1 cgd * for pretty much the same thing...
76 1.1 cgd *
77 1.1 cgd * Parse_Error Function called when an error occurs in
78 1.1 cgd * parsing. Used by the variable and
79 1.1 cgd * conditional modules.
80 1.1 cgd * Parse_MainName Returns a Lst of the main target to create.
81 1.1 cgd */
82 1.1 cgd
83 1.1 cgd #include <varargs.h>
84 1.1 cgd #include <stdio.h>
85 1.1 cgd #include <ctype.h>
86 1.1 cgd #include "make.h"
87 1.1 cgd #include "buf.h"
88 1.1 cgd #include "pathnames.h"
89 1.1 cgd
90 1.1 cgd /*
91 1.1 cgd * These values are returned by ParseEOF to tell Parse_File whether to
92 1.1 cgd * CONTINUE parsing, i.e. it had only reached the end of an include file,
93 1.1 cgd * or if it's DONE.
94 1.1 cgd */
95 1.1 cgd #define CONTINUE 1
96 1.1 cgd #define DONE 0
97 1.1 cgd static int ParseEOF();
98 1.1 cgd
99 1.1 cgd static Lst targets; /* targets we're working on */
100 1.1 cgd static Boolean inLine; /* true if currently in a dependency
101 1.1 cgd * line or its commands */
102 1.1 cgd
103 1.1 cgd static char *fname; /* name of current file (for errors) */
104 1.1 cgd static int lineno; /* line number in current file */
105 1.1 cgd static FILE *curFILE; /* current makefile */
106 1.1 cgd
107 1.1 cgd static int fatals = 0;
108 1.1 cgd
109 1.1 cgd static GNode *mainNode; /* The main target to create. This is the
110 1.1 cgd * first target on the first dependency
111 1.1 cgd * line in the first makefile */
112 1.1 cgd /*
113 1.1 cgd * Definitions for handling #include specifications
114 1.1 cgd */
115 1.1 cgd typedef struct IFile {
116 1.1 cgd char *fname; /* name of previous file */
117 1.1 cgd int lineno; /* saved line number */
118 1.1 cgd FILE * F; /* the open stream */
119 1.1 cgd } IFile;
120 1.1 cgd
121 1.1 cgd static Lst includes; /* stack of IFiles generated by
122 1.1 cgd * #includes */
123 1.1 cgd Lst parseIncPath; /* list of directories for "..." includes */
124 1.1 cgd Lst sysIncPath; /* list of directories for <...> includes */
125 1.1 cgd
126 1.1 cgd /*-
127 1.1 cgd * specType contains the SPECial TYPE of the current target. It is
128 1.1 cgd * Not if the target is unspecial. If it *is* special, however, the children
129 1.1 cgd * are linked as children of the parent but not vice versa. This variable is
130 1.1 cgd * set in ParseDoDependency
131 1.1 cgd */
132 1.1 cgd typedef enum {
133 1.1 cgd Begin, /* .BEGIN */
134 1.1 cgd Default, /* .DEFAULT */
135 1.1 cgd End, /* .END */
136 1.1 cgd Ignore, /* .IGNORE */
137 1.1 cgd Includes, /* .INCLUDES */
138 1.1 cgd Interrupt, /* .INTERRUPT */
139 1.1 cgd Libs, /* .LIBS */
140 1.1 cgd MFlags, /* .MFLAGS or .MAKEFLAGS */
141 1.1 cgd Main, /* .MAIN and we don't have anything user-specified to
142 1.1 cgd * make */
143 1.1 cgd Not, /* Not special */
144 1.1 cgd NotParallel, /* .NOTPARALELL */
145 1.1 cgd Null, /* .NULL */
146 1.1 cgd Order, /* .ORDER */
147 1.1 cgd Path, /* .PATH */
148 1.1 cgd Precious, /* .PRECIOUS */
149 1.1 cgd Shell, /* .SHELL */
150 1.1 cgd Silent, /* .SILENT */
151 1.1 cgd SingleShell, /* .SINGLESHELL */
152 1.1 cgd Suffixes, /* .SUFFIXES */
153 1.1 cgd Attribute, /* Generic attribute */
154 1.1 cgd } ParseSpecial;
155 1.1 cgd
156 1.1 cgd ParseSpecial specType;
157 1.1 cgd
158 1.1 cgd /*
159 1.1 cgd * Predecessor node for handling .ORDER. Initialized to NILGNODE when .ORDER
160 1.1 cgd * seen, then set to each successive source on the line.
161 1.1 cgd */
162 1.1 cgd static GNode *predecessor;
163 1.1 cgd
164 1.1 cgd /*
165 1.1 cgd * The parseKeywords table is searched using binary search when deciding
166 1.1 cgd * if a target or source is special. The 'spec' field is the ParseSpecial
167 1.1 cgd * type of the keyword ("Not" if the keyword isn't special as a target) while
168 1.1 cgd * the 'op' field is the operator to apply to the list of targets if the
169 1.1 cgd * keyword is used as a source ("0" if the keyword isn't special as a source)
170 1.1 cgd */
171 1.1 cgd static struct {
172 1.1 cgd char *name; /* Name of keyword */
173 1.1 cgd ParseSpecial spec; /* Type when used as a target */
174 1.1 cgd int op; /* Operator when used as a source */
175 1.1 cgd } parseKeywords[] = {
176 1.1 cgd { ".BEGIN", Begin, 0 },
177 1.1 cgd { ".DEFAULT", Default, 0 },
178 1.1 cgd { ".OPTIONAL", Attribute, OP_OPTIONAL },
179 1.1 cgd { ".END", End, 0 },
180 1.1 cgd { ".EXEC", Attribute, OP_EXEC },
181 1.1 cgd { ".IGNORE", Ignore, OP_IGNORE },
182 1.1 cgd { ".INCLUDES", Includes, 0 },
183 1.1 cgd { ".INTERRUPT", Interrupt, 0 },
184 1.1 cgd { ".INVISIBLE", Attribute, OP_INVISIBLE },
185 1.1 cgd { ".JOIN", Attribute, OP_JOIN },
186 1.1 cgd { ".LIBS", Libs, 0 },
187 1.1 cgd { ".MAIN", Main, 0 },
188 1.1 cgd { ".MAKE", Attribute, OP_MAKE },
189 1.1 cgd { ".MAKEFLAGS", MFlags, 0 },
190 1.1 cgd { ".MFLAGS", MFlags, 0 },
191 1.1 cgd { ".NOTMAIN", Attribute, OP_NOTMAIN },
192 1.1 cgd { ".NOTPARALLEL", NotParallel, 0 },
193 1.1 cgd { ".NULL", Null, 0 },
194 1.1 cgd { ".ORDER", Order, 0 },
195 1.1 cgd { ".PATH", Path, 0 },
196 1.1 cgd { ".PRECIOUS", Precious, OP_PRECIOUS },
197 1.1 cgd { ".RECURSIVE", Attribute, OP_MAKE },
198 1.1 cgd { ".SHELL", Shell, 0 },
199 1.1 cgd { ".SILENT", Silent, OP_SILENT },
200 1.1 cgd { ".SINGLESHELL", SingleShell, 0 },
201 1.1 cgd { ".SUFFIXES", Suffixes, 0 },
202 1.1 cgd { ".USE", Attribute, OP_USE },
203 1.1 cgd };
204 1.1 cgd
205 1.1 cgd /*-
206 1.1 cgd *----------------------------------------------------------------------
207 1.1 cgd * ParseFindKeyword --
208 1.1 cgd * Look in the table of keywords for one matching the given string.
209 1.1 cgd *
210 1.1 cgd * Results:
211 1.1 cgd * The index of the keyword, or -1 if it isn't there.
212 1.1 cgd *
213 1.1 cgd * Side Effects:
214 1.1 cgd * None
215 1.1 cgd *----------------------------------------------------------------------
216 1.1 cgd */
217 1.1 cgd static int
218 1.1 cgd ParseFindKeyword (str)
219 1.1 cgd char *str; /* String to find */
220 1.1 cgd {
221 1.1 cgd register int start,
222 1.1 cgd end,
223 1.1 cgd cur;
224 1.1 cgd register int diff;
225 1.1 cgd
226 1.1 cgd start = 0;
227 1.1 cgd end = (sizeof(parseKeywords)/sizeof(parseKeywords[0])) - 1;
228 1.1 cgd
229 1.1 cgd do {
230 1.1 cgd cur = start + ((end - start) / 2);
231 1.1 cgd diff = strcmp (str, parseKeywords[cur].name);
232 1.1 cgd
233 1.1 cgd if (diff == 0) {
234 1.1 cgd return (cur);
235 1.1 cgd } else if (diff < 0) {
236 1.1 cgd end = cur - 1;
237 1.1 cgd } else {
238 1.1 cgd start = cur + 1;
239 1.1 cgd }
240 1.1 cgd } while (start <= end);
241 1.1 cgd return (-1);
242 1.1 cgd }
243 1.1 cgd
244 1.1 cgd /*-
245 1.1 cgd * Parse_Error --
246 1.1 cgd * Error message abort function for parsing. Prints out the context
247 1.1 cgd * of the error (line number and file) as well as the message with
248 1.1 cgd * two optional arguments.
249 1.1 cgd *
250 1.1 cgd * Results:
251 1.1 cgd * None
252 1.1 cgd *
253 1.1 cgd * Side Effects:
254 1.1 cgd * "fatals" is incremented if the level is PARSE_FATAL.
255 1.1 cgd */
256 1.1 cgd /* VARARGS */
257 1.1 cgd void
258 1.1 cgd Parse_Error(type, va_alist)
259 1.1 cgd int type; /* Error type (PARSE_WARNING, PARSE_FATAL) */
260 1.1 cgd va_dcl
261 1.1 cgd {
262 1.1 cgd va_list ap;
263 1.1 cgd char *fmt;
264 1.1 cgd
265 1.1 cgd (void)fprintf(stderr, "\"%s\", line %d: ", fname, lineno);
266 1.1 cgd if (type == PARSE_WARNING)
267 1.1 cgd (void)fprintf(stderr, "warning: ");
268 1.1 cgd va_start(ap);
269 1.1 cgd fmt = va_arg(ap, char *);
270 1.1 cgd (void)vfprintf(stderr, fmt, ap);
271 1.1 cgd va_end(ap);
272 1.1 cgd (void)fprintf(stderr, "\n");
273 1.1 cgd (void)fflush(stderr);
274 1.1 cgd if (type == PARSE_FATAL)
275 1.1 cgd fatals += 1;
276 1.1 cgd }
277 1.1 cgd
278 1.1 cgd /*-
279 1.1 cgd *---------------------------------------------------------------------
280 1.1 cgd * ParseLinkSrc --
281 1.1 cgd * Link the parent node to its new child. Used in a Lst_ForEach by
282 1.1 cgd * ParseDoDependency. If the specType isn't 'Not', the parent
283 1.1 cgd * isn't linked as a parent of the child.
284 1.1 cgd *
285 1.1 cgd * Results:
286 1.1 cgd * Always = 0
287 1.1 cgd *
288 1.1 cgd * Side Effects:
289 1.1 cgd * New elements are added to the parents list of cgn and the
290 1.1 cgd * children list of cgn. the unmade field of pgn is updated
291 1.1 cgd * to reflect the additional child.
292 1.1 cgd *---------------------------------------------------------------------
293 1.1 cgd */
294 1.1 cgd static int
295 1.1 cgd ParseLinkSrc (pgn, cgn)
296 1.1 cgd GNode *pgn; /* The parent node */
297 1.1 cgd GNode *cgn; /* The child node */
298 1.1 cgd {
299 1.1 cgd if (Lst_Member (pgn->children, (ClientData)cgn) == NILLNODE) {
300 1.1 cgd (void)Lst_AtEnd (pgn->children, (ClientData)cgn);
301 1.1 cgd if (specType == Not) {
302 1.1 cgd (void)Lst_AtEnd (cgn->parents, (ClientData)pgn);
303 1.1 cgd }
304 1.1 cgd pgn->unmade += 1;
305 1.1 cgd }
306 1.1 cgd return (0);
307 1.1 cgd }
308 1.1 cgd
309 1.1 cgd /*-
310 1.1 cgd *---------------------------------------------------------------------
311 1.1 cgd * ParseDoOp --
312 1.1 cgd * Apply the parsed operator to the given target node. Used in a
313 1.1 cgd * Lst_ForEach call by ParseDoDependency once all targets have
314 1.1 cgd * been found and their operator parsed. If the previous and new
315 1.1 cgd * operators are incompatible, a major error is taken.
316 1.1 cgd *
317 1.1 cgd * Results:
318 1.1 cgd * Always 0
319 1.1 cgd *
320 1.1 cgd * Side Effects:
321 1.1 cgd * The type field of the node is altered to reflect any new bits in
322 1.1 cgd * the op.
323 1.1 cgd *---------------------------------------------------------------------
324 1.1 cgd */
325 1.1 cgd static int
326 1.1 cgd ParseDoOp (gn, op)
327 1.1 cgd GNode *gn; /* The node to which the operator is to be
328 1.1 cgd * applied */
329 1.1 cgd int op; /* The operator to apply */
330 1.1 cgd {
331 1.1 cgd /*
332 1.1 cgd * If the dependency mask of the operator and the node don't match and
333 1.1 cgd * the node has actually had an operator applied to it before, and
334 1.1 cgd * the operator actually has some dependency information in it, complain.
335 1.1 cgd */
336 1.1 cgd if (((op & OP_OPMASK) != (gn->type & OP_OPMASK)) &&
337 1.1 cgd !OP_NOP(gn->type) && !OP_NOP(op))
338 1.1 cgd {
339 1.1 cgd Parse_Error (PARSE_FATAL, "Inconsistent operator for %s", gn->name);
340 1.1 cgd return (1);
341 1.1 cgd }
342 1.1 cgd
343 1.1 cgd if ((op == OP_DOUBLEDEP) && ((gn->type & OP_OPMASK) == OP_DOUBLEDEP)) {
344 1.1 cgd /*
345 1.1 cgd * If the node was the object of a :: operator, we need to create a
346 1.1 cgd * new instance of it for the children and commands on this dependency
347 1.1 cgd * line. The new instance is placed on the 'cohorts' list of the
348 1.1 cgd * initial one (note the initial one is not on its own cohorts list)
349 1.1 cgd * and the new instance is linked to all parents of the initial
350 1.1 cgd * instance.
351 1.1 cgd */
352 1.1 cgd register GNode *cohort;
353 1.1 cgd LstNode ln;
354 1.1 cgd
355 1.1 cgd cohort = Targ_NewGN(gn->name);
356 1.1 cgd /*
357 1.1 cgd * Duplicate links to parents so graph traversal is simple. Perhaps
358 1.1 cgd * some type bits should be duplicated?
359 1.1 cgd *
360 1.1 cgd * Make the cohort invisible as well to avoid duplicating it into
361 1.1 cgd * other variables. True, parents of this target won't tend to do
362 1.1 cgd * anything with their local variables, but better safe than
363 1.1 cgd * sorry.
364 1.1 cgd */
365 1.1 cgd Lst_ForEach(gn->parents, ParseLinkSrc, (ClientData)cohort);
366 1.1 cgd cohort->type = OP_DOUBLEDEP|OP_INVISIBLE;
367 1.1 cgd (void)Lst_AtEnd(gn->cohorts, (ClientData)cohort);
368 1.1 cgd
369 1.1 cgd /*
370 1.1 cgd * Replace the node in the targets list with the new copy
371 1.1 cgd */
372 1.1 cgd ln = Lst_Member(targets, (ClientData)gn);
373 1.1 cgd Lst_Replace(ln, (ClientData)cohort);
374 1.1 cgd gn = cohort;
375 1.1 cgd }
376 1.1 cgd /*
377 1.1 cgd * We don't want to nuke any previous flags (whatever they were) so we
378 1.1 cgd * just OR the new operator into the old
379 1.1 cgd */
380 1.1 cgd gn->type |= op;
381 1.1 cgd
382 1.1 cgd return (0);
383 1.1 cgd }
384 1.1 cgd
385 1.1 cgd /*-
386 1.1 cgd *---------------------------------------------------------------------
387 1.1 cgd * ParseDoSrc --
388 1.1 cgd * Given the name of a source, figure out if it is an attribute
389 1.1 cgd * and apply it to the targets if it is. Else decide if there is
390 1.1 cgd * some attribute which should be applied *to* the source because
391 1.1 cgd * of some special target and apply it if so. Otherwise, make the
392 1.1 cgd * source be a child of the targets in the list 'targets'
393 1.1 cgd *
394 1.1 cgd * Results:
395 1.1 cgd * None
396 1.1 cgd *
397 1.1 cgd * Side Effects:
398 1.1 cgd * Operator bits may be added to the list of targets or to the source.
399 1.1 cgd * The targets may have a new source added to their lists of children.
400 1.1 cgd *---------------------------------------------------------------------
401 1.1 cgd */
402 1.1 cgd static void
403 1.1 cgd ParseDoSrc (tOp, src)
404 1.1 cgd int tOp; /* operator (if any) from special targets */
405 1.1 cgd char *src; /* name of the source to handle */
406 1.1 cgd {
407 1.1 cgd int op; /* operator (if any) from special source */
408 1.1 cgd GNode *gn;
409 1.1 cgd
410 1.1 cgd op = 0;
411 1.1 cgd if (*src == '.' && isupper (src[1])) {
412 1.1 cgd int keywd = ParseFindKeyword(src);
413 1.1 cgd if (keywd != -1) {
414 1.1 cgd op = parseKeywords[keywd].op;
415 1.1 cgd }
416 1.1 cgd }
417 1.1 cgd if (op != 0) {
418 1.1 cgd Lst_ForEach (targets, ParseDoOp, (ClientData)op);
419 1.1 cgd } else if (specType == Main) {
420 1.1 cgd /*
421 1.1 cgd * If we have noted the existence of a .MAIN, it means we need
422 1.1 cgd * to add the sources of said target to the list of things
423 1.1 cgd * to create. The string 'src' is likely to be free, so we
424 1.1 cgd * must make a new copy of it. Note that this will only be
425 1.1 cgd * invoked if the user didn't specify a target on the command
426 1.1 cgd * line. This is to allow #ifmake's to succeed, or something...
427 1.1 cgd */
428 1.1 cgd (void) Lst_AtEnd (create, (ClientData)strdup(src));
429 1.1 cgd /*
430 1.1 cgd * Add the name to the .TARGETS variable as well, so the user cna
431 1.1 cgd * employ that, if desired.
432 1.1 cgd */
433 1.1 cgd Var_Append(".TARGETS", src, VAR_GLOBAL);
434 1.1 cgd } else if (specType == Order) {
435 1.1 cgd /*
436 1.1 cgd * Create proper predecessor/successor links between the previous
437 1.1 cgd * source and the current one.
438 1.1 cgd */
439 1.1 cgd gn = Targ_FindNode(src, TARG_CREATE);
440 1.1 cgd if (predecessor != NILGNODE) {
441 1.1 cgd (void)Lst_AtEnd(predecessor->successors, (ClientData)gn);
442 1.1 cgd (void)Lst_AtEnd(gn->preds, (ClientData)predecessor);
443 1.1 cgd }
444 1.1 cgd /*
445 1.1 cgd * The current source now becomes the predecessor for the next one.
446 1.1 cgd */
447 1.1 cgd predecessor = gn;
448 1.1 cgd } else {
449 1.1 cgd /*
450 1.1 cgd * If the source is not an attribute, we need to find/create
451 1.1 cgd * a node for it. After that we can apply any operator to it
452 1.1 cgd * from a special target or link it to its parents, as
453 1.1 cgd * appropriate.
454 1.1 cgd *
455 1.1 cgd * In the case of a source that was the object of a :: operator,
456 1.1 cgd * the attribute is applied to all of its instances (as kept in
457 1.1 cgd * the 'cohorts' list of the node) or all the cohorts are linked
458 1.1 cgd * to all the targets.
459 1.1 cgd */
460 1.1 cgd gn = Targ_FindNode (src, TARG_CREATE);
461 1.1 cgd if (tOp) {
462 1.1 cgd gn->type |= tOp;
463 1.1 cgd } else {
464 1.1 cgd Lst_ForEach (targets, ParseLinkSrc, (ClientData)gn);
465 1.1 cgd }
466 1.1 cgd if ((gn->type & OP_OPMASK) == OP_DOUBLEDEP) {
467 1.1 cgd register GNode *cohort;
468 1.1 cgd register LstNode ln;
469 1.1 cgd
470 1.1 cgd for (ln=Lst_First(gn->cohorts); ln != NILLNODE; ln = Lst_Succ(ln)){
471 1.1 cgd cohort = (GNode *)Lst_Datum(ln);
472 1.1 cgd if (tOp) {
473 1.1 cgd cohort->type |= tOp;
474 1.1 cgd } else {
475 1.1 cgd Lst_ForEach(targets, ParseLinkSrc, (ClientData)cohort);
476 1.1 cgd }
477 1.1 cgd }
478 1.1 cgd }
479 1.1 cgd }
480 1.1 cgd }
481 1.1 cgd
482 1.1 cgd /*-
483 1.1 cgd *-----------------------------------------------------------------------
484 1.1 cgd * ParseFindMain --
485 1.1 cgd * Find a real target in the list and set it to be the main one.
486 1.1 cgd * Called by ParseDoDependency when a main target hasn't been found
487 1.1 cgd * yet.
488 1.1 cgd *
489 1.1 cgd * Results:
490 1.1 cgd * 0 if main not found yet, 1 if it is.
491 1.1 cgd *
492 1.1 cgd * Side Effects:
493 1.1 cgd * mainNode is changed and Targ_SetMain is called.
494 1.1 cgd *
495 1.1 cgd *-----------------------------------------------------------------------
496 1.1 cgd */
497 1.1 cgd static int
498 1.1 cgd ParseFindMain(gn)
499 1.1 cgd GNode *gn; /* Node to examine */
500 1.1 cgd {
501 1.1 cgd if ((gn->type & (OP_NOTMAIN|OP_USE|OP_EXEC|OP_TRANSFORM)) == 0) {
502 1.1 cgd mainNode = gn;
503 1.1 cgd Targ_SetMain(gn);
504 1.1 cgd return (1);
505 1.1 cgd } else {
506 1.1 cgd return (0);
507 1.1 cgd }
508 1.1 cgd }
509 1.1 cgd
510 1.1 cgd /*-
511 1.1 cgd *-----------------------------------------------------------------------
512 1.1 cgd * ParseAddDir --
513 1.1 cgd * Front-end for Dir_AddDir to make sure Lst_ForEach keeps going
514 1.1 cgd *
515 1.1 cgd * Results:
516 1.1 cgd * === 0
517 1.1 cgd *
518 1.1 cgd * Side Effects:
519 1.1 cgd * See Dir_AddDir.
520 1.1 cgd *
521 1.1 cgd *-----------------------------------------------------------------------
522 1.1 cgd */
523 1.1 cgd static int
524 1.1 cgd ParseAddDir(path, name)
525 1.1 cgd Lst path;
526 1.1 cgd char *name;
527 1.1 cgd {
528 1.1 cgd Dir_AddDir(path, name);
529 1.1 cgd return(0);
530 1.1 cgd }
531 1.1 cgd
532 1.1 cgd /*-
533 1.1 cgd *-----------------------------------------------------------------------
534 1.1 cgd * ParseClearPath --
535 1.1 cgd * Front-end for Dir_ClearPath to make sure Lst_ForEach keeps going
536 1.1 cgd *
537 1.1 cgd * Results:
538 1.1 cgd * === 0
539 1.1 cgd *
540 1.1 cgd * Side Effects:
541 1.1 cgd * See Dir_ClearPath
542 1.1 cgd *
543 1.1 cgd *-----------------------------------------------------------------------
544 1.1 cgd */
545 1.1 cgd static int
546 1.1 cgd ParseClearPath(path)
547 1.1 cgd Lst path;
548 1.1 cgd {
549 1.1 cgd Dir_ClearPath(path);
550 1.1 cgd return(0);
551 1.1 cgd }
552 1.1 cgd
553 1.1 cgd /*-
554 1.1 cgd *---------------------------------------------------------------------
555 1.1 cgd * ParseDoDependency --
556 1.1 cgd * Parse the dependency line in line.
557 1.1 cgd *
558 1.1 cgd * Results:
559 1.1 cgd * None
560 1.1 cgd *
561 1.1 cgd * Side Effects:
562 1.1 cgd * The nodes of the sources are linked as children to the nodes of the
563 1.1 cgd * targets. Some nodes may be created.
564 1.1 cgd *
565 1.1 cgd * We parse a dependency line by first extracting words from the line and
566 1.1 cgd * finding nodes in the list of all targets with that name. This is done
567 1.1 cgd * until a character is encountered which is an operator character. Currently
568 1.1 cgd * these are only ! and :. At this point the operator is parsed and the
569 1.1 cgd * pointer into the line advanced until the first source is encountered.
570 1.1 cgd * The parsed operator is applied to each node in the 'targets' list,
571 1.1 cgd * which is where the nodes found for the targets are kept, by means of
572 1.1 cgd * the ParseDoOp function.
573 1.1 cgd * The sources are read in much the same way as the targets were except
574 1.1 cgd * that now they are expanded using the wildcarding scheme of the C-Shell
575 1.1 cgd * and all instances of the resulting words in the list of all targets
576 1.1 cgd * are found. Each of the resulting nodes is then linked to each of the
577 1.1 cgd * targets as one of its children.
578 1.1 cgd * Certain targets are handled specially. These are the ones detailed
579 1.1 cgd * by the specType variable.
580 1.1 cgd * The storing of transformation rules is also taken care of here.
581 1.1 cgd * A target is recognized as a transformation rule by calling
582 1.1 cgd * Suff_IsTransform. If it is a transformation rule, its node is gotten
583 1.1 cgd * from the suffix module via Suff_AddTransform rather than the standard
584 1.1 cgd * Targ_FindNode in the target module.
585 1.1 cgd *---------------------------------------------------------------------
586 1.1 cgd */
587 1.1 cgd static void
588 1.1 cgd ParseDoDependency (line)
589 1.1 cgd char *line; /* the line to parse */
590 1.1 cgd {
591 1.1 cgd register char *cp; /* our current position */
592 1.1 cgd register GNode *gn; /* a general purpose temporary node */
593 1.1 cgd register int op; /* the operator on the line */
594 1.1 cgd char savec; /* a place to save a character */
595 1.1 cgd Lst paths; /* List of search paths to alter when parsing
596 1.1 cgd * a list of .PATH targets */
597 1.1 cgd int tOp; /* operator from special target */
598 1.1 cgd Lst sources; /* list of source names after expansion */
599 1.1 cgd Lst curTargs; /* list of target names to be found and added
600 1.1 cgd * to the targets list */
601 1.1 cgd
602 1.1 cgd tOp = 0;
603 1.1 cgd
604 1.1 cgd specType = Not;
605 1.1 cgd paths = (Lst)NULL;
606 1.1 cgd
607 1.1 cgd curTargs = Lst_Init(FALSE);
608 1.1 cgd
609 1.1 cgd do {
610 1.1 cgd for (cp = line;
611 1.1 cgd *cp && !isspace (*cp) &&
612 1.1 cgd (*cp != '!') && (*cp != ':') && (*cp != '(');
613 1.1 cgd cp++)
614 1.1 cgd {
615 1.1 cgd if (*cp == '$') {
616 1.1 cgd /*
617 1.1 cgd * Must be a dynamic source (would have been expanded
618 1.1 cgd * otherwise), so call the Var module to parse the puppy
619 1.1 cgd * so we can safely advance beyond it...There should be
620 1.1 cgd * no errors in this, as they would have been discovered
621 1.1 cgd * in the initial Var_Subst and we wouldn't be here.
622 1.1 cgd */
623 1.1 cgd int length;
624 1.1 cgd Boolean freeIt;
625 1.1 cgd char *result;
626 1.1 cgd
627 1.1 cgd result=Var_Parse(cp, VAR_CMD, TRUE, &length, &freeIt);
628 1.1 cgd
629 1.1 cgd if (freeIt) {
630 1.1 cgd free(result);
631 1.1 cgd }
632 1.1 cgd cp += length-1;
633 1.1 cgd }
634 1.1 cgd continue;
635 1.1 cgd }
636 1.1 cgd if (*cp == '(') {
637 1.1 cgd /*
638 1.1 cgd * Archives must be handled specially to make sure the OP_ARCHV
639 1.1 cgd * flag is set in their 'type' field, for one thing, and because
640 1.1 cgd * things like "archive(file1.o file2.o file3.o)" are permissible.
641 1.1 cgd * Arch_ParseArchive will set 'line' to be the first non-blank
642 1.1 cgd * after the archive-spec. It creates/finds nodes for the members
643 1.1 cgd * and places them on the given list, returning SUCCESS if all
644 1.1 cgd * went well and FAILURE if there was an error in the
645 1.1 cgd * specification. On error, line should remain untouched.
646 1.1 cgd */
647 1.1 cgd if (Arch_ParseArchive (&line, targets, VAR_CMD) != SUCCESS) {
648 1.1 cgd Parse_Error (PARSE_FATAL,
649 1.1 cgd "Error in archive specification: \"%s\"", line);
650 1.1 cgd return;
651 1.1 cgd } else {
652 1.1 cgd continue;
653 1.1 cgd }
654 1.1 cgd }
655 1.1 cgd savec = *cp;
656 1.1 cgd
657 1.1 cgd if (!*cp) {
658 1.1 cgd /*
659 1.1 cgd * Ending a dependency line without an operator is a Bozo
660 1.1 cgd * no-no
661 1.1 cgd */
662 1.1 cgd Parse_Error (PARSE_FATAL, "Need an operator");
663 1.1 cgd return;
664 1.1 cgd }
665 1.1 cgd *cp = '\0';
666 1.1 cgd /*
667 1.1 cgd * Have a word in line. See if it's a special target and set
668 1.1 cgd * specType to match it.
669 1.1 cgd */
670 1.1 cgd if (*line == '.' && isupper (line[1])) {
671 1.1 cgd /*
672 1.1 cgd * See if the target is a special target that must have it
673 1.1 cgd * or its sources handled specially.
674 1.1 cgd */
675 1.1 cgd int keywd = ParseFindKeyword(line);
676 1.1 cgd if (keywd != -1) {
677 1.1 cgd if (specType == Path && parseKeywords[keywd].spec != Path) {
678 1.1 cgd Parse_Error(PARSE_FATAL, "Mismatched special targets");
679 1.1 cgd return;
680 1.1 cgd }
681 1.1 cgd
682 1.1 cgd specType = parseKeywords[keywd].spec;
683 1.1 cgd tOp = parseKeywords[keywd].op;
684 1.1 cgd
685 1.1 cgd /*
686 1.1 cgd * Certain special targets have special semantics:
687 1.1 cgd * .PATH Have to set the dirSearchPath
688 1.1 cgd * variable too
689 1.1 cgd * .MAIN Its sources are only used if
690 1.1 cgd * nothing has been specified to
691 1.1 cgd * create.
692 1.1 cgd * .DEFAULT Need to create a node to hang
693 1.1 cgd * commands on, but we don't want
694 1.1 cgd * it in the graph, nor do we want
695 1.1 cgd * it to be the Main Target, so we
696 1.1 cgd * create it, set OP_NOTMAIN and
697 1.1 cgd * add it to the list, setting
698 1.1 cgd * DEFAULT to the new node for
699 1.1 cgd * later use. We claim the node is
700 1.1 cgd * A transformation rule to make
701 1.1 cgd * life easier later, when we'll
702 1.1 cgd * use Make_HandleUse to actually
703 1.1 cgd * apply the .DEFAULT commands.
704 1.1 cgd * .BEGIN
705 1.1 cgd * .END
706 1.1 cgd * .INTERRUPT Are not to be considered the
707 1.1 cgd * main target.
708 1.1 cgd * .NOTPARALLEL Make only one target at a time.
709 1.1 cgd * .SINGLESHELL Create a shell for each command.
710 1.1 cgd * .ORDER Must set initial predecessor to NIL
711 1.1 cgd */
712 1.1 cgd switch (specType) {
713 1.1 cgd case Path:
714 1.1 cgd if (paths == NULL) {
715 1.1 cgd paths = Lst_Init(FALSE);
716 1.1 cgd }
717 1.1 cgd (void)Lst_AtEnd(paths, (ClientData)dirSearchPath);
718 1.1 cgd break;
719 1.1 cgd case Main:
720 1.1 cgd if (!Lst_IsEmpty(create)) {
721 1.1 cgd specType = Not;
722 1.1 cgd }
723 1.1 cgd break;
724 1.1 cgd case Begin:
725 1.1 cgd case End:
726 1.1 cgd case Interrupt:
727 1.1 cgd gn = Targ_FindNode(line, TARG_CREATE);
728 1.1 cgd gn->type |= OP_NOTMAIN;
729 1.1 cgd (void)Lst_AtEnd(targets, (ClientData)gn);
730 1.1 cgd break;
731 1.1 cgd case Default:
732 1.1 cgd gn = Targ_NewGN(".DEFAULT");
733 1.1 cgd gn->type |= (OP_NOTMAIN|OP_TRANSFORM);
734 1.1 cgd (void)Lst_AtEnd(targets, (ClientData)gn);
735 1.1 cgd DEFAULT = gn;
736 1.1 cgd break;
737 1.1 cgd case NotParallel:
738 1.1 cgd {
739 1.1 cgd extern int maxJobs;
740 1.1 cgd
741 1.1 cgd maxJobs = 1;
742 1.1 cgd break;
743 1.1 cgd }
744 1.1 cgd case SingleShell:
745 1.1 cgd /* backwards = 1; */
746 1.1 cgd break;
747 1.1 cgd case Order:
748 1.1 cgd predecessor = NILGNODE;
749 1.1 cgd break;
750 1.1 cgd }
751 1.1 cgd } else if (strncmp (line, ".PATH", 5) == 0) {
752 1.1 cgd /*
753 1.1 cgd * .PATH<suffix> has to be handled specially.
754 1.1 cgd * Call on the suffix module to give us a path to
755 1.1 cgd * modify.
756 1.1 cgd */
757 1.1 cgd Lst path;
758 1.1 cgd
759 1.1 cgd specType = Path;
760 1.1 cgd path = Suff_GetPath (&line[5]);
761 1.1 cgd if (path == NILLST) {
762 1.1 cgd Parse_Error (PARSE_FATAL,
763 1.1 cgd "Suffix '%s' not defined (yet)",
764 1.1 cgd &line[5]);
765 1.1 cgd return;
766 1.1 cgd } else {
767 1.1 cgd if (paths == (Lst)NULL) {
768 1.1 cgd paths = Lst_Init(FALSE);
769 1.1 cgd }
770 1.1 cgd (void)Lst_AtEnd(paths, (ClientData)path);
771 1.1 cgd }
772 1.1 cgd }
773 1.1 cgd }
774 1.1 cgd
775 1.1 cgd /*
776 1.1 cgd * Have word in line. Get or create its node and stick it at
777 1.1 cgd * the end of the targets list
778 1.1 cgd */
779 1.1 cgd if ((specType == Not) && (*line != '\0')) {
780 1.1 cgd if (Dir_HasWildcards(line)) {
781 1.1 cgd /*
782 1.1 cgd * Targets are to be sought only in the current directory,
783 1.1 cgd * so create an empty path for the thing. Note we need to
784 1.1 cgd * use Dir_Destroy in the destruction of the path as the
785 1.1 cgd * Dir module could have added a directory to the path...
786 1.1 cgd */
787 1.1 cgd Lst emptyPath = Lst_Init(FALSE);
788 1.1 cgd
789 1.1 cgd Dir_Expand(line, emptyPath, curTargs);
790 1.1 cgd
791 1.1 cgd Lst_Destroy(emptyPath, Dir_Destroy);
792 1.1 cgd } else {
793 1.1 cgd /*
794 1.1 cgd * No wildcards, but we want to avoid code duplication,
795 1.1 cgd * so create a list with the word on it.
796 1.1 cgd */
797 1.1 cgd (void)Lst_AtEnd(curTargs, (ClientData)line);
798 1.1 cgd }
799 1.1 cgd
800 1.1 cgd while(!Lst_IsEmpty(curTargs)) {
801 1.1 cgd char *targName = (char *)Lst_DeQueue(curTargs);
802 1.1 cgd
803 1.1 cgd if (!Suff_IsTransform (targName)) {
804 1.1 cgd gn = Targ_FindNode (targName, TARG_CREATE);
805 1.1 cgd } else {
806 1.1 cgd gn = Suff_AddTransform (targName);
807 1.1 cgd }
808 1.1 cgd
809 1.1 cgd (void)Lst_AtEnd (targets, (ClientData)gn);
810 1.1 cgd }
811 1.1 cgd } else if (specType == Path && *line != '.' && *line != '\0') {
812 1.1 cgd Parse_Error(PARSE_WARNING, "Extra target (%s) ignored", line);
813 1.1 cgd }
814 1.1 cgd
815 1.1 cgd *cp = savec;
816 1.1 cgd /*
817 1.1 cgd * If it is a special type and not .PATH, it's the only target we
818 1.1 cgd * allow on this line...
819 1.1 cgd */
820 1.1 cgd if (specType != Not && specType != Path) {
821 1.1 cgd Boolean warn = FALSE;
822 1.1 cgd
823 1.1 cgd while ((*cp != '!') && (*cp != ':') && *cp) {
824 1.1 cgd if (*cp != ' ' && *cp != '\t') {
825 1.1 cgd warn = TRUE;
826 1.1 cgd }
827 1.1 cgd cp++;
828 1.1 cgd }
829 1.1 cgd if (warn) {
830 1.1 cgd Parse_Error(PARSE_WARNING, "Extra target ignored");
831 1.1 cgd }
832 1.1 cgd } else {
833 1.1 cgd while (*cp && isspace (*cp)) {
834 1.1 cgd cp++;
835 1.1 cgd }
836 1.1 cgd }
837 1.1 cgd line = cp;
838 1.1 cgd } while ((*line != '!') && (*line != ':') && *line);
839 1.1 cgd
840 1.1 cgd /*
841 1.1 cgd * Don't need the list of target names anymore...
842 1.1 cgd */
843 1.1 cgd Lst_Destroy(curTargs, NOFREE);
844 1.1 cgd
845 1.1 cgd if (!Lst_IsEmpty(targets)) {
846 1.1 cgd switch(specType) {
847 1.1 cgd default:
848 1.1 cgd Parse_Error(PARSE_WARNING, "Special and mundane targets don't mix. Mundane ones ignored");
849 1.1 cgd break;
850 1.1 cgd case Default:
851 1.1 cgd case Begin:
852 1.1 cgd case End:
853 1.1 cgd case Interrupt:
854 1.1 cgd /*
855 1.1 cgd * These four create nodes on which to hang commands, so
856 1.1 cgd * targets shouldn't be empty...
857 1.1 cgd */
858 1.1 cgd case Not:
859 1.1 cgd /*
860 1.1 cgd * Nothing special here -- targets can be empty if it wants.
861 1.1 cgd */
862 1.1 cgd break;
863 1.1 cgd }
864 1.1 cgd }
865 1.1 cgd
866 1.1 cgd /*
867 1.1 cgd * Have now parsed all the target names. Must parse the operator next. The
868 1.1 cgd * result is left in op .
869 1.1 cgd */
870 1.1 cgd if (*cp == '!') {
871 1.1 cgd op = OP_FORCE;
872 1.1 cgd } else if (*cp == ':') {
873 1.1 cgd if (cp[1] == ':') {
874 1.1 cgd op = OP_DOUBLEDEP;
875 1.1 cgd cp++;
876 1.1 cgd } else {
877 1.1 cgd op = OP_DEPENDS;
878 1.1 cgd }
879 1.1 cgd } else {
880 1.1 cgd Parse_Error (PARSE_FATAL, "Missing dependency operator");
881 1.1 cgd return;
882 1.1 cgd }
883 1.1 cgd
884 1.1 cgd cp++; /* Advance beyond operator */
885 1.1 cgd
886 1.1 cgd Lst_ForEach (targets, ParseDoOp, (ClientData)op);
887 1.1 cgd
888 1.1 cgd /*
889 1.1 cgd * Get to the first source
890 1.1 cgd */
891 1.1 cgd while (*cp && isspace (*cp)) {
892 1.1 cgd cp++;
893 1.1 cgd }
894 1.1 cgd line = cp;
895 1.1 cgd
896 1.1 cgd /*
897 1.1 cgd * Several special targets take different actions if present with no
898 1.1 cgd * sources:
899 1.1 cgd * a .SUFFIXES line with no sources clears out all old suffixes
900 1.1 cgd * a .PRECIOUS line makes all targets precious
901 1.1 cgd * a .IGNORE line ignores errors for all targets
902 1.1 cgd * a .SILENT line creates silence when making all targets
903 1.1 cgd * a .PATH removes all directories from the search path(s).
904 1.1 cgd */
905 1.1 cgd if (!*line) {
906 1.1 cgd switch (specType) {
907 1.1 cgd case Suffixes:
908 1.1 cgd Suff_ClearSuffixes ();
909 1.1 cgd break;
910 1.1 cgd case Precious:
911 1.1 cgd allPrecious = TRUE;
912 1.1 cgd break;
913 1.1 cgd case Ignore:
914 1.1 cgd ignoreErrors = TRUE;
915 1.1 cgd break;
916 1.1 cgd case Silent:
917 1.1 cgd beSilent = TRUE;
918 1.1 cgd break;
919 1.1 cgd case Path:
920 1.1 cgd Lst_ForEach(paths, ParseClearPath, (ClientData)NULL);
921 1.1 cgd break;
922 1.1 cgd }
923 1.1 cgd } else if (specType == MFlags) {
924 1.1 cgd /*
925 1.1 cgd * Call on functions in main.c to deal with these arguments and
926 1.1 cgd * set the initial character to a null-character so the loop to
927 1.1 cgd * get sources won't get anything
928 1.1 cgd */
929 1.1 cgd Main_ParseArgLine (line);
930 1.1 cgd *line = '\0';
931 1.1 cgd } else if (specType == Shell) {
932 1.1 cgd if (Job_ParseShell (line) != SUCCESS) {
933 1.1 cgd Parse_Error (PARSE_FATAL, "improper shell specification");
934 1.1 cgd return;
935 1.1 cgd }
936 1.1 cgd *line = '\0';
937 1.1 cgd } else if ((specType == NotParallel) || (specType == SingleShell)) {
938 1.1 cgd *line = '\0';
939 1.1 cgd }
940 1.1 cgd
941 1.1 cgd /*
942 1.1 cgd * NOW GO FOR THE SOURCES
943 1.1 cgd */
944 1.1 cgd if ((specType == Suffixes) || (specType == Path) ||
945 1.1 cgd (specType == Includes) || (specType == Libs) ||
946 1.1 cgd (specType == Null))
947 1.1 cgd {
948 1.1 cgd while (*line) {
949 1.1 cgd /*
950 1.1 cgd * If the target was one that doesn't take files as its sources
951 1.1 cgd * but takes something like suffixes, we take each
952 1.1 cgd * space-separated word on the line as a something and deal
953 1.1 cgd * with it accordingly.
954 1.1 cgd *
955 1.1 cgd * If the target was .SUFFIXES, we take each source as a
956 1.1 cgd * suffix and add it to the list of suffixes maintained by the
957 1.1 cgd * Suff module.
958 1.1 cgd *
959 1.1 cgd * If the target was a .PATH, we add the source as a directory
960 1.1 cgd * to search on the search path.
961 1.1 cgd *
962 1.1 cgd * If it was .INCLUDES, the source is taken to be the suffix of
963 1.1 cgd * files which will be #included and whose search path should
964 1.1 cgd * be present in the .INCLUDES variable.
965 1.1 cgd *
966 1.1 cgd * If it was .LIBS, the source is taken to be the suffix of
967 1.1 cgd * files which are considered libraries and whose search path
968 1.1 cgd * should be present in the .LIBS variable.
969 1.1 cgd *
970 1.1 cgd * If it was .NULL, the source is the suffix to use when a file
971 1.1 cgd * has no valid suffix.
972 1.1 cgd */
973 1.1 cgd char savec;
974 1.1 cgd while (*cp && !isspace (*cp)) {
975 1.1 cgd cp++;
976 1.1 cgd }
977 1.1 cgd savec = *cp;
978 1.1 cgd *cp = '\0';
979 1.1 cgd switch (specType) {
980 1.1 cgd case Suffixes:
981 1.1 cgd Suff_AddSuffix (line);
982 1.1 cgd break;
983 1.1 cgd case Path:
984 1.1 cgd Lst_ForEach(paths, ParseAddDir, (ClientData)line);
985 1.1 cgd break;
986 1.1 cgd case Includes:
987 1.1 cgd Suff_AddInclude (line);
988 1.1 cgd break;
989 1.1 cgd case Libs:
990 1.1 cgd Suff_AddLib (line);
991 1.1 cgd break;
992 1.1 cgd case Null:
993 1.1 cgd Suff_SetNull (line);
994 1.1 cgd break;
995 1.1 cgd }
996 1.1 cgd *cp = savec;
997 1.1 cgd if (savec != '\0') {
998 1.1 cgd cp++;
999 1.1 cgd }
1000 1.1 cgd while (*cp && isspace (*cp)) {
1001 1.1 cgd cp++;
1002 1.1 cgd }
1003 1.1 cgd line = cp;
1004 1.1 cgd }
1005 1.1 cgd if (paths) {
1006 1.1 cgd Lst_Destroy(paths, NOFREE);
1007 1.1 cgd }
1008 1.1 cgd } else {
1009 1.1 cgd while (*line) {
1010 1.1 cgd /*
1011 1.1 cgd * The targets take real sources, so we must beware of archive
1012 1.1 cgd * specifications (i.e. things with left parentheses in them)
1013 1.1 cgd * and handle them accordingly.
1014 1.1 cgd */
1015 1.1 cgd while (*cp && !isspace (*cp)) {
1016 1.1 cgd if ((*cp == '(') && (cp > line) && (cp[-1] != '$')) {
1017 1.1 cgd /*
1018 1.1 cgd * Only stop for a left parenthesis if it isn't at the
1019 1.1 cgd * start of a word (that'll be for variable changes
1020 1.1 cgd * later) and isn't preceded by a dollar sign (a dynamic
1021 1.1 cgd * source).
1022 1.1 cgd */
1023 1.1 cgd break;
1024 1.1 cgd } else {
1025 1.1 cgd cp++;
1026 1.1 cgd }
1027 1.1 cgd }
1028 1.1 cgd
1029 1.1 cgd if (*cp == '(') {
1030 1.1 cgd GNode *gn;
1031 1.1 cgd
1032 1.1 cgd sources = Lst_Init (FALSE);
1033 1.1 cgd if (Arch_ParseArchive (&line, sources, VAR_CMD) != SUCCESS) {
1034 1.1 cgd Parse_Error (PARSE_FATAL,
1035 1.1 cgd "Error in source archive spec \"%s\"", line);
1036 1.1 cgd return;
1037 1.1 cgd }
1038 1.1 cgd
1039 1.1 cgd while (!Lst_IsEmpty (sources)) {
1040 1.1 cgd gn = (GNode *) Lst_DeQueue (sources);
1041 1.1 cgd ParseDoSrc (tOp, gn->name);
1042 1.1 cgd }
1043 1.1 cgd Lst_Destroy (sources, NOFREE);
1044 1.1 cgd cp = line;
1045 1.1 cgd } else {
1046 1.1 cgd if (*cp) {
1047 1.1 cgd *cp = '\0';
1048 1.1 cgd cp += 1;
1049 1.1 cgd }
1050 1.1 cgd
1051 1.1 cgd ParseDoSrc (tOp, line);
1052 1.1 cgd }
1053 1.1 cgd while (*cp && isspace (*cp)) {
1054 1.1 cgd cp++;
1055 1.1 cgd }
1056 1.1 cgd line = cp;
1057 1.1 cgd }
1058 1.1 cgd }
1059 1.1 cgd
1060 1.1 cgd if (mainNode == NILGNODE) {
1061 1.1 cgd /*
1062 1.1 cgd * If we have yet to decide on a main target to make, in the
1063 1.1 cgd * absence of any user input, we want the first target on
1064 1.1 cgd * the first dependency line that is actually a real target
1065 1.1 cgd * (i.e. isn't a .USE or .EXEC rule) to be made.
1066 1.1 cgd */
1067 1.1 cgd Lst_ForEach (targets, ParseFindMain, (ClientData)0);
1068 1.1 cgd }
1069 1.1 cgd
1070 1.1 cgd }
1071 1.1 cgd
1072 1.1 cgd /*-
1073 1.1 cgd *---------------------------------------------------------------------
1074 1.1 cgd * Parse_IsVar --
1075 1.1 cgd * Return TRUE if the passed line is a variable assignment. A variable
1076 1.1 cgd * assignment consists of a single word followed by optional whitespace
1077 1.1 cgd * followed by either a += or an = operator.
1078 1.1 cgd * This function is used both by the Parse_File function and main when
1079 1.1 cgd * parsing the command-line arguments.
1080 1.1 cgd *
1081 1.1 cgd * Results:
1082 1.1 cgd * TRUE if it is. FALSE if it ain't
1083 1.1 cgd *
1084 1.1 cgd * Side Effects:
1085 1.1 cgd * none
1086 1.1 cgd *---------------------------------------------------------------------
1087 1.1 cgd */
1088 1.1 cgd Boolean
1089 1.1 cgd Parse_IsVar (line)
1090 1.1 cgd register char *line; /* the line to check */
1091 1.1 cgd {
1092 1.1 cgd register Boolean wasSpace = FALSE; /* set TRUE if found a space */
1093 1.1 cgd register Boolean haveName = FALSE; /* Set TRUE if have a variable name */
1094 1.1 cgd
1095 1.1 cgd /*
1096 1.1 cgd * Skip to variable name
1097 1.1 cgd */
1098 1.1 cgd while ((*line == ' ') || (*line == '\t')) {
1099 1.1 cgd line++;
1100 1.1 cgd }
1101 1.1 cgd
1102 1.1 cgd while (*line != '=') {
1103 1.1 cgd if (*line == '\0') {
1104 1.1 cgd /*
1105 1.1 cgd * end-of-line -- can't be a variable assignment.
1106 1.1 cgd */
1107 1.1 cgd return (FALSE);
1108 1.1 cgd } else if ((*line == ' ') || (*line == '\t')) {
1109 1.1 cgd /*
1110 1.1 cgd * there can be as much white space as desired so long as there is
1111 1.1 cgd * only one word before the operator
1112 1.1 cgd */
1113 1.1 cgd wasSpace = TRUE;
1114 1.1 cgd } else if (wasSpace && haveName) {
1115 1.1 cgd /*
1116 1.1 cgd * Stop when an = operator is found.
1117 1.1 cgd */
1118 1.1 cgd if ((*line == '+') || (*line == ':') || (*line == '?') ||
1119 1.1 cgd (*line == '!')) {
1120 1.1 cgd break;
1121 1.1 cgd }
1122 1.1 cgd
1123 1.1 cgd /*
1124 1.1 cgd * This is the start of another word, so not assignment.
1125 1.1 cgd */
1126 1.1 cgd return (FALSE);
1127 1.1 cgd } else {
1128 1.1 cgd haveName = TRUE;
1129 1.1 cgd wasSpace = FALSE;
1130 1.1 cgd }
1131 1.1 cgd line++;
1132 1.1 cgd }
1133 1.1 cgd
1134 1.1 cgd /*
1135 1.1 cgd * A final check: if we stopped on a +, ?, ! or :, the next character must
1136 1.1 cgd * be an = or it ain't a valid assignment
1137 1.1 cgd */
1138 1.1 cgd if (((*line == '+') ||
1139 1.1 cgd (*line == '?') ||
1140 1.1 cgd (*line == ':') ||
1141 1.1 cgd (*line == '!')) &&
1142 1.1 cgd (line[1] != '='))
1143 1.1 cgd {
1144 1.1 cgd return (FALSE);
1145 1.1 cgd } else {
1146 1.1 cgd return (haveName);
1147 1.1 cgd }
1148 1.1 cgd }
1149 1.1 cgd
1150 1.1 cgd /*-
1151 1.1 cgd *---------------------------------------------------------------------
1152 1.1 cgd * Parse_DoVar --
1153 1.1 cgd * Take the variable assignment in the passed line and do it in the
1154 1.1 cgd * global context.
1155 1.1 cgd *
1156 1.1 cgd * Note: There is a lexical ambiguity with assignment modifier characters
1157 1.1 cgd * in variable names. This routine interprets the character before the =
1158 1.1 cgd * as a modifier. Therefore, an assignment like
1159 1.1 cgd * C++=/usr/bin/CC
1160 1.1 cgd * is interpreted as "C+ +=" instead of "C++ =".
1161 1.1 cgd *
1162 1.1 cgd * Results:
1163 1.1 cgd * none
1164 1.1 cgd *
1165 1.1 cgd * Side Effects:
1166 1.1 cgd * the variable structure of the given variable name is altered in the
1167 1.1 cgd * global context.
1168 1.1 cgd *---------------------------------------------------------------------
1169 1.1 cgd */
1170 1.1 cgd void
1171 1.1 cgd Parse_DoVar (line, ctxt)
1172 1.1 cgd char *line; /* a line guaranteed to be a variable
1173 1.1 cgd * assignment. This reduces error checks */
1174 1.1 cgd GNode *ctxt; /* Context in which to do the assignment */
1175 1.1 cgd {
1176 1.1 cgd register char *cp; /* pointer into line */
1177 1.1 cgd enum {
1178 1.1 cgd VAR_SUBST, VAR_APPEND, VAR_SHELL, VAR_NORMAL
1179 1.1 cgd } type; /* Type of assignment */
1180 1.1 cgd char *opc; /* ptr to operator character to
1181 1.1 cgd * null-terminate the variable name */
1182 1.1 cgd
1183 1.1 cgd /*
1184 1.1 cgd * Skip to variable name
1185 1.1 cgd */
1186 1.1 cgd while ((*line == ' ') || (*line == '\t')) {
1187 1.1 cgd line++;
1188 1.1 cgd }
1189 1.1 cgd
1190 1.1 cgd /*
1191 1.1 cgd * Skip to operator character, nulling out whitespace as we go
1192 1.1 cgd */
1193 1.1 cgd for (cp = line + 1; *cp != '='; cp++) {
1194 1.1 cgd if (isspace (*cp)) {
1195 1.1 cgd *cp = '\0';
1196 1.1 cgd }
1197 1.1 cgd }
1198 1.1 cgd opc = cp-1; /* operator is the previous character */
1199 1.1 cgd *cp++ = '\0'; /* nuke the = */
1200 1.1 cgd
1201 1.1 cgd /*
1202 1.1 cgd * Check operator type
1203 1.1 cgd */
1204 1.1 cgd switch (*opc) {
1205 1.1 cgd case '+':
1206 1.1 cgd type = VAR_APPEND;
1207 1.1 cgd *opc = '\0';
1208 1.1 cgd break;
1209 1.1 cgd
1210 1.1 cgd case '?':
1211 1.1 cgd /*
1212 1.1 cgd * If the variable already has a value, we don't do anything.
1213 1.1 cgd */
1214 1.1 cgd *opc = '\0';
1215 1.1 cgd if (Var_Exists(line, ctxt)) {
1216 1.1 cgd return;
1217 1.1 cgd } else {
1218 1.1 cgd type = VAR_NORMAL;
1219 1.1 cgd }
1220 1.1 cgd break;
1221 1.1 cgd
1222 1.1 cgd case ':':
1223 1.1 cgd type = VAR_SUBST;
1224 1.1 cgd *opc = '\0';
1225 1.1 cgd break;
1226 1.1 cgd
1227 1.1 cgd case '!':
1228 1.1 cgd type = VAR_SHELL;
1229 1.1 cgd *opc = '\0';
1230 1.1 cgd break;
1231 1.1 cgd
1232 1.1 cgd default:
1233 1.1 cgd type = VAR_NORMAL;
1234 1.1 cgd break;
1235 1.1 cgd }
1236 1.1 cgd
1237 1.1 cgd while (isspace (*cp)) {
1238 1.1 cgd cp++;
1239 1.1 cgd }
1240 1.1 cgd
1241 1.1 cgd if (type == VAR_APPEND) {
1242 1.1 cgd Var_Append (line, cp, ctxt);
1243 1.1 cgd } else if (type == VAR_SUBST) {
1244 1.1 cgd /*
1245 1.1 cgd * Allow variables in the old value to be undefined, but leave their
1246 1.1 cgd * invocation alone -- this is done by forcing oldVars to be false.
1247 1.1 cgd * XXX: This can cause recursive variables, but that's not hard to do,
1248 1.1 cgd * and this allows someone to do something like
1249 1.1 cgd *
1250 1.1 cgd * CFLAGS = $(.INCLUDES)
1251 1.1 cgd * CFLAGS := -I.. $(CFLAGS)
1252 1.1 cgd *
1253 1.1 cgd * And not get an error.
1254 1.1 cgd */
1255 1.1 cgd Boolean oldOldVars = oldVars;
1256 1.1 cgd
1257 1.1 cgd oldVars = FALSE;
1258 1.1 cgd cp = Var_Subst(cp, ctxt, FALSE);
1259 1.1 cgd oldVars = oldOldVars;
1260 1.1 cgd
1261 1.1 cgd Var_Set(line, cp, ctxt);
1262 1.1 cgd free(cp);
1263 1.1 cgd } else if (type == VAR_SHELL) {
1264 1.1 cgd char result[BUFSIZ]; /* Result of command */
1265 1.1 cgd char *args[4]; /* Args for invoking the shell */
1266 1.1 cgd int fds[2]; /* Pipe streams */
1267 1.1 cgd int cpid; /* Child PID */
1268 1.1 cgd int pid; /* PID from wait() */
1269 1.1 cgd Boolean freeCmd; /* TRUE if the command needs to be freed, i.e.
1270 1.1 cgd * if any variable expansion was performed */
1271 1.1 cgd
1272 1.1 cgd /*
1273 1.1 cgd * Set up arguments for shell
1274 1.1 cgd */
1275 1.1 cgd args[0] = "sh";
1276 1.1 cgd args[1] = "-c";
1277 1.1 cgd if (index(cp, '$') != (char *)NULL) {
1278 1.1 cgd /*
1279 1.1 cgd * There's a dollar sign in the command, so perform variable
1280 1.1 cgd * expansion on the whole thing. The resulting string will need
1281 1.1 cgd * freeing when we're done, so set freeCmd to TRUE.
1282 1.1 cgd */
1283 1.1 cgd args[2] = Var_Subst(cp, VAR_CMD, TRUE);
1284 1.1 cgd freeCmd = TRUE;
1285 1.1 cgd } else {
1286 1.1 cgd args[2] = cp;
1287 1.1 cgd freeCmd = FALSE;
1288 1.1 cgd }
1289 1.1 cgd args[3] = (char *)NULL;
1290 1.1 cgd
1291 1.1 cgd /*
1292 1.1 cgd * Open a pipe for fetching its output
1293 1.1 cgd */
1294 1.1 cgd pipe(fds);
1295 1.1 cgd
1296 1.1 cgd /*
1297 1.1 cgd * Fork
1298 1.1 cgd */
1299 1.1 cgd cpid = vfork();
1300 1.1 cgd if (cpid == 0) {
1301 1.1 cgd /*
1302 1.1 cgd * Close input side of pipe
1303 1.1 cgd */
1304 1.1 cgd close(fds[0]);
1305 1.1 cgd
1306 1.1 cgd /*
1307 1.1 cgd * Duplicate the output stream to the shell's output, then
1308 1.1 cgd * shut the extra thing down. Note we don't fetch the error
1309 1.1 cgd * stream...why not? Why?
1310 1.1 cgd */
1311 1.1 cgd dup2(fds[1], 1);
1312 1.1 cgd close(fds[1]);
1313 1.1 cgd
1314 1.1 cgd execv("/bin/sh", args);
1315 1.1 cgd _exit(1);
1316 1.1 cgd } else if (cpid < 0) {
1317 1.1 cgd /*
1318 1.1 cgd * Couldn't fork -- tell the user and make the variable null
1319 1.1 cgd */
1320 1.1 cgd Parse_Error(PARSE_WARNING, "Couldn't exec \"%s\"", cp);
1321 1.1 cgd Var_Set(line, "", ctxt);
1322 1.1 cgd } else {
1323 1.1 cgd int status;
1324 1.1 cgd int cc;
1325 1.1 cgd
1326 1.1 cgd /*
1327 1.1 cgd * No need for the writing half
1328 1.1 cgd */
1329 1.1 cgd close(fds[1]);
1330 1.1 cgd
1331 1.1 cgd /*
1332 1.1 cgd * Wait for the process to exit.
1333 1.1 cgd *
1334 1.1 cgd * XXX: If the child writes more than a pipe's worth, we will
1335 1.1 cgd * deadlock.
1336 1.1 cgd */
1337 1.1 cgd while(((pid = wait(&status)) != cpid) && (pid >= 0)) {
1338 1.1 cgd ;
1339 1.1 cgd }
1340 1.1 cgd
1341 1.1 cgd /*
1342 1.1 cgd * Read all the characters the child wrote.
1343 1.1 cgd */
1344 1.1 cgd cc = read(fds[0], result, sizeof(result));
1345 1.1 cgd
1346 1.1 cgd if (cc < 0) {
1347 1.1 cgd /*
1348 1.1 cgd * Couldn't read the child's output -- tell the user and
1349 1.1 cgd * set the variable to null
1350 1.1 cgd */
1351 1.1 cgd Parse_Error(PARSE_WARNING, "Couldn't read shell's output");
1352 1.1 cgd cc = 0;
1353 1.1 cgd }
1354 1.1 cgd
1355 1.1 cgd if (status) {
1356 1.1 cgd /*
1357 1.1 cgd * Child returned an error -- tell the user but still use
1358 1.1 cgd * the result.
1359 1.1 cgd */
1360 1.1 cgd Parse_Error(PARSE_WARNING, "\"%s\" returned non-zero", cp);
1361 1.1 cgd }
1362 1.1 cgd /*
1363 1.1 cgd * Null-terminate the result, convert newlines to spaces and
1364 1.1 cgd * install it in the variable.
1365 1.1 cgd */
1366 1.1 cgd result[cc] = '\0';
1367 1.1 cgd cp = &result[cc] - 1;
1368 1.1 cgd
1369 1.1 cgd if (*cp == '\n') {
1370 1.1 cgd /*
1371 1.1 cgd * A final newline is just stripped
1372 1.1 cgd */
1373 1.1 cgd *cp-- = '\0';
1374 1.1 cgd }
1375 1.1 cgd while (cp >= result) {
1376 1.1 cgd if (*cp == '\n') {
1377 1.1 cgd *cp = ' ';
1378 1.1 cgd }
1379 1.1 cgd cp--;
1380 1.1 cgd }
1381 1.1 cgd Var_Set(line, result, ctxt);
1382 1.1 cgd
1383 1.1 cgd /*
1384 1.1 cgd * Close the input side of the pipe.
1385 1.1 cgd */
1386 1.1 cgd close(fds[0]);
1387 1.1 cgd }
1388 1.1 cgd if (freeCmd) {
1389 1.1 cgd free(args[2]);
1390 1.1 cgd }
1391 1.1 cgd } else {
1392 1.1 cgd /*
1393 1.1 cgd * Normal assignment -- just do it.
1394 1.1 cgd */
1395 1.1 cgd Var_Set (line, cp, ctxt);
1396 1.1 cgd }
1397 1.1 cgd }
1398 1.1 cgd
1399 1.1 cgd /*-
1400 1.1 cgd * ParseAddCmd --
1401 1.1 cgd * Lst_ForEach function to add a command line to all targets
1402 1.1 cgd *
1403 1.1 cgd * Results:
1404 1.1 cgd * Always 0
1405 1.1 cgd *
1406 1.1 cgd * Side Effects:
1407 1.1 cgd * A new element is added to the commands list of the node.
1408 1.1 cgd */
1409 1.1 cgd static
1410 1.1 cgd ParseAddCmd(gn, cmd)
1411 1.1 cgd GNode *gn; /* the node to which the command is to be added */
1412 1.1 cgd char *cmd; /* the command to add */
1413 1.1 cgd {
1414 1.1 cgd /* if target already supplied, ignore commands */
1415 1.1 cgd if (!(gn->type & OP_HAS_COMMANDS))
1416 1.1 cgd (void)Lst_AtEnd(gn->commands, (ClientData)cmd);
1417 1.1 cgd return(0);
1418 1.1 cgd }
1419 1.1 cgd
1420 1.1 cgd /*-
1421 1.1 cgd *-----------------------------------------------------------------------
1422 1.1 cgd * ParseHasCommands --
1423 1.1 cgd * Callback procedure for Parse_File when destroying the list of
1424 1.1 cgd * targets on the last dependency line. Marks a target as already
1425 1.1 cgd * having commands if it does, to keep from having shell commands
1426 1.1 cgd * on multiple dependency lines.
1427 1.1 cgd *
1428 1.1 cgd * Results:
1429 1.1 cgd * Always 0.
1430 1.1 cgd *
1431 1.1 cgd * Side Effects:
1432 1.1 cgd * OP_HAS_COMMANDS may be set for the target.
1433 1.1 cgd *
1434 1.1 cgd *-----------------------------------------------------------------------
1435 1.1 cgd */
1436 1.1 cgd static int
1437 1.1 cgd ParseHasCommands(gn)
1438 1.1 cgd GNode *gn; /* Node to examine */
1439 1.1 cgd {
1440 1.1 cgd if (!Lst_IsEmpty(gn->commands)) {
1441 1.1 cgd gn->type |= OP_HAS_COMMANDS;
1442 1.1 cgd }
1443 1.1 cgd return(0);
1444 1.1 cgd }
1445 1.1 cgd
1446 1.1 cgd /*-
1447 1.1 cgd *-----------------------------------------------------------------------
1448 1.1 cgd * Parse_AddIncludeDir --
1449 1.1 cgd * Add a directory to the path searched for included makefiles
1450 1.1 cgd * bracketed by double-quotes. Used by functions in main.c
1451 1.1 cgd *
1452 1.1 cgd * Results:
1453 1.1 cgd * None.
1454 1.1 cgd *
1455 1.1 cgd * Side Effects:
1456 1.1 cgd * The directory is appended to the list.
1457 1.1 cgd *
1458 1.1 cgd *-----------------------------------------------------------------------
1459 1.1 cgd */
1460 1.1 cgd void
1461 1.1 cgd Parse_AddIncludeDir (dir)
1462 1.1 cgd char *dir; /* The name of the directory to add */
1463 1.1 cgd {
1464 1.1 cgd Dir_AddDir (parseIncPath, dir);
1465 1.1 cgd }
1466 1.1 cgd
1467 1.1 cgd /*-
1468 1.1 cgd *---------------------------------------------------------------------
1469 1.1 cgd * ParseDoInclude --
1470 1.1 cgd * Push to another file.
1471 1.1 cgd *
1472 1.1 cgd * The input is the line minus the #include. A file spec is a string
1473 1.1 cgd * enclosed in <> or "". The former is looked for only in sysIncPath.
1474 1.1 cgd * The latter in . and the directories specified by -I command line
1475 1.1 cgd * options
1476 1.1 cgd *
1477 1.1 cgd * Results:
1478 1.1 cgd * None
1479 1.1 cgd *
1480 1.1 cgd * Side Effects:
1481 1.1 cgd * A structure is added to the includes Lst and readProc, lineno,
1482 1.1 cgd * fname and curFILE are altered for the new file
1483 1.1 cgd *---------------------------------------------------------------------
1484 1.1 cgd */
1485 1.1 cgd static void
1486 1.1 cgd ParseDoInclude (file)
1487 1.1 cgd char *file; /* file specification */
1488 1.1 cgd {
1489 1.1 cgd char *fullname; /* full pathname of file */
1490 1.1 cgd IFile *oldFile; /* state associated with current file */
1491 1.1 cgd Lst path; /* the path to use to find the file */
1492 1.1 cgd char endc; /* the character which ends the file spec */
1493 1.1 cgd char *cp; /* current position in file spec */
1494 1.1 cgd Boolean isSystem; /* TRUE if makefile is a system makefile */
1495 1.1 cgd
1496 1.1 cgd /*
1497 1.1 cgd * Skip to delimiter character so we know where to look
1498 1.1 cgd */
1499 1.1 cgd while ((*file == ' ') || (*file == '\t')) {
1500 1.1 cgd file++;
1501 1.1 cgd }
1502 1.1 cgd
1503 1.1 cgd if ((*file != '"') && (*file != '<')) {
1504 1.1 cgd Parse_Error (PARSE_FATAL,
1505 1.1 cgd ".include filename must be delimited by '\"' or '<'");
1506 1.1 cgd return;
1507 1.1 cgd }
1508 1.1 cgd
1509 1.1 cgd /*
1510 1.1 cgd * Set the search path on which to find the include file based on the
1511 1.1 cgd * characters which bracket its name. Angle-brackets imply it's
1512 1.1 cgd * a system Makefile while double-quotes imply it's a user makefile
1513 1.1 cgd */
1514 1.1 cgd if (*file == '<') {
1515 1.1 cgd isSystem = TRUE;
1516 1.1 cgd endc = '>';
1517 1.1 cgd } else {
1518 1.1 cgd isSystem = FALSE;
1519 1.1 cgd endc = '"';
1520 1.1 cgd }
1521 1.1 cgd
1522 1.1 cgd /*
1523 1.1 cgd * Skip to matching delimiter
1524 1.1 cgd */
1525 1.1 cgd for (cp = ++file; *cp && *cp != endc; cp++) {
1526 1.1 cgd continue;
1527 1.1 cgd }
1528 1.1 cgd
1529 1.1 cgd if (*cp != endc) {
1530 1.1 cgd Parse_Error (PARSE_FATAL,
1531 1.1 cgd "Unclosed .include filename. '%c' expected", endc);
1532 1.1 cgd return;
1533 1.1 cgd }
1534 1.1 cgd *cp = '\0';
1535 1.1 cgd
1536 1.1 cgd /*
1537 1.1 cgd * Substitute for any variables in the file name before trying to
1538 1.1 cgd * find the thing.
1539 1.1 cgd */
1540 1.1 cgd file = Var_Subst (file, VAR_CMD, FALSE);
1541 1.1 cgd
1542 1.1 cgd /*
1543 1.1 cgd * Now we know the file's name and its search path, we attempt to
1544 1.1 cgd * find the durn thing. A return of NULL indicates the file don't
1545 1.1 cgd * exist.
1546 1.1 cgd */
1547 1.1 cgd if (!isSystem) {
1548 1.1 cgd /*
1549 1.1 cgd * Include files contained in double-quotes are first searched for
1550 1.1 cgd * relative to the including file's location. We don't want to
1551 1.1 cgd * cd there, of course, so we just tack on the old file's
1552 1.1 cgd * leading path components and call Dir_FindFile to see if
1553 1.1 cgd * we can locate the beast.
1554 1.1 cgd */
1555 1.1 cgd char *prefEnd;
1556 1.1 cgd
1557 1.1 cgd prefEnd = rindex (fname, '/');
1558 1.1 cgd if (prefEnd != (char *)NULL) {
1559 1.1 cgd char *newName;
1560 1.1 cgd
1561 1.1 cgd *prefEnd = '\0';
1562 1.1 cgd newName = str_concat (fname, file, STR_ADDSLASH);
1563 1.1 cgd fullname = Dir_FindFile (newName, parseIncPath);
1564 1.1 cgd if (fullname == (char *)NULL) {
1565 1.1 cgd fullname = Dir_FindFile(newName, dirSearchPath);
1566 1.1 cgd }
1567 1.1 cgd free (newName);
1568 1.1 cgd *prefEnd = '/';
1569 1.1 cgd } else {
1570 1.1 cgd fullname = (char *)NULL;
1571 1.1 cgd }
1572 1.1 cgd } else {
1573 1.1 cgd fullname = (char *)NULL;
1574 1.1 cgd }
1575 1.1 cgd
1576 1.1 cgd if (fullname == (char *)NULL) {
1577 1.1 cgd /*
1578 1.1 cgd * System makefile or makefile wasn't found in same directory as
1579 1.1 cgd * included makefile. Search for it first on the -I search path,
1580 1.1 cgd * then on the .PATH search path, if not found in a -I directory.
1581 1.1 cgd * XXX: Suffix specific?
1582 1.1 cgd */
1583 1.1 cgd fullname = Dir_FindFile (file, parseIncPath);
1584 1.1 cgd if (fullname == (char *)NULL) {
1585 1.1 cgd fullname = Dir_FindFile(file, dirSearchPath);
1586 1.1 cgd }
1587 1.1 cgd }
1588 1.1 cgd
1589 1.1 cgd if (fullname == (char *)NULL) {
1590 1.1 cgd /*
1591 1.1 cgd * Still haven't found the makefile. Look for it on the system
1592 1.1 cgd * path as a last resort.
1593 1.1 cgd */
1594 1.1 cgd fullname = Dir_FindFile(file, sysIncPath);
1595 1.1 cgd }
1596 1.1 cgd
1597 1.1 cgd if (fullname == (char *) NULL) {
1598 1.1 cgd *cp = endc;
1599 1.1 cgd Parse_Error (PARSE_FATAL, "Could not find %s", file);
1600 1.1 cgd return;
1601 1.1 cgd }
1602 1.1 cgd
1603 1.1 cgd /*
1604 1.1 cgd * Once we find the absolute path to the file, we get to save all the
1605 1.1 cgd * state from the current file before we can start reading this
1606 1.1 cgd * include file. The state is stored in an IFile structure which
1607 1.1 cgd * is placed on a list with other IFile structures. The list makes
1608 1.1 cgd * a very nice stack to track how we got here...
1609 1.1 cgd */
1610 1.1 cgd oldFile = (IFile *) emalloc (sizeof (IFile));
1611 1.1 cgd oldFile->fname = fname;
1612 1.1 cgd
1613 1.1 cgd oldFile->F = curFILE;
1614 1.1 cgd oldFile->lineno = lineno;
1615 1.1 cgd
1616 1.1 cgd (void) Lst_AtFront (includes, (ClientData)oldFile);
1617 1.1 cgd
1618 1.1 cgd /*
1619 1.1 cgd * Once the previous state has been saved, we can get down to reading
1620 1.1 cgd * the new file. We set up the name of the file to be the absolute
1621 1.1 cgd * name of the include file so error messages refer to the right
1622 1.1 cgd * place. Naturally enough, we start reading at line number 0.
1623 1.1 cgd */
1624 1.1 cgd fname = fullname;
1625 1.1 cgd lineno = 0;
1626 1.1 cgd
1627 1.1 cgd curFILE = fopen (fullname, "r");
1628 1.1 cgd if (curFILE == (FILE * ) NULL) {
1629 1.1 cgd Parse_Error (PARSE_FATAL, "Cannot open %s", fullname);
1630 1.1 cgd /*
1631 1.1 cgd * Pop to previous file
1632 1.1 cgd */
1633 1.1 cgd (void) ParseEOF(0);
1634 1.1 cgd }
1635 1.1 cgd }
1636 1.1 cgd
1637 1.1 cgd /*-
1638 1.1 cgd *---------------------------------------------------------------------
1639 1.1 cgd * ParseEOF --
1640 1.1 cgd * Called when EOF is reached in the current file. If we were reading
1641 1.1 cgd * an include file, the includes stack is popped and things set up
1642 1.1 cgd * to go back to reading the previous file at the previous location.
1643 1.1 cgd *
1644 1.1 cgd * Results:
1645 1.1 cgd * CONTINUE if there's more to do. DONE if not.
1646 1.1 cgd *
1647 1.1 cgd * Side Effects:
1648 1.1 cgd * The old curFILE, is closed. The includes list is shortened.
1649 1.1 cgd * lineno, curFILE, and fname are changed if CONTINUE is returned.
1650 1.1 cgd *---------------------------------------------------------------------
1651 1.1 cgd */
1652 1.1 cgd static int
1653 1.1 cgd ParseEOF (opened)
1654 1.1 cgd int opened;
1655 1.1 cgd {
1656 1.1 cgd IFile *ifile; /* the state on the top of the includes stack */
1657 1.1 cgd
1658 1.1 cgd if (Lst_IsEmpty (includes)) {
1659 1.1 cgd return (DONE);
1660 1.1 cgd }
1661 1.1 cgd
1662 1.1 cgd ifile = (IFile *) Lst_DeQueue (includes);
1663 1.1 cgd free (fname);
1664 1.1 cgd fname = ifile->fname;
1665 1.1 cgd lineno = ifile->lineno;
1666 1.1 cgd if (opened)
1667 1.1 cgd (void) fclose (curFILE);
1668 1.1 cgd curFILE = ifile->F;
1669 1.1 cgd free ((Address)ifile);
1670 1.1 cgd return (CONTINUE);
1671 1.1 cgd }
1672 1.1 cgd
1673 1.1 cgd /*-
1674 1.1 cgd *---------------------------------------------------------------------
1675 1.1 cgd * ParseReadc --
1676 1.1 cgd * Read a character from the current file and update the line number
1677 1.1 cgd * counter as necessary
1678 1.1 cgd *
1679 1.1 cgd * Results:
1680 1.1 cgd * The character that was read
1681 1.1 cgd *
1682 1.1 cgd * Side Effects:
1683 1.1 cgd * The lineno counter is incremented if the character is a newline
1684 1.1 cgd *---------------------------------------------------------------------
1685 1.1 cgd */
1686 1.1 cgd #ifdef notdef
1687 1.1 cgd static int parseReadChar;
1688 1.1 cgd
1689 1.1 cgd #define ParseReadc() (((parseReadChar = getc(curFILE)) == '\n') ? \
1690 1.1 cgd (lineno++, '\n') : parseReadChar)
1691 1.1 cgd #else
1692 1.1 cgd #define ParseReadc() (getc(curFILE))
1693 1.1 cgd #endif /* notdef */
1694 1.1 cgd
1695 1.1 cgd
1696 1.1 cgd /*-
1697 1.1 cgd *---------------------------------------------------------------------
1698 1.1 cgd * ParseReadLine --
1699 1.1 cgd * Read an entire line from the input file. Called only by Parse_File.
1700 1.1 cgd * To facilitate escaped newlines and what have you, a character is
1701 1.1 cgd * buffered in 'lastc', which is '\0' when no characters have been
1702 1.1 cgd * read. When we break out of the loop, c holds the terminating
1703 1.1 cgd * character and lastc holds a character that should be added to
1704 1.1 cgd * the line (unless we don't read anything but a terminator).
1705 1.1 cgd *
1706 1.1 cgd * Results:
1707 1.1 cgd * A line w/o its newline
1708 1.1 cgd *
1709 1.1 cgd * Side Effects:
1710 1.1 cgd * Only those associated with reading a character
1711 1.1 cgd *---------------------------------------------------------------------
1712 1.1 cgd */
1713 1.1 cgd static char *
1714 1.1 cgd ParseReadLine ()
1715 1.1 cgd {
1716 1.1 cgd Buffer buf; /* Buffer for current line */
1717 1.1 cgd register int c; /* the current character */
1718 1.1 cgd register int lastc; /* The most-recent character */
1719 1.1 cgd Boolean semiNL; /* treat semi-colons as newlines */
1720 1.1 cgd Boolean ignDepOp; /* TRUE if should ignore dependency operators
1721 1.1 cgd * for the purposes of setting semiNL */
1722 1.1 cgd Boolean ignComment; /* TRUE if should ignore comments (in a
1723 1.1 cgd * shell command */
1724 1.1 cgd char *line; /* Result */
1725 1.1 cgd int lineLength; /* Length of result */
1726 1.1 cgd
1727 1.1 cgd semiNL = FALSE;
1728 1.1 cgd ignDepOp = FALSE;
1729 1.1 cgd ignComment = FALSE;
1730 1.1 cgd
1731 1.1 cgd /*
1732 1.1 cgd * Handle special-characters at the beginning of the line. Either a
1733 1.1 cgd * leading tab (shell command) or pound-sign (possible conditional)
1734 1.1 cgd * forces us to ignore comments and dependency operators and treat
1735 1.1 cgd * semi-colons as semi-colons (by leaving semiNL FALSE). This also
1736 1.1 cgd * discards completely blank lines.
1737 1.1 cgd */
1738 1.1 cgd while(1) {
1739 1.1 cgd c = ParseReadc();
1740 1.1 cgd
1741 1.1 cgd if (c == '\t') {
1742 1.1 cgd ignComment = ignDepOp = TRUE;
1743 1.1 cgd break;
1744 1.1 cgd } else if (c == '.') {
1745 1.1 cgd ignComment = TRUE;
1746 1.1 cgd break;
1747 1.1 cgd } else if (c == '\n') {
1748 1.1 cgd lineno++;
1749 1.1 cgd } else if (c == '#') {
1750 1.1 cgd ungetc(c, curFILE);
1751 1.1 cgd break;
1752 1.1 cgd } else {
1753 1.1 cgd /*
1754 1.1 cgd * Anything else breaks out without doing anything
1755 1.1 cgd */
1756 1.1 cgd break;
1757 1.1 cgd }
1758 1.1 cgd }
1759 1.1 cgd
1760 1.1 cgd if (c != EOF) {
1761 1.1 cgd lastc = c;
1762 1.1 cgd buf = Buf_Init(BSIZE);
1763 1.1 cgd
1764 1.1 cgd while (((c = ParseReadc ()) != '\n' || (lastc == '\\')) &&
1765 1.1 cgd (c != EOF))
1766 1.1 cgd {
1767 1.1 cgd test_char:
1768 1.1 cgd switch(c) {
1769 1.1 cgd case '\n':
1770 1.1 cgd /*
1771 1.1 cgd * Escaped newline: read characters until a non-space or an
1772 1.1 cgd * unescaped newline and replace them all by a single space.
1773 1.1 cgd * This is done by storing the space over the backslash and
1774 1.1 cgd * dropping through with the next nonspace. If it is a
1775 1.1 cgd * semi-colon and semiNL is TRUE, it will be recognized as a
1776 1.1 cgd * newline in the code below this...
1777 1.1 cgd */
1778 1.1 cgd lineno++;
1779 1.1 cgd lastc = ' ';
1780 1.1 cgd while ((c = ParseReadc ()) == ' ' || c == '\t') {
1781 1.1 cgd continue;
1782 1.1 cgd }
1783 1.1 cgd if (c == EOF || c == '\n') {
1784 1.1 cgd goto line_read;
1785 1.1 cgd } else {
1786 1.1 cgd /*
1787 1.1 cgd * Check for comments, semiNL's, etc. -- easier than
1788 1.1 cgd * ungetc(c, curFILE); continue;
1789 1.1 cgd */
1790 1.1 cgd goto test_char;
1791 1.1 cgd }
1792 1.1 cgd break;
1793 1.1 cgd case ';':
1794 1.1 cgd /*
1795 1.1 cgd * Semi-colon: Need to see if it should be interpreted as a
1796 1.1 cgd * newline
1797 1.1 cgd */
1798 1.1 cgd if (semiNL) {
1799 1.1 cgd /*
1800 1.1 cgd * To make sure the command that may be following this
1801 1.1 cgd * semi-colon begins with a tab, we push one back into the
1802 1.1 cgd * input stream. This will overwrite the semi-colon in the
1803 1.1 cgd * buffer. If there is no command following, this does no
1804 1.1 cgd * harm, since the newline remains in the buffer and the
1805 1.1 cgd * whole line is ignored.
1806 1.1 cgd */
1807 1.1 cgd ungetc('\t', curFILE);
1808 1.1 cgd goto line_read;
1809 1.1 cgd }
1810 1.1 cgd break;
1811 1.1 cgd case '=':
1812 1.1 cgd if (!semiNL) {
1813 1.1 cgd /*
1814 1.1 cgd * Haven't seen a dependency operator before this, so this
1815 1.1 cgd * must be a variable assignment -- don't pay attention to
1816 1.1 cgd * dependency operators after this.
1817 1.1 cgd */
1818 1.1 cgd ignDepOp = TRUE;
1819 1.1 cgd } else if (lastc == ':' || lastc == '!') {
1820 1.1 cgd /*
1821 1.1 cgd * Well, we've seen a dependency operator already, but it
1822 1.1 cgd * was the previous character, so this is really just an
1823 1.1 cgd * expanded variable assignment. Revert semi-colons to
1824 1.1 cgd * being just semi-colons again and ignore any more
1825 1.1 cgd * dependency operators.
1826 1.1 cgd *
1827 1.1 cgd * XXX: Note that a line like "foo : a:=b" will blow up,
1828 1.1 cgd * but who'd write a line like that anyway?
1829 1.1 cgd */
1830 1.1 cgd ignDepOp = TRUE; semiNL = FALSE;
1831 1.1 cgd }
1832 1.1 cgd break;
1833 1.1 cgd case '#':
1834 1.1 cgd if (!ignComment) {
1835 1.1 cgd /*
1836 1.1 cgd * If the character is a hash mark and it isn't escaped
1837 1.1 cgd * (or we're being compatible), the thing is a comment.
1838 1.1 cgd * Skip to the end of the line.
1839 1.1 cgd */
1840 1.1 cgd do {
1841 1.1 cgd c = ParseReadc();
1842 1.1 cgd } while ((c != '\n') && (c != EOF));
1843 1.1 cgd goto line_read;
1844 1.1 cgd }
1845 1.1 cgd break;
1846 1.1 cgd case ':':
1847 1.1 cgd case '!':
1848 1.1 cgd if (!ignDepOp && (c == ':' || c == '!')) {
1849 1.1 cgd /*
1850 1.1 cgd * A semi-colon is recognized as a newline only on
1851 1.1 cgd * dependency lines. Dependency lines are lines with a
1852 1.1 cgd * colon or an exclamation point. Ergo...
1853 1.1 cgd */
1854 1.1 cgd semiNL = TRUE;
1855 1.1 cgd }
1856 1.1 cgd break;
1857 1.1 cgd }
1858 1.1 cgd /*
1859 1.1 cgd * Copy in the previous character and save this one in lastc.
1860 1.1 cgd */
1861 1.1 cgd Buf_AddByte (buf, (Byte)lastc);
1862 1.1 cgd lastc = c;
1863 1.1 cgd
1864 1.1 cgd }
1865 1.1 cgd line_read:
1866 1.1 cgd lineno++;
1867 1.1 cgd
1868 1.1 cgd if (lastc != '\0') {
1869 1.1 cgd Buf_AddByte (buf, (Byte)lastc);
1870 1.1 cgd }
1871 1.1 cgd Buf_AddByte (buf, (Byte)'\0');
1872 1.1 cgd line = (char *)Buf_GetAll (buf, &lineLength);
1873 1.1 cgd Buf_Destroy (buf, FALSE);
1874 1.1 cgd
1875 1.1 cgd if (line[0] == '.') {
1876 1.1 cgd /*
1877 1.1 cgd * The line might be a conditional. Ask the conditional module
1878 1.1 cgd * about it and act accordingly
1879 1.1 cgd */
1880 1.1 cgd switch (Cond_Eval (line)) {
1881 1.1 cgd case COND_SKIP:
1882 1.1 cgd do {
1883 1.1 cgd /*
1884 1.1 cgd * Skip to next conditional that evaluates to COND_PARSE.
1885 1.1 cgd */
1886 1.1 cgd free (line);
1887 1.1 cgd c = ParseReadc();
1888 1.1 cgd /*
1889 1.1 cgd * Skip lines until get to one that begins with a
1890 1.1 cgd * special char.
1891 1.1 cgd */
1892 1.1 cgd while ((c != '.') && (c != EOF)) {
1893 1.1 cgd while (((c != '\n') || (lastc == '\\')) &&
1894 1.1 cgd (c != EOF))
1895 1.1 cgd {
1896 1.1 cgd /*
1897 1.1 cgd * Advance to next unescaped newline
1898 1.1 cgd */
1899 1.1 cgd if ((lastc = c) == '\n') {
1900 1.1 cgd lineno++;
1901 1.1 cgd }
1902 1.1 cgd c = ParseReadc();
1903 1.1 cgd }
1904 1.1 cgd lineno++;
1905 1.1 cgd
1906 1.1 cgd lastc = c;
1907 1.1 cgd c = ParseReadc ();
1908 1.1 cgd }
1909 1.1 cgd
1910 1.1 cgd if (c == EOF) {
1911 1.1 cgd Parse_Error (PARSE_FATAL, "Unclosed conditional");
1912 1.1 cgd return ((char *)NULL);
1913 1.1 cgd }
1914 1.1 cgd
1915 1.1 cgd /*
1916 1.1 cgd * Read the entire line into buf
1917 1.1 cgd */
1918 1.1 cgd buf = Buf_Init (BSIZE);
1919 1.1 cgd do {
1920 1.1 cgd Buf_AddByte (buf, (Byte)c);
1921 1.1 cgd c = ParseReadc();
1922 1.1 cgd } while ((c != '\n') && (c != EOF));
1923 1.1 cgd lineno++;
1924 1.1 cgd
1925 1.1 cgd Buf_AddByte (buf, (Byte)'\0');
1926 1.1 cgd line = (char *)Buf_GetAll (buf, &lineLength);
1927 1.1 cgd Buf_Destroy (buf, FALSE);
1928 1.1 cgd } while (Cond_Eval(line) != COND_PARSE);
1929 1.1 cgd /*FALLTHRU*/
1930 1.1 cgd case COND_PARSE:
1931 1.1 cgd free (line);
1932 1.1 cgd line = ParseReadLine();
1933 1.1 cgd break;
1934 1.1 cgd }
1935 1.1 cgd }
1936 1.1 cgd
1937 1.1 cgd return (line);
1938 1.1 cgd } else {
1939 1.1 cgd /*
1940 1.1 cgd * Hit end-of-file, so return a NULL line to indicate this.
1941 1.1 cgd */
1942 1.1 cgd return((char *)NULL);
1943 1.1 cgd }
1944 1.1 cgd }
1945 1.1 cgd
1946 1.1 cgd /*-
1947 1.1 cgd *-----------------------------------------------------------------------
1948 1.1 cgd * ParseFinishLine --
1949 1.1 cgd * Handle the end of a dependency group.
1950 1.1 cgd *
1951 1.1 cgd * Results:
1952 1.1 cgd * Nothing.
1953 1.1 cgd *
1954 1.1 cgd * Side Effects:
1955 1.1 cgd * inLine set FALSE. 'targets' list destroyed.
1956 1.1 cgd *
1957 1.1 cgd *-----------------------------------------------------------------------
1958 1.1 cgd */
1959 1.1 cgd static void
1960 1.1 cgd ParseFinishLine()
1961 1.1 cgd {
1962 1.1 cgd extern int Suff_EndTransform();
1963 1.1 cgd
1964 1.1 cgd if (inLine) {
1965 1.1 cgd Lst_ForEach(targets, Suff_EndTransform, (ClientData)NULL);
1966 1.1 cgd Lst_Destroy (targets, ParseHasCommands);
1967 1.1 cgd inLine = FALSE;
1968 1.1 cgd }
1969 1.1 cgd }
1970 1.1 cgd
1971 1.1 cgd
1972 1.1 cgd /*-
1973 1.1 cgd *---------------------------------------------------------------------
1974 1.1 cgd * Parse_File --
1975 1.1 cgd * Parse a file into its component parts, incorporating it into the
1976 1.1 cgd * current dependency graph. This is the main function and controls
1977 1.1 cgd * almost every other function in this module
1978 1.1 cgd *
1979 1.1 cgd * Results:
1980 1.1 cgd * None
1981 1.1 cgd *
1982 1.1 cgd * Side Effects:
1983 1.1 cgd * Loads. Nodes are added to the list of all targets, nodes and links
1984 1.1 cgd * are added to the dependency graph. etc. etc. etc.
1985 1.1 cgd *---------------------------------------------------------------------
1986 1.1 cgd */
1987 1.1 cgd void
1988 1.1 cgd Parse_File(name, stream)
1989 1.1 cgd char *name; /* the name of the file being read */
1990 1.1 cgd FILE * stream; /* Stream open to makefile to parse */
1991 1.1 cgd {
1992 1.1 cgd register char *cp, /* pointer into the line */
1993 1.1 cgd *line; /* the line we're working on */
1994 1.1 cgd
1995 1.1 cgd inLine = FALSE;
1996 1.1 cgd fname = name;
1997 1.1 cgd curFILE = stream;
1998 1.1 cgd lineno = 0;
1999 1.1 cgd fatals = 0;
2000 1.1 cgd
2001 1.1 cgd do {
2002 1.1 cgd while (line = ParseReadLine ()) {
2003 1.1 cgd if (*line == '.') {
2004 1.1 cgd /*
2005 1.1 cgd * Lines that begin with the special character are either
2006 1.1 cgd * include or undef directives.
2007 1.1 cgd */
2008 1.1 cgd for (cp = line + 1; isspace (*cp); cp++) {
2009 1.1 cgd continue;
2010 1.1 cgd }
2011 1.1 cgd if (strncmp (cp, "include", 7) == 0) {
2012 1.1 cgd ParseDoInclude (cp + 7);
2013 1.1 cgd goto nextLine;
2014 1.1 cgd } else if (strncmp(cp, "undef", 5) == 0) {
2015 1.1 cgd char *cp2;
2016 1.1 cgd for (cp += 5; isspace(*cp); cp++) {
2017 1.1 cgd continue;
2018 1.1 cgd }
2019 1.1 cgd
2020 1.1 cgd for (cp2 = cp; !isspace(*cp2) && (*cp2 != '\0'); cp2++) {
2021 1.1 cgd continue;
2022 1.1 cgd }
2023 1.1 cgd
2024 1.1 cgd *cp2 = '\0';
2025 1.1 cgd
2026 1.1 cgd Var_Delete(cp, VAR_GLOBAL);
2027 1.1 cgd goto nextLine;
2028 1.1 cgd }
2029 1.1 cgd }
2030 1.1 cgd if (*line == '#') {
2031 1.1 cgd /* If we're this far, the line must be a comment. */
2032 1.1 cgd goto nextLine;
2033 1.1 cgd }
2034 1.1 cgd
2035 1.1 cgd if (*line == '\t'
2036 1.1 cgd #ifdef POSIX
2037 1.1 cgd || *line == ' '
2038 1.1 cgd #endif
2039 1.1 cgd )
2040 1.1 cgd {
2041 1.1 cgd /*
2042 1.1 cgd * If a line starts with a tab (or space in POSIX-land), it
2043 1.1 cgd * can only hope to be a creation command.
2044 1.1 cgd */
2045 1.1 cgd shellCommand:
2046 1.1 cgd for (cp = line + 1; isspace (*cp); cp++) {
2047 1.1 cgd continue;
2048 1.1 cgd }
2049 1.1 cgd if (*cp) {
2050 1.1 cgd if (inLine) {
2051 1.1 cgd /*
2052 1.1 cgd * So long as it's not a blank line and we're actually
2053 1.1 cgd * in a dependency spec, add the command to the list of
2054 1.1 cgd * commands of all targets in the dependency spec
2055 1.1 cgd */
2056 1.1 cgd Lst_ForEach (targets, ParseAddCmd, (ClientData)cp);
2057 1.1 cgd continue;
2058 1.1 cgd } else {
2059 1.1 cgd Parse_Error (PARSE_FATAL,
2060 1.1 cgd "Unassociated shell command \"%.20s\"",
2061 1.1 cgd cp);
2062 1.1 cgd }
2063 1.1 cgd }
2064 1.1 cgd } else if (Parse_IsVar (line)) {
2065 1.1 cgd ParseFinishLine();
2066 1.1 cgd Parse_DoVar (line, VAR_GLOBAL);
2067 1.1 cgd } else {
2068 1.1 cgd /*
2069 1.1 cgd * We now know it's a dependency line so it needs to have all
2070 1.1 cgd * variables expanded before being parsed. Tell the variable
2071 1.1 cgd * module to complain if some variable is undefined...
2072 1.1 cgd * To make life easier on novices, if the line is indented we
2073 1.1 cgd * first make sure the line has a dependency operator in it.
2074 1.1 cgd * If it doesn't have an operator and we're in a dependency
2075 1.1 cgd * line's script, we assume it's actually a shell command
2076 1.1 cgd * and add it to the current list of targets.
2077 1.1 cgd *
2078 1.1 cgd * Note that POSIX declares all lines that start with
2079 1.1 cgd * whitespace are shell commands, so there's no need to check
2080 1.1 cgd * here...
2081 1.1 cgd */
2082 1.1 cgd Boolean nonSpace = FALSE;
2083 1.1 cgd
2084 1.1 cgd cp = line;
2085 1.1 cgd #ifndef POSIX
2086 1.1 cgd if (line[0] == ' ') {
2087 1.1 cgd while ((*cp != ':') && (*cp != '!') && (*cp != '\0')) {
2088 1.1 cgd if (!isspace(*cp)) {
2089 1.1 cgd nonSpace = TRUE;
2090 1.1 cgd }
2091 1.1 cgd cp++;
2092 1.1 cgd }
2093 1.1 cgd }
2094 1.1 cgd
2095 1.1 cgd if (*cp == '\0') {
2096 1.1 cgd if (inLine) {
2097 1.1 cgd Parse_Error (PARSE_WARNING,
2098 1.1 cgd "Shell command needs a leading tab");
2099 1.1 cgd goto shellCommand;
2100 1.1 cgd } else if (nonSpace) {
2101 1.1 cgd Parse_Error (PARSE_FATAL, "Missing operator");
2102 1.1 cgd }
2103 1.1 cgd } else {
2104 1.1 cgd #endif
2105 1.1 cgd ParseFinishLine();
2106 1.1 cgd
2107 1.1 cgd cp = Var_Subst (line, VAR_CMD, TRUE);
2108 1.1 cgd free (line);
2109 1.1 cgd line = cp;
2110 1.1 cgd
2111 1.1 cgd /*
2112 1.1 cgd * Need a non-circular list for the target nodes
2113 1.1 cgd */
2114 1.1 cgd targets = Lst_Init (FALSE);
2115 1.1 cgd inLine = TRUE;
2116 1.1 cgd
2117 1.1 cgd ParseDoDependency (line);
2118 1.1 cgd #ifndef POSIX
2119 1.1 cgd }
2120 1.1 cgd #endif
2121 1.1 cgd }
2122 1.1 cgd
2123 1.1 cgd nextLine:
2124 1.1 cgd
2125 1.1 cgd free (line);
2126 1.1 cgd }
2127 1.1 cgd /*
2128 1.1 cgd * Reached EOF, but it may be just EOF of an include file...
2129 1.1 cgd */
2130 1.1 cgd } while (ParseEOF(1) == CONTINUE);
2131 1.1 cgd
2132 1.1 cgd /*
2133 1.1 cgd * Make sure conditionals are clean
2134 1.1 cgd */
2135 1.1 cgd Cond_End();
2136 1.1 cgd
2137 1.1 cgd if (fatals) {
2138 1.1 cgd fprintf (stderr, "Fatal errors encountered -- cannot continue\n");
2139 1.1 cgd exit (1);
2140 1.1 cgd }
2141 1.1 cgd }
2142 1.1 cgd
2143 1.1 cgd /*-
2144 1.1 cgd *---------------------------------------------------------------------
2145 1.1 cgd * Parse_Init --
2146 1.1 cgd * initialize the parsing module
2147 1.1 cgd *
2148 1.1 cgd * Results:
2149 1.1 cgd * none
2150 1.1 cgd *
2151 1.1 cgd * Side Effects:
2152 1.1 cgd * the parseIncPath list is initialized...
2153 1.1 cgd *---------------------------------------------------------------------
2154 1.1 cgd */
2155 1.1 cgd Parse_Init ()
2156 1.1 cgd {
2157 1.1 cgd char *cp, *start;
2158 1.1 cgd /* avoid faults on read-only strings */
2159 1.1 cgd static char syspath[] = _PATH_DEFSYSPATH;
2160 1.1 cgd
2161 1.1 cgd mainNode = NILGNODE;
2162 1.1 cgd parseIncPath = Lst_Init (FALSE);
2163 1.1 cgd sysIncPath = Lst_Init (FALSE);
2164 1.1 cgd includes = Lst_Init (FALSE);
2165 1.1 cgd
2166 1.1 cgd /*
2167 1.1 cgd * Add the directories from the DEFSYSPATH (more than one may be given
2168 1.1 cgd * as dir1:...:dirn) to the system include path.
2169 1.1 cgd */
2170 1.1 cgd for (start = syspath; *start != '\0'; start = cp) {
2171 1.1 cgd for (cp = start; *cp != '\0' && *cp != ':'; cp++) {
2172 1.1 cgd ;
2173 1.1 cgd }
2174 1.1 cgd if (*cp == '\0') {
2175 1.1 cgd Dir_AddDir(sysIncPath, start);
2176 1.1 cgd } else {
2177 1.1 cgd *cp++ = '\0';
2178 1.1 cgd Dir_AddDir(sysIncPath, start);
2179 1.1 cgd }
2180 1.1 cgd }
2181 1.1 cgd }
2182 1.1 cgd
2183 1.1 cgd /*-
2184 1.1 cgd *-----------------------------------------------------------------------
2185 1.1 cgd * Parse_MainName --
2186 1.1 cgd * Return a Lst of the main target to create for main()'s sake. If
2187 1.1 cgd * no such target exists, we Punt with an obnoxious error message.
2188 1.1 cgd *
2189 1.1 cgd * Results:
2190 1.1 cgd * A Lst of the single node to create.
2191 1.1 cgd *
2192 1.1 cgd * Side Effects:
2193 1.1 cgd * None.
2194 1.1 cgd *
2195 1.1 cgd *-----------------------------------------------------------------------
2196 1.1 cgd */
2197 1.1 cgd Lst
2198 1.1 cgd Parse_MainName()
2199 1.1 cgd {
2200 1.1 cgd Lst main; /* result list */
2201 1.1 cgd
2202 1.1 cgd main = Lst_Init (FALSE);
2203 1.1 cgd
2204 1.1 cgd if (mainNode == NILGNODE) {
2205 1.1 cgd Punt ("make: no target to make.\n");
2206 1.1 cgd /*NOTREACHED*/
2207 1.1 cgd } else if (mainNode->type & OP_DOUBLEDEP) {
2208 1.1 cgd Lst_Concat(main, mainNode->cohorts, LST_CONCNEW);
2209 1.1 cgd }
2210 1.1 cgd (void) Lst_AtEnd (main, (ClientData)mainNode);
2211 1.1 cgd return (main);
2212 1.1 cgd }
2213