Installed a new French translation (resolves Debian Bug #106720)
[make.git] / read.c
blob6b66a8132d778f58f1be11dc4ca727c44d29aa52
1 /* Reading and parsing of makefiles for GNU Make.
2 Copyright (C) 1988,89,90,91,92,93,94,95,96,97 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include "make.h"
22 #include <assert.h>
24 #include <glob.h>
26 #include "dep.h"
27 #include "filedef.h"
28 #include "job.h"
29 #include "commands.h"
30 #include "variable.h"
31 #include "rule.h"
32 #include "debug.h"
35 #ifndef WINDOWS32
36 #ifndef _AMIGA
37 #ifndef VMS
38 #include <pwd.h>
39 #else
40 struct passwd *getpwnam PARAMS ((char *name));
41 #endif
42 #endif
43 #endif /* !WINDOWS32 */
45 /* A `struct linebuffer' is a structure which holds a line of text.
46 `readline' reads a line from a stream into a linebuffer
47 and works regardless of the length of the line. */
49 struct linebuffer
51 /* Note: This is the number of bytes malloc'ed for `buffer'
52 It does not indicate `buffer's real length.
53 Instead, a null char indicates end-of-string. */
54 unsigned int size;
55 char *buffer;
58 #define initbuffer(lb) (lb)->buffer = (char *) xmalloc ((lb)->size = 200)
59 #define freebuffer(lb) free ((lb)->buffer)
62 /* Types of "words" that can be read in a makefile. */
63 enum make_word_type
65 w_bogus, w_eol, w_static, w_variable, w_colon, w_dcolon, w_semicolon,
66 w_comment, w_varassign
70 /* A `struct conditionals' contains the information describing
71 all the active conditionals in a makefile.
73 The global variable `conditionals' contains the conditionals
74 information for the current makefile. It is initialized from
75 the static structure `toplevel_conditionals' and is later changed
76 to new structures for included makefiles. */
78 struct conditionals
80 unsigned int if_cmds; /* Depth of conditional nesting. */
81 unsigned int allocated; /* Elts allocated in following arrays. */
82 char *ignoring; /* Are we ignoring or interepreting? */
83 char *seen_else; /* Have we already seen an `else'? */
86 static struct conditionals toplevel_conditionals;
87 static struct conditionals *conditionals = &toplevel_conditionals;
90 /* Default directories to search for include files in */
92 static char *default_include_directories[] =
94 #if defined(WINDOWS32) && !defined(INCLUDEDIR)
96 * This completly up to the user when they install MSVC or other packages.
97 * This is defined as a placeholder.
99 #define INCLUDEDIR "."
100 #endif
101 INCLUDEDIR,
102 #ifndef _AMIGA
103 "/usr/gnu/include",
104 "/usr/local/include",
105 "/usr/include",
106 #endif
110 /* List of directories to search for include files in */
112 static char **include_directories;
114 /* Maximum length of an element of the above. */
116 static unsigned int max_incl_len;
118 /* The filename and pointer to line number of the
119 makefile currently being read in. */
121 const struct floc *reading_file;
123 /* The chain of makefiles read by read_makefile. */
125 static struct dep *read_makefiles = 0;
127 static int read_makefile PARAMS ((char *filename, int flags));
128 static unsigned long readline PARAMS ((struct linebuffer *linebuffer,
129 FILE *stream, const struct floc *flocp));
130 static void do_define PARAMS ((char *name, unsigned int namelen,
131 enum variable_origin origin, FILE *infile,
132 struct floc *flocp));
133 static int conditional_line PARAMS ((char *line, const struct floc *flocp));
134 static void record_files PARAMS ((struct nameseq *filenames, char *pattern, char *pattern_percent,
135 struct dep *deps, unsigned int cmds_started, char *commands,
136 unsigned int commands_idx, int two_colon,
137 const struct floc *flocp, int set_default));
138 static void record_target_var PARAMS ((struct nameseq *filenames, char *defn,
139 int two_colon,
140 enum variable_origin origin,
141 const struct floc *flocp));
142 static enum make_word_type get_next_mword PARAMS ((char *buffer, char *delim,
143 char **startp, unsigned int *length));
145 /* Read in all the makefiles and return the chain of their names. */
147 struct dep *
148 read_all_makefiles (makefiles)
149 char **makefiles;
151 unsigned int num_makefiles = 0;
153 DB (DB_BASIC, (_("Reading makefiles...\n")));
155 /* If there's a non-null variable MAKEFILES, its value is a list of
156 files to read first thing. But don't let it prevent reading the
157 default makefiles and don't let the default goal come from there. */
160 char *value;
161 char *name, *p;
162 unsigned int length;
165 /* Turn off --warn-undefined-variables while we expand MAKEFILES. */
166 int save = warn_undefined_variables_flag;
167 warn_undefined_variables_flag = 0;
169 value = allocated_variable_expand ("$(MAKEFILES)");
171 warn_undefined_variables_flag = save;
174 /* Set NAME to the start of next token and LENGTH to its length.
175 MAKEFILES is updated for finding remaining tokens. */
176 p = value;
178 while ((name = find_next_token (&p, &length)) != 0)
180 if (*p != '\0')
181 *p++ = '\0';
182 name = xstrdup (name);
183 if (read_makefile (name,
184 RM_NO_DEFAULT_GOAL|RM_INCLUDED|RM_DONTCARE) < 2)
185 free (name);
188 free (value);
191 /* Read makefiles specified with -f switches. */
193 if (makefiles != 0)
194 while (*makefiles != 0)
196 struct dep *tail = read_makefiles;
197 register struct dep *d;
199 if (! read_makefile (*makefiles, 0))
200 perror_with_name ("", *makefiles);
202 /* Find the right element of read_makefiles. */
203 d = read_makefiles;
204 while (d->next != tail)
205 d = d->next;
207 /* Use the storage read_makefile allocates. */
208 *makefiles = dep_name (d);
209 ++num_makefiles;
210 ++makefiles;
213 /* If there were no -f switches, try the default names. */
215 if (num_makefiles == 0)
217 static char *default_makefiles[] =
218 #ifdef VMS
219 /* all lower case since readdir() (the vms version) 'lowercasifies' */
220 { "makefile.vms", "gnumakefile.", "makefile.", 0 };
221 #else
222 #ifdef _AMIGA
223 { "GNUmakefile", "Makefile", "SMakefile", 0 };
224 #else /* !Amiga && !VMS */
225 { "GNUmakefile", "makefile", "Makefile", 0 };
226 #endif /* AMIGA */
227 #endif /* VMS */
228 register char **p = default_makefiles;
229 while (*p != 0 && !file_exists_p (*p))
230 ++p;
232 if (*p != 0)
234 if (! read_makefile (*p, 0))
235 perror_with_name ("", *p);
237 else
239 /* No default makefile was found. Add the default makefiles to the
240 `read_makefiles' chain so they will be updated if possible. */
241 struct dep *tail = read_makefiles;
242 /* Add them to the tail, after any MAKEFILES variable makefiles. */
243 while (tail != 0 && tail->next != 0)
244 tail = tail->next;
245 for (p = default_makefiles; *p != 0; ++p)
247 struct dep *d = (struct dep *) xmalloc (sizeof (struct dep));
248 d->name = 0;
249 d->file = enter_file (*p);
250 d->file->dontcare = 1;
251 /* Tell update_goal_chain to bail out as soon as this file is
252 made, and main not to die if we can't make this file. */
253 d->changed = RM_DONTCARE;
254 if (tail == 0)
255 read_makefiles = d;
256 else
257 tail->next = d;
258 tail = d;
260 if (tail != 0)
261 tail->next = 0;
265 return read_makefiles;
268 /* Read file FILENAME as a makefile and add its contents to the data base.
270 FLAGS contains bits as above.
272 FILENAME is added to the `read_makefiles' chain.
274 Returns 0 if a file was not found or not read.
275 Returns 1 if FILENAME was found and read.
276 Returns 2 if FILENAME was read, and we kept a reference (don't free it). */
278 static int
279 read_makefile (filename, flags)
280 char *filename;
281 int flags;
283 static char *collapsed = 0;
284 static unsigned int collapsed_length = 0;
285 register FILE *infile;
286 struct linebuffer lb;
287 unsigned int commands_len = 200;
288 char *commands;
289 unsigned int commands_idx = 0;
290 unsigned int cmds_started, tgts_started;
291 char *p;
292 char *p2;
293 int len, reading_target;
294 int ignoring = 0, in_ignored_define = 0;
295 int no_targets = 0; /* Set when reading a rule without targets. */
296 struct floc fileinfo;
297 char *passed_filename = filename;
299 struct nameseq *filenames = 0;
300 struct dep *deps;
301 unsigned int nlines = 0;
302 int two_colon = 0;
303 char *pattern = 0, *pattern_percent;
305 int makefile_errno;
306 #if defined (WINDOWS32) || defined (__MSDOS__)
307 int check_again;
308 #endif
310 #define record_waiting_files() \
311 do \
313 if (filenames != 0) \
315 struct floc fi; \
316 fi.filenm = fileinfo.filenm; \
317 fi.lineno = tgts_started; \
318 record_files (filenames, pattern, pattern_percent, deps, \
319 cmds_started, commands, commands_idx, two_colon, \
320 &fi, !(flags & RM_NO_DEFAULT_GOAL)); \
322 filenames = 0; \
323 commands_idx = 0; \
324 if (pattern) { free(pattern); pattern = 0; } \
325 } while (0)
327 fileinfo.filenm = filename;
328 fileinfo.lineno = 1;
330 pattern_percent = 0;
331 cmds_started = tgts_started = fileinfo.lineno;
333 if (ISDB (DB_VERBOSE))
335 printf (_("Reading makefile `%s'"), fileinfo.filenm);
336 if (flags & RM_NO_DEFAULT_GOAL)
337 printf (_(" (no default goal)"));
338 if (flags & RM_INCLUDED)
339 printf (_(" (search path)"));
340 if (flags & RM_DONTCARE)
341 printf (_(" (don't care)"));
342 if (flags & RM_NO_TILDE)
343 printf (_(" (no ~ expansion)"));
344 puts ("...");
347 /* First, get a stream to read. */
349 /* Expand ~ in FILENAME unless it came from `include',
350 in which case it was already done. */
351 if (!(flags & RM_NO_TILDE) && filename[0] == '~')
353 char *expanded = tilde_expand (filename);
354 if (expanded != 0)
355 filename = expanded;
358 infile = fopen (filename, "r");
359 /* Save the error code so we print the right message later. */
360 makefile_errno = errno;
362 /* If the makefile wasn't found and it's either a makefile from
363 the `MAKEFILES' variable or an included makefile,
364 search the included makefile search path for this makefile. */
365 if (infile == 0 && (flags & RM_INCLUDED) && *filename != '/')
367 register unsigned int i;
368 for (i = 0; include_directories[i] != 0; ++i)
370 char *name = concat (include_directories[i], "/", filename);
371 infile = fopen (name, "r");
372 if (infile == 0)
373 free (name);
374 else
376 filename = name;
377 break;
382 /* Add FILENAME to the chain of read makefiles. */
383 deps = (struct dep *) xmalloc (sizeof (struct dep));
384 deps->next = read_makefiles;
385 read_makefiles = deps;
386 deps->name = 0;
387 deps->file = lookup_file (filename);
388 if (deps->file == 0)
390 deps->file = enter_file (xstrdup (filename));
391 if (flags & RM_DONTCARE)
392 deps->file->dontcare = 1;
394 if (filename != passed_filename)
395 free (filename);
396 filename = deps->file->name;
397 deps->changed = flags;
398 deps = 0;
400 /* If the makefile can't be found at all, give up entirely. */
402 if (infile == 0)
404 /* If we did some searching, errno has the error from the last
405 attempt, rather from FILENAME itself. Restore it in case the
406 caller wants to use it in a message. */
407 errno = makefile_errno;
408 return 0;
411 reading_file = &fileinfo;
413 /* Loop over lines in the file.
414 The strategy is to accumulate target names in FILENAMES, dependencies
415 in DEPS and commands in COMMANDS. These are used to define a rule
416 when the start of the next rule (or eof) is encountered. */
418 initbuffer (&lb);
419 commands = xmalloc (200);
421 while (!feof (infile))
423 fileinfo.lineno += nlines;
424 nlines = readline (&lb, infile, &fileinfo);
426 /* Check for a shell command line first.
427 If it is not one, we can stop treating tab specially. */
428 if (lb.buffer[0] == '\t')
430 /* This line is a probably shell command. */
431 unsigned int len;
433 if (no_targets)
434 /* Ignore the commands in a rule with no targets. */
435 continue;
437 /* If there is no preceding rule line, don't treat this line
438 as a command, even though it begins with a tab character.
439 SunOS 4 make appears to behave this way. */
441 if (filenames != 0)
443 if (ignoring)
444 /* Yep, this is a shell command, and we don't care. */
445 continue;
447 /* Append this command line to the line being accumulated. */
448 p = lb.buffer;
449 if (commands_idx == 0)
450 cmds_started = fileinfo.lineno;
451 len = strlen (p);
452 if (len + 1 + commands_idx > commands_len)
454 commands_len = (len + 1 + commands_idx) * 2;
455 commands = (char *) xrealloc (commands, commands_len);
457 bcopy (p, &commands[commands_idx], len);
458 commands_idx += len;
459 commands[commands_idx++] = '\n';
461 continue;
465 /* This line is not a shell command line. Don't worry about tabs. */
467 if (collapsed_length < lb.size)
469 collapsed_length = lb.size;
470 if (collapsed != 0)
471 free (collapsed);
472 collapsed = (char *) xmalloc (collapsed_length);
474 strcpy (collapsed, lb.buffer);
475 /* Collapse continuation lines. */
476 collapse_continuations (collapsed);
477 remove_comments (collapsed);
479 /* Compare a word, both length and contents. */
480 #define word1eq(s, l) (len == l && strneq (s, p, l))
481 p = collapsed;
482 while (isspace ((unsigned char)*p))
483 ++p;
484 if (*p == '\0')
485 /* This line is completely empty. */
486 continue;
488 /* Find the end of the first token. Note we don't need to worry about
489 * ":" here since we compare tokens by length (so "export" will never
490 * be equal to "export:").
492 for (p2 = p+1; *p2 != '\0' && !isspace ((unsigned char)*p2); ++p2)
494 len = p2 - p;
496 /* Find the start of the second token. If it's a `:' remember it,
497 since it can't be a preprocessor token--this allows targets named
498 `ifdef', `export', etc. */
499 reading_target = 0;
500 while (isspace ((unsigned char)*p2))
501 ++p2;
502 if (*p2 == '\0')
503 p2 = NULL;
504 else if (p2[0] == ':' && p2[1] == '\0')
506 reading_target = 1;
507 goto skip_conditionals;
510 /* We must first check for conditional and `define' directives before
511 ignoring anything, since they control what we will do with
512 following lines. */
514 if (!in_ignored_define
515 && (word1eq ("ifdef", 5) || word1eq ("ifndef", 6)
516 || word1eq ("ifeq", 4) || word1eq ("ifneq", 5)
517 || word1eq ("else", 4) || word1eq ("endif", 5)))
519 int i = conditional_line (p, &fileinfo);
520 if (i >= 0)
521 ignoring = i;
522 else
523 fatal (&fileinfo, _("invalid syntax in conditional"));
524 continue;
527 if (word1eq ("endef", 5))
529 if (in_ignored_define)
530 in_ignored_define = 0;
531 else
532 fatal (&fileinfo, _("extraneous `endef'"));
533 continue;
536 if (word1eq ("define", 6))
538 if (ignoring)
539 in_ignored_define = 1;
540 else
542 p2 = next_token (p + 6);
543 if (*p2 == '\0')
544 fatal (&fileinfo, _("empty variable name"));
546 /* Let the variable name be the whole rest of the line,
547 with trailing blanks stripped (comments have already been
548 removed), so it could be a complex variable/function
549 reference that might contain blanks. */
550 p = strchr (p2, '\0');
551 while (isblank ((unsigned char)p[-1]))
552 --p;
553 do_define (p2, p - p2, o_file, infile, &fileinfo);
555 continue;
558 if (word1eq ("override", 8))
560 p2 = next_token (p + 8);
561 if (*p2 == '\0')
562 error (&fileinfo, _("empty `override' directive"));
563 if (strneq (p2, "define", 6)
564 && (isblank ((unsigned char)p2[6]) || p2[6] == '\0'))
566 if (ignoring)
567 in_ignored_define = 1;
568 else
570 p2 = next_token (p2 + 6);
571 if (*p2 == '\0')
572 fatal (&fileinfo, _("empty variable name"));
574 /* Let the variable name be the whole rest of the line,
575 with trailing blanks stripped (comments have already been
576 removed), so it could be a complex variable/function
577 reference that might contain blanks. */
578 p = strchr (p2, '\0');
579 while (isblank ((unsigned char)p[-1]))
580 --p;
581 do_define (p2, p - p2, o_override, infile, &fileinfo);
584 else if (!ignoring
585 && !try_variable_definition (&fileinfo, p2, o_override, 0))
586 error (&fileinfo, _("invalid `override' directive"));
588 continue;
590 skip_conditionals:
592 if (ignoring)
593 /* Ignore the line. We continue here so conditionals
594 can appear in the middle of a rule. */
595 continue;
597 if (!reading_target && word1eq ("export", 6))
599 struct variable *v;
600 p2 = next_token (p + 6);
601 if (*p2 == '\0')
602 export_all_variables = 1;
603 v = try_variable_definition (&fileinfo, p2, o_file, 0);
604 if (v != 0)
605 v->export = v_export;
606 else
608 unsigned int len;
609 for (p = find_next_token (&p2, &len); p != 0;
610 p = find_next_token (&p2, &len))
612 v = lookup_variable (p, len);
613 if (v == 0)
614 v = define_variable_loc (p, len, "", o_file, 0, &fileinfo);
615 v->export = v_export;
619 else if (!reading_target && word1eq ("unexport", 8))
621 unsigned int len;
622 struct variable *v;
623 p2 = next_token (p + 8);
624 if (*p2 == '\0')
625 export_all_variables = 0;
626 for (p = find_next_token (&p2, &len); p != 0;
627 p = find_next_token (&p2, &len))
629 v = lookup_variable (p, len);
630 if (v == 0)
631 v = define_variable_loc (p, len, "", o_file, 0, &fileinfo);
632 v->export = v_noexport;
635 else if (word1eq ("vpath", 5))
637 char *pattern;
638 unsigned int len;
639 p2 = variable_expand (p + 5);
640 p = find_next_token (&p2, &len);
641 if (p != 0)
643 pattern = savestring (p, len);
644 p = find_next_token (&p2, &len);
645 /* No searchpath means remove all previous
646 selective VPATH's with the same pattern. */
648 else
649 /* No pattern means remove all previous selective VPATH's. */
650 pattern = 0;
651 construct_vpath_list (pattern, p);
652 if (pattern != 0)
653 free (pattern);
655 else if (word1eq ("include", 7) || word1eq ("-include", 8)
656 || word1eq ("sinclude", 8))
658 /* We have found an `include' line specifying a nested
659 makefile to be read at this point. */
660 struct conditionals *save, new_conditionals;
661 struct nameseq *files;
662 /* "-include" (vs "include") says no error if the file does not
663 exist. "sinclude" is an alias for this from SGI. */
664 int noerror = p[0] != 'i';
666 p = allocated_variable_expand (next_token (p + (noerror ? 8 : 7)));
667 if (*p == '\0')
669 error (&fileinfo,
670 _("no file name for `%sinclude'"), noerror ? "-" : "");
671 continue;
674 /* Parse the list of file names. */
675 p2 = p;
676 files = multi_glob (parse_file_seq (&p2, '\0',
677 sizeof (struct nameseq),
679 sizeof (struct nameseq));
680 free (p);
682 /* Save the state of conditionals and start
683 the included makefile with a clean slate. */
684 save = conditionals;
685 bzero ((char *) &new_conditionals, sizeof new_conditionals);
686 conditionals = &new_conditionals;
688 /* Record the rules that are waiting so they will determine
689 the default goal before those in the included makefile. */
690 record_waiting_files ();
692 /* Read each included makefile. */
693 while (files != 0)
695 struct nameseq *next = files->next;
696 char *name = files->name;
697 int r;
699 free ((char *)files);
700 files = next;
702 r = read_makefile (name, (RM_INCLUDED | RM_NO_TILDE
703 | (noerror ? RM_DONTCARE : 0)));
704 if (!r)
706 if (!noerror)
707 error (&fileinfo, "%s: %s", name, strerror (errno));
708 free (name);
712 /* Free any space allocated by conditional_line. */
713 if (conditionals->ignoring)
714 free (conditionals->ignoring);
715 if (conditionals->seen_else)
716 free (conditionals->seen_else);
718 /* Restore state. */
719 conditionals = save;
720 reading_file = &fileinfo;
722 #undef word1eq
723 else if (try_variable_definition (&fileinfo, p, o_file, 0))
724 /* This line has been dealt with. */
726 else if (lb.buffer[0] == '\t')
728 p = collapsed; /* Ignore comments. */
729 while (isblank ((unsigned char)*p))
730 ++p;
731 if (*p == '\0')
732 /* The line is completely blank; that is harmless. */
733 continue;
734 /* This line starts with a tab but was not caught above
735 because there was no preceding target, and the line
736 might have been usable as a variable definition.
737 But now it is definitely lossage. */
738 fatal(&fileinfo, _("commands commence before first target"));
740 else
742 /* This line describes some target files. This is complicated by
743 the existence of target-specific variables, because we can't
744 expand the entire line until we know if we have one or not. So
745 we expand the line word by word until we find the first `:',
746 then check to see if it's a target-specific variable.
748 In this algorithm, `lb_next' will point to the beginning of the
749 unexpanded parts of the input buffer, while `p2' points to the
750 parts of the expanded buffer we haven't searched yet. */
752 enum make_word_type wtype;
753 enum variable_origin v_origin;
754 char *cmdleft, *semip, *lb_next;
755 unsigned int len, plen = 0;
756 char *colonp;
758 /* Record the previous rule. */
760 record_waiting_files ();
761 tgts_started = fileinfo.lineno;
763 /* Search the line for an unquoted ; that is not after an
764 unquoted #. */
765 cmdleft = find_char_unquote (lb.buffer, ";#", 0);
766 if (cmdleft != 0 && *cmdleft == '#')
768 /* We found a comment before a semicolon. */
769 *cmdleft = '\0';
770 cmdleft = 0;
772 else if (cmdleft != 0)
773 /* Found one. Cut the line short there before expanding it. */
774 *(cmdleft++) = '\0';
775 semip = cmdleft;
777 collapse_continuations (lb.buffer);
779 /* We can't expand the entire line, since if it's a per-target
780 variable we don't want to expand it. So, walk from the
781 beginning, expanding as we go, and looking for "interesting"
782 chars. The first word is always expandable. */
783 wtype = get_next_mword(lb.buffer, NULL, &lb_next, &len);
784 switch (wtype)
786 case w_eol:
787 if (cmdleft != 0)
788 fatal(&fileinfo, _("missing rule before commands"));
789 /* This line contained something but turned out to be nothing
790 but whitespace (a comment?). */
791 continue;
793 case w_colon:
794 case w_dcolon:
795 /* We accept and ignore rules without targets for
796 compatibility with SunOS 4 make. */
797 no_targets = 1;
798 continue;
800 default:
801 break;
804 p2 = variable_expand_string(NULL, lb_next, len);
805 while (1)
807 lb_next += len;
808 if (cmdleft == 0)
810 /* Look for a semicolon in the expanded line. */
811 cmdleft = find_char_unquote (p2, ";", 0);
813 if (cmdleft != 0)
815 unsigned long p2_off = p2 - variable_buffer;
816 unsigned long cmd_off = cmdleft - variable_buffer;
817 char *pend = p2 + strlen(p2);
819 /* Append any remnants of lb, then cut the line short
820 at the semicolon. */
821 *cmdleft = '\0';
823 /* One school of thought says that you shouldn't expand
824 here, but merely copy, since now you're beyond a ";"
825 and into a command script. However, the old parser
826 expanded the whole line, so we continue that for
827 backwards-compatiblity. Also, it wouldn't be
828 entirely consistent, since we do an unconditional
829 expand below once we know we don't have a
830 target-specific variable. */
831 (void)variable_expand_string(pend, lb_next, (long)-1);
832 lb_next += strlen(lb_next);
833 p2 = variable_buffer + p2_off;
834 cmdleft = variable_buffer + cmd_off + 1;
838 colonp = find_char_unquote(p2, ":", 0);
839 #if defined(__MSDOS__) || defined(WINDOWS32)
840 /* The drive spec brain-damage strikes again... */
841 /* Note that the only separators of targets in this context
842 are whitespace and a left paren. If others are possible,
843 they should be added to the string in the call to index. */
844 while (colonp && (colonp[1] == '/' || colonp[1] == '\\') &&
845 colonp > p2 && isalpha ((unsigned char)colonp[-1]) &&
846 (colonp == p2 + 1 || strchr (" \t(", colonp[-2]) != 0))
847 colonp = find_char_unquote(colonp + 1, ":", 0);
848 #endif
849 if (colonp != 0)
850 break;
852 wtype = get_next_mword(lb_next, NULL, &lb_next, &len);
853 if (wtype == w_eol)
854 break;
856 p2 += strlen(p2);
857 *(p2++) = ' ';
858 p2 = variable_expand_string(p2, lb_next, len);
859 /* We don't need to worry about cmdleft here, because if it was
860 found in the variable_buffer the entire buffer has already
861 been expanded... we'll never get here. */
864 p2 = next_token (variable_buffer);
866 /* If the word we're looking at is EOL, see if there's _anything_
867 on the line. If not, a variable expanded to nothing, so ignore
868 it. If so, we can't parse this line so punt. */
869 if (wtype == w_eol)
871 if (*p2 != '\0')
872 /* There's no need to be ivory-tower about this: check for
873 one of the most common bugs found in makefiles... */
874 fatal (&fileinfo, _("missing separator%s"),
875 !strneq(lb.buffer, " ", 8) ? ""
876 : _(" (did you mean TAB instead of 8 spaces?)"));
877 continue;
880 /* Make the colon the end-of-string so we know where to stop
881 looking for targets. */
882 *colonp = '\0';
883 filenames = multi_glob (parse_file_seq (&p2, '\0',
884 sizeof (struct nameseq),
886 sizeof (struct nameseq));
887 *p2 = ':';
889 if (!filenames)
891 /* We accept and ignore rules without targets for
892 compatibility with SunOS 4 make. */
893 no_targets = 1;
894 continue;
896 /* This should never be possible; we handled it above. */
897 assert (*p2 != '\0');
898 ++p2;
900 /* Is this a one-colon or two-colon entry? */
901 two_colon = *p2 == ':';
902 if (two_colon)
903 p2++;
905 /* Test to see if it's a target-specific variable. Copy the rest
906 of the buffer over, possibly temporarily (we'll expand it later
907 if it's not a target-specific variable). PLEN saves the length
908 of the unparsed section of p2, for later. */
909 if (*lb_next != '\0')
911 unsigned int l = p2 - variable_buffer;
912 plen = strlen (p2);
913 (void) variable_buffer_output (p2+plen,
914 lb_next, strlen (lb_next)+1);
915 p2 = variable_buffer + l;
918 /* See if it's an "override" keyword; if so see if what comes after
919 it looks like a variable definition. */
921 wtype = get_next_mword (p2, NULL, &p, &len);
923 v_origin = o_file;
924 if (wtype == w_static && (len == (sizeof ("override")-1)
925 && strneq (p, "override", len)))
927 v_origin = o_override;
928 wtype = get_next_mword (p+len, NULL, &p, &len);
931 if (wtype != w_eol)
932 wtype = get_next_mword (p+len, NULL, NULL, NULL);
934 if (wtype == w_varassign)
936 /* If there was a semicolon found, add it back, plus anything
937 after it. */
938 if (semip)
940 *(--semip) = ';';
941 variable_buffer_output (p2 + strlen (p2),
942 semip, strlen (semip)+1);
944 record_target_var (filenames, p, two_colon, v_origin, &fileinfo);
945 filenames = 0;
946 continue;
949 /* This is a normal target, _not_ a target-specific variable.
950 Unquote any = in the dependency list. */
951 find_char_unquote (lb_next, "=", 0);
953 /* We have some targets, so don't ignore the following commands. */
954 no_targets = 0;
956 /* Expand the dependencies, etc. */
957 if (*lb_next != '\0')
959 unsigned int l = p2 - variable_buffer;
960 (void) variable_expand_string (p2 + plen, lb_next, (long)-1);
961 p2 = variable_buffer + l;
963 /* Look for a semicolon in the expanded line. */
964 if (cmdleft == 0)
966 cmdleft = find_char_unquote (p2, ";", 0);
967 if (cmdleft != 0)
968 *(cmdleft++) = '\0';
972 /* Is this a static pattern rule: `target: %targ: %dep; ...'? */
973 p = strchr (p2, ':');
974 while (p != 0 && p[-1] == '\\')
976 register char *q = &p[-1];
977 register int backslash = 0;
978 while (*q-- == '\\')
979 backslash = !backslash;
980 if (backslash)
981 p = strchr (p + 1, ':');
982 else
983 break;
985 #ifdef _AMIGA
986 /* Here, the situation is quite complicated. Let's have a look
987 at a couple of targets:
989 install: dev:make
991 dev:make: make
993 dev:make:: xyz
995 The rule is that it's only a target, if there are TWO :'s
996 OR a space around the :.
998 if (p && !(isspace ((unsigned char)p[1]) || !p[1]
999 || isspace ((unsigned char)p[-1])))
1000 p = 0;
1001 #endif
1002 #if defined (WINDOWS32) || defined (__MSDOS__)
1003 do {
1004 check_again = 0;
1005 /* For MSDOS and WINDOWS32, skip a "C:\..." or a "C:/..." */
1006 if (p != 0 && (p[1] == '\\' || p[1] == '/') &&
1007 isalpha ((unsigned char)p[-1]) &&
1008 (p == p2 + 1 || strchr (" \t:(", p[-2]) != 0)) {
1009 p = strchr (p + 1, ':');
1010 check_again = 1;
1012 } while (check_again);
1013 #endif
1014 if (p != 0)
1016 struct nameseq *target;
1017 target = parse_file_seq (&p2, ':', sizeof (struct nameseq), 1);
1018 ++p2;
1019 if (target == 0)
1020 fatal (&fileinfo, _("missing target pattern"));
1021 else if (target->next != 0)
1022 fatal (&fileinfo, _("multiple target patterns"));
1023 pattern = target->name;
1024 pattern_percent = find_percent (pattern);
1025 if (pattern_percent == 0)
1026 fatal (&fileinfo, _("target pattern contains no `%%'"));
1027 free((char *)target);
1029 else
1030 pattern = 0;
1032 /* Parse the dependencies. */
1033 deps = (struct dep *)
1034 multi_glob (parse_file_seq (&p2, '\0', sizeof (struct dep), 1),
1035 sizeof (struct dep));
1037 commands_idx = 0;
1038 if (cmdleft != 0)
1040 /* Semicolon means rest of line is a command. */
1041 unsigned int len = strlen (cmdleft);
1043 cmds_started = fileinfo.lineno;
1045 /* Add this command line to the buffer. */
1046 if (len + 2 > commands_len)
1048 commands_len = (len + 2) * 2;
1049 commands = (char *) xrealloc (commands, commands_len);
1051 bcopy (cmdleft, commands, len);
1052 commands_idx += len;
1053 commands[commands_idx++] = '\n';
1056 continue;
1059 /* We get here except in the case that we just read a rule line.
1060 Record now the last rule we read, so following spurious
1061 commands are properly diagnosed. */
1062 record_waiting_files ();
1063 no_targets = 0;
1066 if (conditionals->if_cmds)
1067 fatal (&fileinfo, _("missing `endif'"));
1069 /* At eof, record the last rule. */
1070 record_waiting_files ();
1072 freebuffer (&lb);
1073 free ((char *) commands);
1074 fclose (infile);
1076 reading_file = 0;
1078 return 1;
1081 /* Execute a `define' directive.
1082 The first line has already been read, and NAME is the name of
1083 the variable to be defined. The following lines remain to be read.
1084 LINENO, INFILE and FILENAME refer to the makefile being read.
1085 The value returned is LINENO, updated for lines read here. */
1087 static void
1088 do_define (name, namelen, origin, infile, flocp)
1089 char *name;
1090 unsigned int namelen;
1091 enum variable_origin origin;
1092 FILE *infile;
1093 struct floc *flocp;
1095 struct linebuffer lb;
1096 unsigned int nlines = 0;
1097 unsigned int length = 100;
1098 char *definition = (char *) xmalloc (100);
1099 register unsigned int idx = 0;
1100 register char *p;
1102 /* Expand the variable name. */
1103 char *var = (char *) alloca (namelen + 1);
1104 bcopy (name, var, namelen);
1105 var[namelen] = '\0';
1106 var = variable_expand (var);
1108 initbuffer (&lb);
1109 while (!feof (infile))
1111 unsigned int len;
1113 flocp->lineno += nlines;
1114 nlines = readline (&lb, infile, flocp);
1116 collapse_continuations (lb.buffer);
1118 p = next_token (lb.buffer);
1119 len = strlen (p);
1120 if ((len == 5 || (len > 5 && isblank ((unsigned char)p[5])))
1121 && strneq (p, "endef", 5))
1123 p += 5;
1124 remove_comments (p);
1125 if (*next_token (p) != '\0')
1126 error (flocp, _("Extraneous text after `endef' directive"));
1127 /* Define the variable. */
1128 if (idx == 0)
1129 definition[0] = '\0';
1130 else
1131 definition[idx - 1] = '\0';
1132 (void) define_variable_loc (var, strlen (var), definition, origin,
1133 1, flocp);
1134 free (definition);
1135 freebuffer (&lb);
1136 return;
1138 else
1140 len = strlen (lb.buffer);
1141 /* Increase the buffer size if necessary. */
1142 if (idx + len + 1 > length)
1144 length = (idx + len) * 2;
1145 definition = (char *) xrealloc (definition, length + 1);
1148 bcopy (lb.buffer, &definition[idx], len);
1149 idx += len;
1150 /* Separate lines with a newline. */
1151 definition[idx++] = '\n';
1155 /* No `endef'!! */
1156 fatal (flocp, _("missing `endef', unterminated `define'"));
1158 /* NOTREACHED */
1159 return;
1162 /* Interpret conditional commands "ifdef", "ifndef", "ifeq",
1163 "ifneq", "else" and "endif".
1164 LINE is the input line, with the command as its first word.
1166 FILENAME and LINENO are the filename and line number in the
1167 current makefile. They are used for error messages.
1169 Value is -1 if the line is invalid,
1170 0 if following text should be interpreted,
1171 1 if following text should be ignored. */
1173 static int
1174 conditional_line (line, flocp)
1175 char *line;
1176 const struct floc *flocp;
1178 int notdef;
1179 char *cmdname;
1180 register unsigned int i;
1182 if (*line == 'i')
1184 /* It's an "if..." command. */
1185 notdef = line[2] == 'n';
1186 if (notdef)
1188 cmdname = line[3] == 'd' ? "ifndef" : "ifneq";
1189 line += cmdname[3] == 'd' ? 7 : 6;
1191 else
1193 cmdname = line[2] == 'd' ? "ifdef" : "ifeq";
1194 line += cmdname[2] == 'd' ? 6 : 5;
1197 else
1199 /* It's an "else" or "endif" command. */
1200 notdef = line[1] == 'n';
1201 cmdname = notdef ? "endif" : "else";
1202 line += notdef ? 5 : 4;
1205 line = next_token (line);
1207 if (*cmdname == 'e')
1209 if (*line != '\0')
1210 error (flocp, _("Extraneous text after `%s' directive"), cmdname);
1211 /* "Else" or "endif". */
1212 if (conditionals->if_cmds == 0)
1213 fatal (flocp, _("extraneous `%s'"), cmdname);
1214 /* NOTDEF indicates an `endif' command. */
1215 if (notdef)
1216 --conditionals->if_cmds;
1217 else if (conditionals->seen_else[conditionals->if_cmds - 1])
1218 fatal (flocp, _("only one `else' per conditional"));
1219 else
1221 /* Toggle the state of ignorance. */
1222 conditionals->ignoring[conditionals->if_cmds - 1]
1223 = !conditionals->ignoring[conditionals->if_cmds - 1];
1224 /* Record that we have seen an `else' in this conditional.
1225 A second `else' will be erroneous. */
1226 conditionals->seen_else[conditionals->if_cmds - 1] = 1;
1228 for (i = 0; i < conditionals->if_cmds; ++i)
1229 if (conditionals->ignoring[i])
1230 return 1;
1231 return 0;
1234 if (conditionals->allocated == 0)
1236 conditionals->allocated = 5;
1237 conditionals->ignoring = (char *) xmalloc (conditionals->allocated);
1238 conditionals->seen_else = (char *) xmalloc (conditionals->allocated);
1241 ++conditionals->if_cmds;
1242 if (conditionals->if_cmds > conditionals->allocated)
1244 conditionals->allocated += 5;
1245 conditionals->ignoring = (char *)
1246 xrealloc (conditionals->ignoring, conditionals->allocated);
1247 conditionals->seen_else = (char *)
1248 xrealloc (conditionals->seen_else, conditionals->allocated);
1251 /* Record that we have seen an `if...' but no `else' so far. */
1252 conditionals->seen_else[conditionals->if_cmds - 1] = 0;
1254 /* Search through the stack to see if we're already ignoring. */
1255 for (i = 0; i < conditionals->if_cmds - 1; ++i)
1256 if (conditionals->ignoring[i])
1258 /* We are already ignoring, so just push a level
1259 to match the next "else" or "endif", and keep ignoring.
1260 We don't want to expand variables in the condition. */
1261 conditionals->ignoring[conditionals->if_cmds - 1] = 1;
1262 return 1;
1265 if (cmdname[notdef ? 3 : 2] == 'd')
1267 /* "Ifdef" or "ifndef". */
1268 struct variable *v;
1269 register char *p = end_of_token (line);
1270 i = p - line;
1271 p = next_token (p);
1272 if (*p != '\0')
1273 return -1;
1274 v = lookup_variable (line, i);
1275 conditionals->ignoring[conditionals->if_cmds - 1]
1276 = (v != 0 && *v->value != '\0') == notdef;
1278 else
1280 /* "Ifeq" or "ifneq". */
1281 char *s1, *s2;
1282 unsigned int len;
1283 char termin = *line == '(' ? ',' : *line;
1285 if (termin != ',' && termin != '"' && termin != '\'')
1286 return -1;
1288 s1 = ++line;
1289 /* Find the end of the first string. */
1290 if (termin == ',')
1292 register int count = 0;
1293 for (; *line != '\0'; ++line)
1294 if (*line == '(')
1295 ++count;
1296 else if (*line == ')')
1297 --count;
1298 else if (*line == ',' && count <= 0)
1299 break;
1301 else
1302 while (*line != '\0' && *line != termin)
1303 ++line;
1305 if (*line == '\0')
1306 return -1;
1308 if (termin == ',')
1310 /* Strip blanks after the first string. */
1311 char *p = line++;
1312 while (isblank ((unsigned char)p[-1]))
1313 --p;
1314 *p = '\0';
1316 else
1317 *line++ = '\0';
1319 s2 = variable_expand (s1);
1320 /* We must allocate a new copy of the expanded string because
1321 variable_expand re-uses the same buffer. */
1322 len = strlen (s2);
1323 s1 = (char *) alloca (len + 1);
1324 bcopy (s2, s1, len + 1);
1326 if (termin != ',')
1327 /* Find the start of the second string. */
1328 line = next_token (line);
1330 termin = termin == ',' ? ')' : *line;
1331 if (termin != ')' && termin != '"' && termin != '\'')
1332 return -1;
1334 /* Find the end of the second string. */
1335 if (termin == ')')
1337 register int count = 0;
1338 s2 = next_token (line);
1339 for (line = s2; *line != '\0'; ++line)
1341 if (*line == '(')
1342 ++count;
1343 else if (*line == ')')
1345 if (count <= 0)
1346 break;
1347 else
1348 --count;
1352 else
1354 ++line;
1355 s2 = line;
1356 while (*line != '\0' && *line != termin)
1357 ++line;
1360 if (*line == '\0')
1361 return -1;
1363 *line = '\0';
1364 line = next_token (++line);
1365 if (*line != '\0')
1366 error (flocp, _("Extraneous text after `%s' directive"), cmdname);
1368 s2 = variable_expand (s2);
1369 conditionals->ignoring[conditionals->if_cmds - 1]
1370 = streq (s1, s2) == notdef;
1373 /* Search through the stack to see if we're ignoring. */
1374 for (i = 0; i < conditionals->if_cmds; ++i)
1375 if (conditionals->ignoring[i])
1376 return 1;
1377 return 0;
1380 /* Remove duplicate dependencies in CHAIN. */
1382 void
1383 uniquize_deps (chain)
1384 struct dep *chain;
1386 register struct dep *d;
1388 /* Make sure that no dependencies are repeated. This does not
1389 really matter for the purpose of updating targets, but it
1390 might make some names be listed twice for $^ and $?. */
1392 for (d = chain; d != 0; d = d->next)
1394 struct dep *last, *next;
1396 last = d;
1397 next = d->next;
1398 while (next != 0)
1399 if (streq (dep_name (d), dep_name (next)))
1401 struct dep *n = next->next;
1402 last->next = n;
1403 if (next->name != 0 && next->name != d->name)
1404 free (next->name);
1405 if (next != d)
1406 free ((char *) next);
1407 next = n;
1409 else
1411 last = next;
1412 next = next->next;
1417 /* Record target-specific variable values for files FILENAMES.
1418 TWO_COLON is nonzero if a double colon was used.
1420 The links of FILENAMES are freed, and so are any names in it
1421 that are not incorporated into other data structures.
1423 If the target is a pattern, add the variable to the pattern-specific
1424 variable value list. */
1426 static void
1427 record_target_var (filenames, defn, two_colon, origin, flocp)
1428 struct nameseq *filenames;
1429 char *defn;
1430 int two_colon;
1431 enum variable_origin origin;
1432 const struct floc *flocp;
1434 struct nameseq *nextf;
1435 struct variable_set_list *global;
1437 global = current_variable_set_list;
1439 /* If the variable is an append version, store that but treat it as a
1440 normal recursive variable. */
1442 for (; filenames != 0; filenames = nextf)
1444 struct variable *v;
1445 register char *name = filenames->name;
1446 struct variable_set_list *vlist;
1447 char *fname;
1448 char *percent;
1450 nextf = filenames->next;
1451 free ((char *) filenames);
1453 /* If it's a pattern target, then add it to the pattern-specific
1454 variable list. */
1455 percent = find_percent (name);
1456 if (percent)
1458 struct pattern_var *p;
1460 /* Get a reference for this pattern-specific variable struct. */
1461 p = create_pattern_var(name, percent);
1462 vlist = p->vars;
1463 fname = p->target;
1465 else
1467 struct file *f;
1469 /* Get a file reference for this file, and initialize it. */
1470 f = enter_file (name);
1471 initialize_file_variables (f, 1);
1472 vlist = f->variables;
1473 fname = f->name;
1476 /* Make the new variable context current and define the variable. */
1477 current_variable_set_list = vlist;
1478 v = try_variable_definition (flocp, defn, origin, 1);
1479 if (!v)
1480 error (flocp, _("Malformed per-target variable definition"));
1481 v->per_target = 1;
1483 /* If it's not an override, check to see if there was a command-line
1484 setting. If so, reset the value. */
1485 if (origin != o_override)
1487 struct variable *gv;
1488 int len = strlen(v->name);
1490 current_variable_set_list = global;
1491 gv = lookup_variable (v->name, len);
1492 if (gv && (gv->origin == o_env_override || gv->origin == o_command))
1494 v = define_variable_in_set (v->name, len, gv->value, gv->origin,
1495 gv->recursive, vlist->set, flocp);
1496 v->append = 0;
1500 /* Free name if not needed further. */
1501 if (name != fname && (name < fname || name > fname + strlen (fname)))
1502 free (name);
1505 current_variable_set_list = global;
1508 /* Record a description line for files FILENAMES,
1509 with dependencies DEPS, commands to execute described
1510 by COMMANDS and COMMANDS_IDX, coming from FILENAME:COMMANDS_STARTED.
1511 TWO_COLON is nonzero if a double colon was used.
1512 If not nil, PATTERN is the `%' pattern to make this
1513 a static pattern rule, and PATTERN_PERCENT is a pointer
1514 to the `%' within it.
1516 The links of FILENAMES are freed, and so are any names in it
1517 that are not incorporated into other data structures. */
1519 static void
1520 record_files (filenames, pattern, pattern_percent, deps, cmds_started,
1521 commands, commands_idx, two_colon, flocp, set_default)
1522 struct nameseq *filenames;
1523 char *pattern, *pattern_percent;
1524 struct dep *deps;
1525 unsigned int cmds_started;
1526 char *commands;
1527 unsigned int commands_idx;
1528 int two_colon;
1529 const struct floc *flocp;
1530 int set_default;
1532 struct nameseq *nextf;
1533 int implicit = 0;
1534 unsigned int max_targets = 0, target_idx = 0;
1535 char **targets = 0, **target_percents = 0;
1536 struct commands *cmds;
1538 if (commands_idx > 0)
1540 cmds = (struct commands *) xmalloc (sizeof (struct commands));
1541 cmds->fileinfo.filenm = flocp->filenm;
1542 cmds->fileinfo.lineno = cmds_started;
1543 cmds->commands = savestring (commands, commands_idx);
1544 cmds->command_lines = 0;
1546 else
1547 cmds = 0;
1549 for (; filenames != 0; filenames = nextf)
1552 register char *name = filenames->name;
1553 register struct file *f;
1554 register struct dep *d;
1555 struct dep *this;
1556 char *implicit_percent;
1558 nextf = filenames->next;
1559 free (filenames);
1561 implicit_percent = find_percent (name);
1562 implicit |= implicit_percent != 0;
1564 if (implicit && pattern != 0)
1565 fatal (flocp, _("mixed implicit and static pattern rules"));
1567 if (implicit && implicit_percent == 0)
1568 fatal (flocp, _("mixed implicit and normal rules"));
1570 if (implicit)
1572 if (targets == 0)
1574 max_targets = 5;
1575 targets = (char **) xmalloc (5 * sizeof (char *));
1576 target_percents = (char **) xmalloc (5 * sizeof (char *));
1577 target_idx = 0;
1579 else if (target_idx == max_targets - 1)
1581 max_targets += 5;
1582 targets = (char **) xrealloc ((char *) targets,
1583 max_targets * sizeof (char *));
1584 target_percents
1585 = (char **) xrealloc ((char *) target_percents,
1586 max_targets * sizeof (char *));
1588 targets[target_idx] = name;
1589 target_percents[target_idx] = implicit_percent;
1590 ++target_idx;
1591 continue;
1594 /* If there are multiple filenames, copy the chain DEPS
1595 for all but the last one. It is not safe for the same deps
1596 to go in more than one place in the data base. */
1597 this = nextf != 0 ? copy_dep_chain (deps) : deps;
1599 if (pattern != 0)
1601 /* If this is an extended static rule:
1602 `targets: target%pattern: dep%pattern; cmds',
1603 translate each dependency pattern into a plain filename
1604 using the target pattern and this target's name. */
1605 if (!pattern_matches (pattern, pattern_percent, name))
1607 /* Give a warning if the rule is meaningless. */
1608 error (flocp,
1609 _("target `%s' doesn't match the target pattern"), name);
1610 this = 0;
1612 else
1614 /* We use patsubst_expand to do the work of translating
1615 the target pattern, the target's name and the dependencies'
1616 patterns into plain dependency names. */
1617 char *buffer = variable_expand ("");
1619 for (d = this; d != 0; d = d->next)
1621 char *o;
1622 char *percent = find_percent (d->name);
1623 if (percent == 0)
1624 continue;
1625 o = patsubst_expand (buffer, name, pattern, d->name,
1626 pattern_percent, percent);
1627 /* If the name expanded to the empty string, that's
1628 illegal. */
1629 if (o == buffer)
1630 fatal (flocp,
1631 _("target `%s' leaves prerequisite pattern empty"),
1632 name);
1633 free (d->name);
1634 d->name = savestring (buffer, o - buffer);
1639 if (!two_colon)
1641 /* Single-colon. Combine these dependencies
1642 with others in file's existing record, if any. */
1643 f = enter_file (name);
1645 if (f->double_colon)
1646 fatal (flocp,
1647 _("target file `%s' has both : and :: entries"), f->name);
1649 /* If CMDS == F->CMDS, this target was listed in this rule
1650 more than once. Just give a warning since this is harmless. */
1651 if (cmds != 0 && cmds == f->cmds)
1652 error (flocp,
1653 _("target `%s' given more than once in the same rule."),
1654 f->name);
1656 /* Check for two single-colon entries both with commands.
1657 Check is_target so that we don't lose on files such as .c.o
1658 whose commands were preinitialized. */
1659 else if (cmds != 0 && f->cmds != 0 && f->is_target)
1661 error (&cmds->fileinfo,
1662 _("warning: overriding commands for target `%s'"),
1663 f->name);
1664 error (&f->cmds->fileinfo,
1665 _("warning: ignoring old commands for target `%s'"),
1666 f->name);
1669 f->is_target = 1;
1671 /* Defining .DEFAULT with no deps or cmds clears it. */
1672 if (f == default_file && this == 0 && cmds == 0)
1673 f->cmds = 0;
1674 if (cmds != 0)
1675 f->cmds = cmds;
1676 /* Defining .SUFFIXES with no dependencies
1677 clears out the list of suffixes. */
1678 if (f == suffix_file && this == 0)
1680 d = f->deps;
1681 while (d != 0)
1683 struct dep *nextd = d->next;
1684 free (d->name);
1685 free ((char *)d);
1686 d = nextd;
1688 f->deps = 0;
1690 else if (f->deps != 0)
1692 /* Add the file's old deps and the new ones in THIS together. */
1694 struct dep *firstdeps, *moredeps;
1695 if (cmds != 0)
1697 /* This is the rule with commands, so put its deps first.
1698 The rationale behind this is that $< expands to the
1699 first dep in the chain, and commands use $< expecting
1700 to get the dep that rule specifies. */
1701 firstdeps = this;
1702 moredeps = f->deps;
1704 else
1706 /* Append the new deps to the old ones. */
1707 firstdeps = f->deps;
1708 moredeps = this;
1711 if (firstdeps == 0)
1712 firstdeps = moredeps;
1713 else
1715 d = firstdeps;
1716 while (d->next != 0)
1717 d = d->next;
1718 d->next = moredeps;
1721 f->deps = firstdeps;
1723 else
1724 f->deps = this;
1726 /* If this is a static pattern rule, set the file's stem to
1727 the part of its name that matched the `%' in the pattern,
1728 so you can use $* in the commands. */
1729 if (pattern != 0)
1731 static char *percent = "%";
1732 char *buffer = variable_expand ("");
1733 char *o = patsubst_expand (buffer, name, pattern, percent,
1734 pattern_percent, percent);
1735 f->stem = savestring (buffer, o - buffer);
1738 else
1740 /* Double-colon. Make a new record
1741 even if the file already has one. */
1742 f = lookup_file (name);
1743 /* Check for both : and :: rules. Check is_target so
1744 we don't lose on default suffix rules or makefiles. */
1745 if (f != 0 && f->is_target && !f->double_colon)
1746 fatal (flocp,
1747 _("target file `%s' has both : and :: entries"), f->name);
1748 f = enter_file (name);
1749 /* If there was an existing entry and it was a double-colon
1750 entry, enter_file will have returned a new one, making it the
1751 prev pointer of the old one, and setting its double_colon
1752 pointer to the first one. */
1753 if (f->double_colon == 0)
1754 /* This is the first entry for this name, so we must
1755 set its double_colon pointer to itself. */
1756 f->double_colon = f;
1757 f->is_target = 1;
1758 f->deps = this;
1759 f->cmds = cmds;
1762 /* Free name if not needed further. */
1763 if (f != 0 && name != f->name
1764 && (name < f->name || name > f->name + strlen (f->name)))
1766 free (name);
1767 name = f->name;
1770 /* See if this is first target seen whose name does
1771 not start with a `.', unless it contains a slash. */
1772 if (default_goal_file == 0 && set_default
1773 && (*name != '.' || strchr (name, '/') != 0
1774 #if defined(__MSDOS__) || defined(WINDOWS32)
1775 || strchr (name, '\\') != 0
1776 #endif
1779 int reject = 0;
1781 /* If this file is a suffix, don't
1782 let it be the default goal file. */
1784 for (d = suffix_file->deps; d != 0; d = d->next)
1786 register struct dep *d2;
1787 if (*dep_name (d) != '.' && streq (name, dep_name (d)))
1789 reject = 1;
1790 break;
1792 for (d2 = suffix_file->deps; d2 != 0; d2 = d2->next)
1794 register unsigned int len = strlen (dep_name (d2));
1795 if (!strneq (name, dep_name (d2), len))
1796 continue;
1797 if (streq (name + len, dep_name (d)))
1799 reject = 1;
1800 break;
1803 if (reject)
1804 break;
1807 if (!reject)
1808 default_goal_file = f;
1812 if (implicit)
1814 targets[target_idx] = 0;
1815 target_percents[target_idx] = 0;
1816 create_pattern_rule (targets, target_percents, two_colon, deps, cmds, 1);
1817 free ((char *) target_percents);
1821 /* Search STRING for an unquoted STOPCHAR or blank (if BLANK is nonzero).
1822 Backslashes quote STOPCHAR, blanks if BLANK is nonzero, and backslash.
1823 Quoting backslashes are removed from STRING by compacting it into
1824 itself. Returns a pointer to the first unquoted STOPCHAR if there is
1825 one, or nil if there are none. */
1827 char *
1828 find_char_unquote (string, stopchars, blank)
1829 char *string;
1830 char *stopchars;
1831 int blank;
1833 unsigned int string_len = 0;
1834 register char *p = string;
1836 while (1)
1838 while (*p != '\0' && strchr (stopchars, *p) == 0
1839 && (!blank || !isblank ((unsigned char)*p)))
1840 ++p;
1841 if (*p == '\0')
1842 break;
1844 if (p > string && p[-1] == '\\')
1846 /* Search for more backslashes. */
1847 register int i = -2;
1848 while (&p[i] >= string && p[i] == '\\')
1849 --i;
1850 ++i;
1851 /* Only compute the length if really needed. */
1852 if (string_len == 0)
1853 string_len = strlen (string);
1854 /* The number of backslashes is now -I.
1855 Copy P over itself to swallow half of them. */
1856 bcopy (&p[i / 2], &p[i], (string_len - (p - string)) - (i / 2) + 1);
1857 p += i / 2;
1858 if (i % 2 == 0)
1859 /* All the backslashes quoted each other; the STOPCHAR was
1860 unquoted. */
1861 return p;
1863 /* The STOPCHAR was quoted by a backslash. Look for another. */
1865 else
1866 /* No backslash in sight. */
1867 return p;
1870 /* Never hit a STOPCHAR or blank (with BLANK nonzero). */
1871 return 0;
1874 /* Search PATTERN for an unquoted %. */
1876 char *
1877 find_percent (pattern)
1878 char *pattern;
1880 return find_char_unquote (pattern, "%", 0);
1883 /* Parse a string into a sequence of filenames represented as a
1884 chain of struct nameseq's in reverse order and return that chain.
1886 The string is passed as STRINGP, the address of a string pointer.
1887 The string pointer is updated to point at the first character
1888 not parsed, which either is a null char or equals STOPCHAR.
1890 SIZE is how big to construct chain elements.
1891 This is useful if we want them actually to be other structures
1892 that have room for additional info.
1894 If STRIP is nonzero, strip `./'s off the beginning. */
1896 struct nameseq *
1897 parse_file_seq (stringp, stopchar, size, strip)
1898 char **stringp;
1899 int stopchar;
1900 unsigned int size;
1901 int strip;
1903 register struct nameseq *new = 0;
1904 register struct nameseq *new1, *lastnew1;
1905 register char *p = *stringp;
1906 char *q;
1907 char *name;
1908 char stopchars[3];
1910 #ifdef VMS
1911 stopchars[0] = ',';
1912 stopchars[1] = stopchar;
1913 stopchars[2] = '\0';
1914 #else
1915 stopchars[0] = stopchar;
1916 stopchars[1] = '\0';
1917 #endif
1919 while (1)
1921 /* Skip whitespace; see if any more names are left. */
1922 p = next_token (p);
1923 if (*p == '\0')
1924 break;
1925 if (*p == stopchar)
1926 break;
1928 /* Yes, find end of next name. */
1929 q = p;
1930 p = find_char_unquote (q, stopchars, 1);
1931 #ifdef VMS
1932 /* convert comma separated list to space separated */
1933 if (p && *p == ',')
1934 *p =' ';
1935 #endif
1936 #ifdef _AMIGA
1937 if (stopchar == ':' && p && *p == ':'
1938 && !(isspace ((unsigned char)p[1]) || !p[1]
1939 || isspace ((unsigned char)p[-1])))
1941 p = find_char_unquote (p+1, stopchars, 1);
1943 #endif
1944 #if defined(WINDOWS32) || defined(__MSDOS__)
1945 /* For WINDOWS32, skip a "C:\..." or a "C:/..." until we find the
1946 first colon which isn't followed by a slash or a backslash.
1947 Note that tokens separated by spaces should be treated as separate
1948 tokens since make doesn't allow path names with spaces */
1949 if (stopchar == ':')
1950 while (p != 0 && !isspace ((unsigned char)*p) &&
1951 (p[1] == '\\' || p[1] == '/') && isalpha ((unsigned char)p[-1]))
1952 p = find_char_unquote (p + 1, stopchars, 1);
1953 #endif
1954 if (p == 0)
1955 p = q + strlen (q);
1957 if (strip)
1958 #ifdef VMS
1959 /* Skip leading `[]'s. */
1960 while (p - q > 2 && q[0] == '[' && q[1] == ']')
1961 #else
1962 /* Skip leading `./'s. */
1963 while (p - q > 2 && q[0] == '.' && q[1] == '/')
1964 #endif
1966 q += 2; /* Skip "./". */
1967 while (q < p && *q == '/')
1968 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
1969 ++q;
1972 /* Extract the filename just found, and skip it. */
1974 if (q == p)
1975 /* ".///" was stripped to "". */
1976 #ifdef VMS
1977 continue;
1978 #else
1979 #ifdef _AMIGA
1980 name = savestring ("", 0);
1981 #else
1982 name = savestring ("./", 2);
1983 #endif
1984 #endif
1985 else
1986 #ifdef VMS
1987 /* VMS filenames can have a ':' in them but they have to be '\'ed but we need
1988 * to remove this '\' before we can use the filename.
1989 * Savestring called because q may be read-only string constant.
1992 char *qbase = xstrdup (q);
1993 char *pbase = qbase + (p-q);
1994 char *q1 = qbase;
1995 char *q2 = q1;
1996 char *p1 = pbase;
1998 while (q1 != pbase)
2000 if (*q1 == '\\' && *(q1+1) == ':')
2002 q1++;
2003 p1--;
2005 *q2++ = *q1++;
2007 name = savestring (qbase, p1 - qbase);
2008 free (qbase);
2010 #else
2011 name = savestring (q, p - q);
2012 #endif
2014 /* Add it to the front of the chain. */
2015 new1 = (struct nameseq *) xmalloc (size);
2016 new1->name = name;
2017 new1->next = new;
2018 new = new1;
2021 #ifndef NO_ARCHIVES
2023 /* Look for multi-word archive references.
2024 They are indicated by a elt ending with an unmatched `)' and
2025 an elt further down the chain (i.e., previous in the file list)
2026 with an unmatched `(' (e.g., "lib(mem"). */
2028 new1 = new;
2029 lastnew1 = 0;
2030 while (new1 != 0)
2031 if (new1->name[0] != '(' /* Don't catch "(%)" and suchlike. */
2032 && new1->name[strlen (new1->name) - 1] == ')'
2033 && strchr (new1->name, '(') == 0)
2035 /* NEW1 ends with a `)' but does not contain a `('.
2036 Look back for an elt with an opening `(' but no closing `)'. */
2038 struct nameseq *n = new1->next, *lastn = new1;
2039 char *paren = 0;
2040 while (n != 0 && (paren = strchr (n->name, '(')) == 0)
2042 lastn = n;
2043 n = n->next;
2045 if (n != 0
2046 /* Ignore something starting with `(', as that cannot actually
2047 be an archive-member reference (and treating it as such
2048 results in an empty file name, which causes much lossage). */
2049 && n->name[0] != '(')
2051 /* N is the first element in the archive group.
2052 Its name looks like "lib(mem" (with no closing `)'). */
2054 char *libname;
2056 /* Copy "lib(" into LIBNAME. */
2057 ++paren;
2058 libname = (char *) alloca (paren - n->name + 1);
2059 bcopy (n->name, libname, paren - n->name);
2060 libname[paren - n->name] = '\0';
2062 if (*paren == '\0')
2064 /* N was just "lib(", part of something like "lib( a b)".
2065 Edit it out of the chain and free its storage. */
2066 lastn->next = n->next;
2067 free (n->name);
2068 free ((char *) n);
2069 /* LASTN->next is the new stopping elt for the loop below. */
2070 n = lastn->next;
2072 else
2074 /* Replace N's name with the full archive reference. */
2075 name = concat (libname, paren, ")");
2076 free (n->name);
2077 n->name = name;
2080 if (new1->name[1] == '\0')
2082 /* NEW1 is just ")", part of something like "lib(a b )".
2083 Omit it from the chain and free its storage. */
2084 if (lastnew1 == 0)
2085 new = new1->next;
2086 else
2087 lastnew1->next = new1->next;
2088 lastn = new1;
2089 new1 = new1->next;
2090 free (lastn->name);
2091 free ((char *) lastn);
2093 else
2095 /* Replace also NEW1->name, which already has closing `)'. */
2096 name = concat (libname, new1->name, "");
2097 free (new1->name);
2098 new1->name = name;
2099 new1 = new1->next;
2102 /* Trace back from NEW1 (the end of the list) until N
2103 (the beginning of the list), rewriting each name
2104 with the full archive reference. */
2106 while (new1 != n)
2108 name = concat (libname, new1->name, ")");
2109 free (new1->name);
2110 new1->name = name;
2111 lastnew1 = new1;
2112 new1 = new1->next;
2115 else
2117 /* No frobnication happening. Just step down the list. */
2118 lastnew1 = new1;
2119 new1 = new1->next;
2122 else
2124 lastnew1 = new1;
2125 new1 = new1->next;
2128 #endif
2130 *stringp = p;
2131 return new;
2134 /* Read a line of text from STREAM into LINEBUFFER.
2135 Combine continuation lines into one line.
2136 Return the number of actual lines read (> 1 if hacked continuation lines).
2139 static unsigned long
2140 readline (linebuffer, stream, flocp)
2141 struct linebuffer *linebuffer;
2142 FILE *stream;
2143 const struct floc *flocp;
2145 char *buffer = linebuffer->buffer;
2146 register char *p = linebuffer->buffer;
2147 register char *end = p + linebuffer->size;
2148 register unsigned int nlines = 0;
2150 *p = '\0';
2152 while (fgets (p, end - p, stream) != 0)
2154 char *p2;
2155 unsigned long len;
2156 int backslash;
2158 len = strlen (p);
2159 if (len == 0)
2161 /* This only happens when the first thing on the line is a '\0'.
2162 It is a pretty hopeless case, but (wonder of wonders) Athena
2163 lossage strikes again! (xmkmf puts NULs in its makefiles.)
2164 There is nothing really to be done; we synthesize a newline so
2165 the following line doesn't appear to be part of this line. */
2166 error (flocp, _("warning: NUL character seen; rest of line ignored"));
2167 p[0] = '\n';
2168 len = 1;
2171 /* Jump past the text we just read. */
2172 p += len;
2174 /* If the last char isn't a newline, the whole line didn't fit into the
2175 buffer. Get some more buffer and try again. */
2176 if (p[-1] != '\n')
2178 unsigned long p_off = p - buffer;
2179 linebuffer->size *= 2;
2180 buffer = (char *) xrealloc (buffer, linebuffer->size);
2181 p = buffer + p_off;
2182 end = buffer + linebuffer->size;
2183 linebuffer->buffer = buffer;
2184 *p = '\0';
2185 continue;
2188 /* We got a newline, so add one to the count of lines. */
2189 ++nlines;
2191 #if !defined(WINDOWS32) && !defined(__MSDOS__)
2192 /* Check to see if the line was really ended with CRLF; if so ignore
2193 the CR. */
2194 if ((p - buffer) > 1 && p[-2] == '\r')
2196 --p;
2197 p[-1] = '\n';
2199 #endif
2201 backslash = 0;
2202 for (p2 = p - 2; p2 >= buffer; --p2)
2204 if (*p2 != '\\')
2205 break;
2206 backslash = !backslash;
2209 if (!backslash)
2211 p[-1] = '\0';
2212 break;
2215 if (end - p <= 1)
2217 /* Enlarge the buffer. */
2218 register unsigned int p_off = p - buffer;
2219 linebuffer->size *= 2;
2220 buffer = (char *) xrealloc (buffer, linebuffer->size);
2221 p = buffer + p_off;
2222 end = buffer + linebuffer->size;
2223 linebuffer->buffer = buffer;
2227 if (ferror (stream))
2228 pfatal_with_name (flocp->filenm);
2230 return nlines;
2233 /* Parse the next "makefile word" from the input buffer, and return info
2234 about it.
2236 A "makefile word" is one of:
2238 w_bogus Should never happen
2239 w_eol End of input
2240 w_static A static word; cannot be expanded
2241 w_variable A word containing one or more variables/functions
2242 w_colon A colon
2243 w_dcolon A double-colon
2244 w_semicolon A semicolon
2245 w_comment A comment character
2246 w_varassign A variable assignment operator (=, :=, +=, or ?=)
2248 Note that this function is only used when reading certain parts of the
2249 makefile. Don't use it where special rules hold sway (RHS of a variable,
2250 in a command list, etc.) */
2252 static enum make_word_type
2253 get_next_mword (buffer, delim, startp, length)
2254 char *buffer;
2255 char *delim;
2256 char **startp;
2257 unsigned int *length;
2259 enum make_word_type wtype = w_bogus;
2260 char *p = buffer, *beg;
2261 char c;
2263 /* Skip any leading whitespace. */
2264 while (isblank ((unsigned char)*p))
2265 ++p;
2267 beg = p;
2268 c = *(p++);
2269 switch (c)
2271 case '\0':
2272 wtype = w_eol;
2273 break;
2275 case '#':
2276 wtype = w_comment;
2277 break;
2279 case ';':
2280 wtype = w_semicolon;
2281 break;
2283 case '=':
2284 wtype = w_varassign;
2285 break;
2287 case ':':
2288 wtype = w_colon;
2289 switch (*p)
2291 case ':':
2292 ++p;
2293 wtype = w_dcolon;
2294 break;
2296 case '=':
2297 ++p;
2298 wtype = w_varassign;
2299 break;
2301 break;
2303 case '+':
2304 case '?':
2305 if (*p == '=')
2307 ++p;
2308 wtype = w_varassign;
2309 break;
2312 default:
2313 if (delim && strchr (delim, c))
2314 wtype = w_static;
2315 break;
2318 /* Did we find something? If so, return now. */
2319 if (wtype != w_bogus)
2320 goto done;
2322 /* This is some non-operator word. A word consists of the longest
2323 string of characters that doesn't contain whitespace, one of [:=#],
2324 or [?+]=, or one of the chars in the DELIM string. */
2326 /* We start out assuming a static word; if we see a variable we'll
2327 adjust our assumptions then. */
2328 wtype = w_static;
2330 /* We already found the first value of "c", above. */
2331 while (1)
2333 char closeparen;
2334 int count;
2336 switch (c)
2338 case '\0':
2339 case ' ':
2340 case '\t':
2341 case '=':
2342 case '#':
2343 goto done_word;
2345 case ':':
2346 #if defined(__MSDOS__) || defined(WINDOWS32)
2347 /* A word CAN include a colon in its drive spec. The drive
2348 spec is allowed either at the beginning of a word, or as part
2349 of the archive member name, like in "libfoo.a(d:/foo/bar.o)". */
2350 if (!(p - beg >= 2
2351 && (*p == '/' || *p == '\\') && isalpha ((unsigned char)p[-2])
2352 && (p - beg == 2 || p[-3] == '(')))
2353 #endif
2354 goto done_word;
2356 case '$':
2357 c = *(p++);
2358 if (c == '$')
2359 break;
2361 /* This is a variable reference, so note that it's expandable.
2362 Then read it to the matching close paren. */
2363 wtype = w_variable;
2365 if (c == '(')
2366 closeparen = ')';
2367 else if (c == '{')
2368 closeparen = '}';
2369 else
2370 /* This is a single-letter variable reference. */
2371 break;
2373 for (count=0; *p != '\0'; ++p)
2375 if (*p == c)
2376 ++count;
2377 else if (*p == closeparen && --count < 0)
2379 ++p;
2380 break;
2383 break;
2385 case '?':
2386 case '+':
2387 if (*p == '=')
2388 goto done_word;
2389 break;
2391 case '\\':
2392 switch (*p)
2394 case ':':
2395 case ';':
2396 case '=':
2397 case '\\':
2398 ++p;
2399 break;
2401 break;
2403 default:
2404 if (delim && strchr (delim, c))
2405 goto done_word;
2406 break;
2409 c = *(p++);
2411 done_word:
2412 --p;
2414 done:
2415 if (startp)
2416 *startp = beg;
2417 if (length)
2418 *length = p - beg;
2419 return wtype;
2422 /* Construct the list of include directories
2423 from the arguments and the default list. */
2425 void
2426 construct_include_path (arg_dirs)
2427 char **arg_dirs;
2429 register unsigned int i;
2430 #ifdef VAXC /* just don't ask ... */
2431 stat_t stbuf;
2432 #else
2433 struct stat stbuf;
2434 #endif
2435 /* Table to hold the dirs. */
2437 register unsigned int defsize = (sizeof (default_include_directories)
2438 / sizeof (default_include_directories[0]));
2439 register unsigned int max = 5;
2440 register char **dirs = (char **) xmalloc ((5 + defsize) * sizeof (char *));
2441 register unsigned int idx = 0;
2443 #ifdef __MSDOS__
2444 defsize++;
2445 #endif
2447 /* First consider any dirs specified with -I switches.
2448 Ignore dirs that don't exist. */
2450 if (arg_dirs != 0)
2451 while (*arg_dirs != 0)
2453 char *dir = *arg_dirs++;
2455 if (dir[0] == '~')
2457 char *expanded = tilde_expand (dir);
2458 if (expanded != 0)
2459 dir = expanded;
2462 if (stat (dir, &stbuf) == 0 && S_ISDIR (stbuf.st_mode))
2464 if (idx == max - 1)
2466 max += 5;
2467 dirs = (char **)
2468 xrealloc ((char *) dirs, (max + defsize) * sizeof (char *));
2470 dirs[idx++] = dir;
2472 else if (dir != arg_dirs[-1])
2473 free (dir);
2476 /* Now add at the end the standard default dirs. */
2478 #ifdef __MSDOS__
2480 /* The environment variable $DJDIR holds the root of the
2481 DJGPP directory tree; add ${DJDIR}/include. */
2482 struct variable *djdir = lookup_variable ("DJDIR", 5);
2484 if (djdir)
2486 char *defdir = (char *) xmalloc (strlen (djdir->value) + 8 + 1);
2488 strcat (strcpy (defdir, djdir->value), "/include");
2489 dirs[idx++] = defdir;
2492 #endif
2494 for (i = 0; default_include_directories[i] != 0; ++i)
2495 if (stat (default_include_directories[i], &stbuf) == 0
2496 && S_ISDIR (stbuf.st_mode))
2497 dirs[idx++] = default_include_directories[i];
2499 dirs[idx] = 0;
2501 /* Now compute the maximum length of any name in it. */
2503 max_incl_len = 0;
2504 for (i = 0; i < idx; ++i)
2506 unsigned int len = strlen (dirs[i]);
2507 /* If dir name is written with a trailing slash, discard it. */
2508 if (dirs[i][len - 1] == '/')
2509 /* We can't just clobber a null in because it may have come from
2510 a literal string and literal strings may not be writable. */
2511 dirs[i] = savestring (dirs[i], len - 1);
2512 if (len > max_incl_len)
2513 max_incl_len = len;
2516 include_directories = dirs;
2519 /* Expand ~ or ~USER at the beginning of NAME.
2520 Return a newly malloc'd string or 0. */
2522 char *
2523 tilde_expand (name)
2524 char *name;
2526 #ifndef VMS
2527 if (name[1] == '/' || name[1] == '\0')
2529 extern char *getenv ();
2530 char *home_dir;
2531 int is_variable;
2534 /* Turn off --warn-undefined-variables while we expand HOME. */
2535 int save = warn_undefined_variables_flag;
2536 warn_undefined_variables_flag = 0;
2538 home_dir = allocated_variable_expand ("$(HOME)");
2540 warn_undefined_variables_flag = save;
2543 is_variable = home_dir[0] != '\0';
2544 if (!is_variable)
2546 free (home_dir);
2547 home_dir = getenv ("HOME");
2549 #if !defined(_AMIGA) && !defined(WINDOWS32)
2550 if (home_dir == 0 || home_dir[0] == '\0')
2552 extern char *getlogin ();
2553 char *logname = getlogin ();
2554 home_dir = 0;
2555 if (logname != 0)
2557 struct passwd *p = getpwnam (logname);
2558 if (p != 0)
2559 home_dir = p->pw_dir;
2562 #endif /* !AMIGA && !WINDOWS32 */
2563 if (home_dir != 0)
2565 char *new = concat (home_dir, "", name + 1);
2566 if (is_variable)
2567 free (home_dir);
2568 return new;
2571 #if !defined(_AMIGA) && !defined(WINDOWS32)
2572 else
2574 struct passwd *pwent;
2575 char *userend = strchr (name + 1, '/');
2576 if (userend != 0)
2577 *userend = '\0';
2578 pwent = getpwnam (name + 1);
2579 if (pwent != 0)
2581 if (userend == 0)
2582 return xstrdup (pwent->pw_dir);
2583 else
2584 return concat (pwent->pw_dir, "/", userend + 1);
2586 else if (userend != 0)
2587 *userend = '/';
2589 #endif /* !AMIGA && !WINDOWS32 */
2590 #endif /* !VMS */
2591 return 0;
2594 /* Given a chain of struct nameseq's describing a sequence of filenames,
2595 in reverse of the intended order, return a new chain describing the
2596 result of globbing the filenames. The new chain is in forward order.
2597 The links of the old chain are freed or used in the new chain.
2598 Likewise for the names in the old chain.
2600 SIZE is how big to construct chain elements.
2601 This is useful if we want them actually to be other structures
2602 that have room for additional info. */
2604 struct nameseq *
2605 multi_glob (chain, size)
2606 struct nameseq *chain;
2607 unsigned int size;
2609 extern void dir_setup_glob ();
2610 register struct nameseq *new = 0;
2611 register struct nameseq *old;
2612 struct nameseq *nexto;
2613 glob_t gl;
2615 dir_setup_glob (&gl);
2617 for (old = chain; old != 0; old = nexto)
2619 #ifndef NO_ARCHIVES
2620 char *memname;
2621 #endif
2623 nexto = old->next;
2625 if (old->name[0] == '~')
2627 char *newname = tilde_expand (old->name);
2628 if (newname != 0)
2630 free (old->name);
2631 old->name = newname;
2635 #ifndef NO_ARCHIVES
2636 if (ar_name (old->name))
2638 /* OLD->name is an archive member reference.
2639 Replace it with the archive file name,
2640 and save the member name in MEMNAME.
2641 We will glob on the archive name and then
2642 reattach MEMNAME later. */
2643 char *arname;
2644 ar_parse_name (old->name, &arname, &memname);
2645 free (old->name);
2646 old->name = arname;
2648 else
2649 memname = 0;
2650 #endif /* !NO_ARCHIVES */
2652 switch (glob (old->name, GLOB_NOCHECK|GLOB_ALTDIRFUNC, NULL, &gl))
2654 case 0: /* Success. */
2656 register int i = gl.gl_pathc;
2657 while (i-- > 0)
2659 #ifndef NO_ARCHIVES
2660 if (memname != 0)
2662 /* Try to glob on MEMNAME within the archive. */
2663 struct nameseq *found
2664 = ar_glob (gl.gl_pathv[i], memname, size);
2665 if (found == 0)
2667 /* No matches. Use MEMNAME as-is. */
2668 struct nameseq *elt
2669 = (struct nameseq *) xmalloc (size);
2670 unsigned int alen = strlen (gl.gl_pathv[i]);
2671 unsigned int mlen = strlen (memname);
2672 elt->name = (char *) xmalloc (alen + 1 + mlen + 2);
2673 bcopy (gl.gl_pathv[i], elt->name, alen);
2674 elt->name[alen] = '(';
2675 bcopy (memname, &elt->name[alen + 1], mlen);
2676 elt->name[alen + 1 + mlen] = ')';
2677 elt->name[alen + 1 + mlen + 1] = '\0';
2678 elt->next = new;
2679 new = elt;
2681 else
2683 /* Find the end of the FOUND chain. */
2684 struct nameseq *f = found;
2685 while (f->next != 0)
2686 f = f->next;
2688 /* Attach the chain being built to the end of the FOUND
2689 chain, and make FOUND the new NEW chain. */
2690 f->next = new;
2691 new = found;
2694 free (memname);
2696 else
2697 #endif /* !NO_ARCHIVES */
2699 struct nameseq *elt = (struct nameseq *) xmalloc (size);
2700 elt->name = xstrdup (gl.gl_pathv[i]);
2701 elt->next = new;
2702 new = elt;
2705 globfree (&gl);
2706 free (old->name);
2707 free ((char *)old);
2708 break;
2711 case GLOB_NOSPACE:
2712 fatal (NILF, _("virtual memory exhausted"));
2713 break;
2715 default:
2716 old->next = new;
2717 new = old;
2718 break;
2722 return new;