1 /* Reading and parsing of makefiles for GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 2002 Free Software Foundation, Inc.
4 This file is part of GNU Make.
6 GNU Make is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Make is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Make; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
42 struct passwd
*getpwnam
PARAMS ((char *name
));
45 #endif /* !WINDOWS32 */
47 /* A 'struct ebuffer' controls the origin of the makefile we are currently
53 char *buffer
; /* Start of the current line in the buffer. */
54 char *bufnext
; /* Start of the next line in the buffer. */
55 char *bufstart
; /* Start of the entire buffer. */
56 unsigned int size
; /* Malloc'd size of buffer. */
57 FILE *fp
; /* File, or NULL if this is an internal buffer. */
58 struct floc floc
; /* Info on the file in fp (if any). */
61 /* Types of "words" that can be read in a makefile. */
64 w_bogus
, w_eol
, w_static
, w_variable
, w_colon
, w_dcolon
, w_semicolon
,
69 /* A `struct conditionals' contains the information describing
70 all the active conditionals in a makefile.
72 The global variable `conditionals' contains the conditionals
73 information for the current makefile. It is initialized from
74 the static structure `toplevel_conditionals' and is later changed
75 to new structures for included makefiles. */
79 unsigned int if_cmds
; /* Depth of conditional nesting. */
80 unsigned int allocated
; /* Elts allocated in following arrays. */
81 char *ignoring
; /* Are we ignoring or interepreting? */
82 char *seen_else
; /* Have we already seen an `else'? */
85 static struct conditionals toplevel_conditionals
;
86 static struct conditionals
*conditionals
= &toplevel_conditionals
;
89 /* Default directories to search for include files in */
91 static char *default_include_directories
[] =
93 #if defined(WINDOWS32) && !defined(INCLUDEDIR)
95 * This completely up to the user when they install MSVC or other packages.
96 * This is defined as a placeholder.
98 #define INCLUDEDIR "."
103 "/usr/local/include",
109 /* List of directories to search for include files in */
111 static char **include_directories
;
113 /* Maximum length of an element of the above. */
115 static unsigned int max_incl_len
;
117 /* The filename and pointer to line number of the
118 makefile currently being read in. */
120 const struct floc
*reading_file
= 0;
122 /* The chain of makefiles read by read_makefile. */
124 static struct dep
*read_makefiles
= 0;
126 static int eval_makefile
PARAMS ((char *filename
, int flags
));
127 static int eval
PARAMS ((struct ebuffer
*buffer
, int flags
));
129 static long readline
PARAMS ((struct ebuffer
*ebuf
));
130 static void do_define
PARAMS ((char *name
, unsigned int namelen
,
131 enum variable_origin origin
,
132 struct ebuffer
*ebuf
));
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
,
138 const struct floc
*flocp
, int set_default
));
139 static void record_target_var
PARAMS ((struct nameseq
*filenames
, char *defn
,
140 enum variable_origin origin
,
142 const struct floc
*flocp
));
143 static enum make_word_type get_next_mword
PARAMS ((char *buffer
, char *delim
,
144 char **startp
, unsigned int *length
));
146 /* Read in all the makefiles and return the chain of their names. */
149 read_all_makefiles (char **makefiles
)
151 unsigned int num_makefiles
= 0;
153 /* Create *_LIST variables, to hold the makefiles, targets, and variables
154 we will be reading. */
156 define_variable ("MAKEFILE_LIST", sizeof ("MAKEFILE_LIST")-1, "", o_file
, 0);
158 DB (DB_BASIC
, (_("Reading makefiles...\n")));
160 /* If there's a non-null variable MAKEFILES, its value is a list of
161 files to read first thing. But don't let it prevent reading the
162 default makefiles and don't let the default goal come from there. */
170 /* Turn off --warn-undefined-variables while we expand MAKEFILES. */
171 int save
= warn_undefined_variables_flag
;
172 warn_undefined_variables_flag
= 0;
174 value
= allocated_variable_expand ("$(MAKEFILES)");
176 warn_undefined_variables_flag
= save
;
179 /* Set NAME to the start of next token and LENGTH to its length.
180 MAKEFILES is updated for finding remaining tokens. */
183 while ((name
= find_next_token (&p
, &length
)) != 0)
187 name
= xstrdup (name
);
188 if (eval_makefile (name
,
189 RM_NO_DEFAULT_GOAL
|RM_INCLUDED
|RM_DONTCARE
) < 2)
196 /* Read makefiles specified with -f switches. */
199 while (*makefiles
!= 0)
201 struct dep
*tail
= read_makefiles
;
202 register struct dep
*d
;
204 if (! eval_makefile (*makefiles
, 0))
205 perror_with_name ("", *makefiles
);
207 /* Find the right element of read_makefiles. */
209 while (d
->next
!= tail
)
212 /* Use the storage read_makefile allocates. */
213 *makefiles
= dep_name (d
);
218 /* If there were no -f switches, try the default names. */
220 if (num_makefiles
== 0)
222 static char *default_makefiles
[] =
224 /* all lower case since readdir() (the vms version) 'lowercasifies' */
225 { "makefile.vms", "gnumakefile.", "makefile.", 0 };
228 { "GNUmakefile", "Makefile", "SMakefile", 0 };
229 #else /* !Amiga && !VMS */
230 { "GNUmakefile", "makefile", "Makefile", 0 };
233 register char **p
= default_makefiles
;
234 while (*p
!= 0 && !file_exists_p (*p
))
239 if (! eval_makefile (*p
, 0))
240 perror_with_name ("", *p
);
244 /* No default makefile was found. Add the default makefiles to the
245 `read_makefiles' chain so they will be updated if possible. */
246 struct dep
*tail
= read_makefiles
;
247 /* Add them to the tail, after any MAKEFILES variable makefiles. */
248 while (tail
!= 0 && tail
->next
!= 0)
250 for (p
= default_makefiles
; *p
!= 0; ++p
)
252 struct dep
*d
= (struct dep
*) xmalloc (sizeof (struct dep
));
254 d
->file
= enter_file (*p
);
255 d
->file
->dontcare
= 1;
257 /* Tell update_goal_chain to bail out as soon as this file is
258 made, and main not to die if we can't make this file. */
259 d
->changed
= RM_DONTCARE
;
271 return read_makefiles
;
274 /* Install a new conditional and return the previous one. */
276 static struct conditionals
*
277 install_conditionals (struct conditionals
*new)
279 struct conditionals
*save
= conditionals
;
281 bzero ((char *) new, sizeof (*new));
287 /* Free the current conditionals and reinstate a saved one. */
290 restore_conditionals (struct conditionals
*saved
)
292 /* Free any space allocated by conditional_line. */
293 if (conditionals
->ignoring
)
294 free (conditionals
->ignoring
);
295 if (conditionals
->seen_else
)
296 free (conditionals
->seen_else
);
299 conditionals
= saved
;
303 eval_makefile (char *filename
, int flags
)
307 const struct floc
*curfile
;
311 ebuf
.floc
.filenm
= filename
;
312 ebuf
.floc
.lineno
= 1;
314 if (ISDB (DB_VERBOSE
))
316 printf (_("Reading makefile `%s'"), filename
);
317 if (flags
& RM_NO_DEFAULT_GOAL
)
318 printf (_(" (no default goal)"));
319 if (flags
& RM_INCLUDED
)
320 printf (_(" (search path)"));
321 if (flags
& RM_DONTCARE
)
322 printf (_(" (don't care)"));
323 if (flags
& RM_NO_TILDE
)
324 printf (_(" (no ~ expansion)"));
328 /* First, get a stream to read. */
330 /* Expand ~ in FILENAME unless it came from `include',
331 in which case it was already done. */
332 if (!(flags
& RM_NO_TILDE
) && filename
[0] == '~')
334 char *expanded
= tilde_expand (filename
);
339 ebuf
.fp
= fopen (filename
, "r");
340 /* Save the error code so we print the right message later. */
341 makefile_errno
= errno
;
343 /* If the makefile wasn't found and it's either a makefile from
344 the `MAKEFILES' variable or an included makefile,
345 search the included makefile search path for this makefile. */
346 if (ebuf
.fp
== 0 && (flags
& RM_INCLUDED
) && *filename
!= '/')
348 register unsigned int i
;
349 for (i
= 0; include_directories
[i
] != 0; ++i
)
351 char *name
= concat (include_directories
[i
], "/", filename
);
352 ebuf
.fp
= fopen (name
, "r");
363 /* Add FILENAME to the chain of read makefiles. */
364 deps
= (struct dep
*) xmalloc (sizeof (struct dep
));
365 deps
->next
= read_makefiles
;
366 read_makefiles
= deps
;
368 deps
->file
= lookup_file (filename
);
370 deps
->file
= enter_file (xstrdup (filename
));
371 if (filename
!= ebuf
.floc
.filenm
)
373 filename
= deps
->file
->name
;
374 deps
->changed
= flags
;
375 deps
->ignore_mtime
= 0;
376 if (flags
& RM_DONTCARE
)
377 deps
->file
->dontcare
= 1;
379 /* If the makefile can't be found at all, give up entirely. */
383 /* If we did some searching, errno has the error from the last
384 attempt, rather from FILENAME itself. Restore it in case the
385 caller wants to use it in a message. */
386 errno
= makefile_errno
;
390 /* Add this makefile to the list. */
391 do_variable_definition (&ebuf
.floc
, "MAKEFILE_LIST", filename
, o_file
,
394 /* Evaluate the makefile */
397 ebuf
.buffer
= ebuf
.bufnext
= ebuf
.bufstart
= xmalloc (ebuf
.size
);
399 curfile
= reading_file
;
400 reading_file
= &ebuf
.floc
;
402 r
= eval (&ebuf
, !(flags
& RM_NO_DEFAULT_GOAL
));
404 reading_file
= curfile
;
408 free (ebuf
.bufstart
);
413 eval_buffer (char *buffer
)
416 struct conditionals
*saved
;
417 struct conditionals
new;
418 const struct floc
*curfile
;
421 /* Evaluate the buffer */
423 ebuf
.size
= strlen (buffer
);
424 ebuf
.buffer
= ebuf
.bufnext
= ebuf
.bufstart
= buffer
;
427 ebuf
.floc
= *reading_file
;
429 curfile
= reading_file
;
430 reading_file
= &ebuf
.floc
;
432 saved
= install_conditionals (&new);
436 restore_conditionals (saved
);
438 reading_file
= curfile
;
444 /* Read file FILENAME as a makefile and add its contents to the data base.
446 SET_DEFAULT is true if we are allowed to set the default goal. */
450 eval (struct ebuffer
*ebuf
, int set_default
)
453 unsigned int collapsed_length
= 0;
454 unsigned int commands_len
= 200;
456 unsigned int commands_idx
= 0;
457 unsigned int cmds_started
, tgts_started
;
458 int ignoring
= 0, in_ignored_define
= 0;
459 int no_targets
= 0; /* Set when reading a rule without targets. */
460 int have_sysv_atvar
= 0;
461 struct nameseq
*filenames
= 0;
462 struct dep
*deps
= 0;
465 char *pattern
= 0, *pattern_percent
;
469 #define record_waiting_files() \
472 if (filenames != 0) \
474 fi.lineno = tgts_started; \
475 record_files (filenames, pattern, pattern_percent, deps, \
476 cmds_started, commands, commands_idx, two_colon, \
477 have_sysv_atvar, &fi, set_default); \
482 if (pattern) { free(pattern); pattern = 0; } \
486 cmds_started
= tgts_started
= 1;
488 fstart
= &ebuf
->floc
;
489 fi
.filenm
= ebuf
->floc
.filenm
;
491 /* Loop over lines in the file.
492 The strategy is to accumulate target names in FILENAMES, dependencies
493 in DEPS and commands in COMMANDS. These are used to define a rule
494 when the start of the next rule (or eof) is encountered.
496 When you see a "continue" in the loop below, that means we are moving on
497 to the next line _without_ ending any rule that we happen to be working
498 with at the moment. If you see a "goto rule_complete", then the
499 statement we just parsed also finishes the previous rule. */
501 commands
= xmalloc (200);
505 unsigned int linelen
;
511 /* Grab the next line to be evaluated */
512 ebuf
->floc
.lineno
+= nlines
;
513 nlines
= readline (ebuf
);
515 /* If there is nothing left to eval, we're done. */
519 /* If this line is empty, skip it. */
524 linelen
= strlen (line
);
526 /* Check for a shell command line first.
527 If it is not one, we can stop treating tab specially. */
531 /* Ignore the commands in a rule with no targets. */
534 /* If there is no preceding rule line, don't treat this line
535 as a command, even though it begins with a tab character.
536 SunOS 4 make appears to behave this way. */
541 /* Yep, this is a shell command, and we don't care. */
544 /* Append this command line to the line being accumulated. */
545 if (commands_idx
== 0)
546 cmds_started
= ebuf
->floc
.lineno
;
548 if (linelen
+ 1 + commands_idx
> commands_len
)
550 commands_len
= (linelen
+ 1 + commands_idx
) * 2;
551 commands
= xrealloc (commands
, commands_len
);
553 bcopy (line
, &commands
[commands_idx
], linelen
);
554 commands_idx
+= linelen
;
555 commands
[commands_idx
++] = '\n';
561 /* This line is not a shell command line. Don't worry about tabs.
562 Get more space if we need it; we don't need to preserve the current
563 contents of the buffer. */
565 if (collapsed_length
< linelen
+1)
567 collapsed_length
= linelen
+1;
569 free ((char *)collapsed
);
570 collapsed
= (char *) xmalloc (collapsed_length
);
572 strcpy (collapsed
, line
);
573 /* Collapse continuation lines. */
574 collapse_continuations (collapsed
);
575 remove_comments (collapsed
);
577 /* Compare a word, both length and contents. */
578 #define word1eq(s) (len == sizeof(s)-1 && strneq (s, p, sizeof(s)-1))
580 while (isspace ((unsigned char)*p
))
584 /* This line is completely empty--ignore it. */
587 /* Find the end of the first token. Note we don't need to worry about
588 * ":" here since we compare tokens by length (so "export" will never
589 * be equal to "export:").
591 for (p2
= p
+1; *p2
!= '\0' && !isspace ((unsigned char)*p2
); ++p2
)
595 /* Find the start of the second token. If it looks like a target or
596 variable definition it can't be a preprocessor token so skip
597 them--this allows variables/targets named `ifdef', `export', etc. */
598 while (isspace ((unsigned char)*p2
))
601 if ((p2
[0] == ':' || p2
[0] == '+' || p2
[0] == '=') && p2
[1] == '\0')
603 /* It can't be a preprocessor token so skip it if we're ignoring */
607 goto skip_conditionals
;
610 /* We must first check for conditional and `define' directives before
611 ignoring anything, since they control what we will do with
614 if (!in_ignored_define
615 && (word1eq ("ifdef") || word1eq ("ifndef")
616 || word1eq ("ifeq") || word1eq ("ifneq")
617 || word1eq ("else") || word1eq ("endif")))
619 int i
= conditional_line (p
, fstart
);
621 fatal (fstart
, _("invalid syntax in conditional"));
627 if (word1eq ("endef"))
629 if (!in_ignored_define
)
630 fatal (fstart
, _("extraneous `endef'"));
631 in_ignored_define
= 0;
635 if (word1eq ("define"))
638 in_ignored_define
= 1;
642 fatal (fstart
, _("empty variable name"));
644 /* Let the variable name be the whole rest of the line,
645 with trailing blanks stripped (comments have already been
646 removed), so it could be a complex variable/function
647 reference that might contain blanks. */
648 p
= strchr (p2
, '\0');
649 while (isblank ((unsigned char)p
[-1]))
651 do_define (p2
, p
- p2
, o_file
, ebuf
);
656 if (word1eq ("override"))
659 error (fstart
, _("empty `override' directive"));
661 if (strneq (p2
, "define", 6)
662 && (isblank ((unsigned char)p2
[6]) || p2
[6] == '\0'))
665 in_ignored_define
= 1;
668 p2
= next_token (p2
+ 6);
670 fatal (fstart
, _("empty variable name"));
672 /* Let the variable name be the whole rest of the line,
673 with trailing blanks stripped (comments have already been
674 removed), so it could be a complex variable/function
675 reference that might contain blanks. */
676 p
= strchr (p2
, '\0');
677 while (isblank ((unsigned char)p
[-1]))
679 do_define (p2
, p
- p2
, o_override
, ebuf
);
683 && !try_variable_definition (fstart
, p2
, o_override
, 0))
684 error (fstart
, _("invalid `override' directive"));
690 /* Ignore the line. We continue here so conditionals
691 can appear in the middle of a rule. */
694 if (word1eq ("export"))
696 /* 'export' by itself causes everything to be exported. */
698 export_all_variables
= 1;
703 v
= try_variable_definition (fstart
, p2
, o_file
, 0);
705 v
->export
= v_export
;
711 /* Expand the line so we can use indirect and constructed
712 variable names in an export command. */
713 p2
= ap
= allocated_variable_expand (p2
);
715 for (p
= find_next_token (&p2
, &len
); p
!= 0;
716 p
= find_next_token (&p2
, &len
))
718 v
= lookup_variable (p
, len
);
720 v
= define_variable_loc (p
, len
, "", o_file
, 0,
722 v
->export
= v_export
;
731 if (word1eq ("unexport"))
734 export_all_variables
= 0;
741 /* Expand the line so we can use indirect and constructed
742 variable names in an unexport command. */
743 p2
= ap
= allocated_variable_expand (p2
);
745 for (p
= find_next_token (&p2
, &len
); p
!= 0;
746 p
= find_next_token (&p2
, &len
))
748 v
= lookup_variable (p
, len
);
750 v
= define_variable_loc (p
, len
, "", o_file
, 0, fstart
);
752 v
->export
= v_noexport
;
761 if (word1eq ("vpath"))
765 p2
= variable_expand (p2
);
766 p
= find_next_token (&p2
, &len
);
769 pattern
= savestring (p
, len
);
770 p
= find_next_token (&p2
, &len
);
771 /* No searchpath means remove all previous
772 selective VPATH's with the same pattern. */
775 /* No pattern means remove all previous selective VPATH's. */
777 construct_vpath_list (pattern
, p
);
784 if (word1eq ("include") || word1eq ("-include") || word1eq ("sinclude"))
786 /* We have found an `include' line specifying a nested
787 makefile to be read at this point. */
788 struct conditionals
*save
;
789 struct conditionals new_conditionals
;
790 struct nameseq
*files
;
791 /* "-include" (vs "include") says no error if the file does not
792 exist. "sinclude" is an alias for this from SGI. */
793 int noerror
= (p
[0] != 'i');
795 p
= allocated_variable_expand (p2
);
799 _("no file name for `%sinclude'"), noerror
? "-" : "");
803 /* Parse the list of file names. */
805 files
= multi_glob (parse_file_seq (&p2
, '\0',
806 sizeof (struct nameseq
),
808 sizeof (struct nameseq
));
811 /* Save the state of conditionals and start
812 the included makefile with a clean slate. */
813 save
= install_conditionals (&new_conditionals
);
815 /* Record the rules that are waiting so they will determine
816 the default goal before those in the included makefile. */
817 record_waiting_files ();
819 /* Read each included makefile. */
822 struct nameseq
*next
= files
->next
;
823 char *name
= files
->name
;
826 free ((char *)files
);
829 r
= eval_makefile (name
, (RM_INCLUDED
| RM_NO_TILDE
830 | (noerror
? RM_DONTCARE
: 0)));
834 error (fstart
, "%s: %s", name
, strerror (errno
));
839 /* Restore conditional state. */
840 restore_conditionals (save
);
845 if (try_variable_definition (fstart
, p
, o_file
, 0))
846 /* This line has been dealt with. */
849 /* This line starts with a tab but was not caught above because there
850 was no preceding target, and the line might have been usable as a
851 variable definition. But now we know it is definitely lossage. */
853 fatal(fstart
, _("commands commence before first target"));
855 /* This line describes some target files. This is complicated by
856 the existence of target-specific variables, because we can't
857 expand the entire line until we know if we have one or not. So
858 we expand the line word by word until we find the first `:',
859 then check to see if it's a target-specific variable.
861 In this algorithm, `lb_next' will point to the beginning of the
862 unexpanded parts of the input buffer, while `p2' points to the
863 parts of the expanded buffer we haven't searched yet. */
866 enum make_word_type wtype
;
867 enum variable_origin v_origin
;
869 char *cmdleft
, *semip
, *lb_next
;
870 unsigned int len
, plen
= 0;
873 /* Record the previous rule. */
875 record_waiting_files ();
876 tgts_started
= fstart
->lineno
;
878 /* Search the line for an unquoted ; that is not after an
880 cmdleft
= find_char_unquote (line
, ';', '#', 0);
881 if (cmdleft
!= 0 && *cmdleft
== '#')
883 /* We found a comment before a semicolon. */
887 else if (cmdleft
!= 0)
888 /* Found one. Cut the line short there before expanding it. */
892 collapse_continuations (line
);
894 /* We can't expand the entire line, since if it's a per-target
895 variable we don't want to expand it. So, walk from the
896 beginning, expanding as we go, and looking for "interesting"
897 chars. The first word is always expandable. */
898 wtype
= get_next_mword(line
, NULL
, &lb_next
, &len
);
903 fatal(fstart
, _("missing rule before commands"));
904 /* This line contained something but turned out to be nothing
905 but whitespace (a comment?). */
910 /* We accept and ignore rules without targets for
911 compatibility with SunOS 4 make. */
919 p2
= variable_expand_string(NULL
, lb_next
, len
);
925 /* Look for a semicolon in the expanded line. */
926 cmdleft
= find_char_unquote (p2
, ';', 0, 0);
930 unsigned long p2_off
= p2
- variable_buffer
;
931 unsigned long cmd_off
= cmdleft
- variable_buffer
;
932 char *pend
= p2
+ strlen(p2
);
934 /* Append any remnants of lb, then cut the line short
938 /* One school of thought says that you shouldn't expand
939 here, but merely copy, since now you're beyond a ";"
940 and into a command script. However, the old parser
941 expanded the whole line, so we continue that for
942 backwards-compatiblity. Also, it wouldn't be
943 entirely consistent, since we do an unconditional
944 expand below once we know we don't have a
945 target-specific variable. */
946 (void)variable_expand_string(pend
, lb_next
, (long)-1);
947 lb_next
+= strlen(lb_next
);
948 p2
= variable_buffer
+ p2_off
;
949 cmdleft
= variable_buffer
+ cmd_off
+ 1;
953 colonp
= find_char_unquote(p2
, ':', 0, 0);
954 #ifdef HAVE_DOS_PATHS
955 /* The drive spec brain-damage strikes again... */
956 /* Note that the only separators of targets in this context
957 are whitespace and a left paren. If others are possible,
958 they should be added to the string in the call to index. */
959 while (colonp
&& (colonp
[1] == '/' || colonp
[1] == '\\') &&
960 colonp
> p2
&& isalpha ((unsigned char)colonp
[-1]) &&
961 (colonp
== p2
+ 1 || strchr (" \t(", colonp
[-2]) != 0))
962 colonp
= find_char_unquote(colonp
+ 1, ':', 0, 0);
967 wtype
= get_next_mword(lb_next
, NULL
, &lb_next
, &len
);
973 p2
= variable_expand_string(p2
, lb_next
, len
);
974 /* We don't need to worry about cmdleft here, because if it was
975 found in the variable_buffer the entire buffer has already
976 been expanded... we'll never get here. */
979 p2
= next_token (variable_buffer
);
981 /* If the word we're looking at is EOL, see if there's _anything_
982 on the line. If not, a variable expanded to nothing, so ignore
983 it. If so, we can't parse this line so punt. */
987 /* There's no need to be ivory-tower about this: check for
988 one of the most common bugs found in makefiles... */
989 fatal (fstart
, _("missing separator%s"),
990 !strneq(line
, " ", 8) ? ""
991 : _(" (did you mean TAB instead of 8 spaces?)"));
995 /* Make the colon the end-of-string so we know where to stop
996 looking for targets. */
998 filenames
= multi_glob (parse_file_seq (&p2
, '\0',
999 sizeof (struct nameseq
),
1001 sizeof (struct nameseq
));
1006 /* We accept and ignore rules without targets for
1007 compatibility with SunOS 4 make. */
1011 /* This should never be possible; we handled it above. */
1012 assert (*p2
!= '\0');
1015 /* Is this a one-colon or two-colon entry? */
1016 two_colon
= *p2
== ':';
1020 /* Test to see if it's a target-specific variable. Copy the rest
1021 of the buffer over, possibly temporarily (we'll expand it later
1022 if it's not a target-specific variable). PLEN saves the length
1023 of the unparsed section of p2, for later. */
1024 if (*lb_next
!= '\0')
1026 unsigned int l
= p2
- variable_buffer
;
1028 (void) variable_buffer_output (p2
+plen
,
1029 lb_next
, strlen (lb_next
)+1);
1030 p2
= variable_buffer
+ l
;
1033 /* See if it's an "override" or "export" keyword; if so see if what
1034 comes after it looks like a variable definition. */
1036 wtype
= get_next_mword (p2
, NULL
, &p
, &len
);
1040 if (wtype
== w_static
)
1042 if (word1eq ("override"))
1044 v_origin
= o_override
;
1045 wtype
= get_next_mword (p
+len
, NULL
, &p
, &len
);
1047 else if (word1eq ("export"))
1050 wtype
= get_next_mword (p
+len
, NULL
, &p
, &len
);
1055 wtype
= get_next_mword (p
+len
, NULL
, NULL
, NULL
);
1057 if (wtype
== w_varassign
)
1059 /* If there was a semicolon found, add it back, plus anything
1063 unsigned int l
= p
- variable_buffer
;
1065 variable_buffer_output (p2
+ strlen (p2
),
1066 semip
, strlen (semip
)+1);
1067 p
= variable_buffer
+ l
;
1069 record_target_var (filenames
, p
, v_origin
, exported
, fstart
);
1074 /* This is a normal target, _not_ a target-specific variable.
1075 Unquote any = in the dependency list. */
1076 find_char_unquote (lb_next
, '=', 0, 0);
1078 /* We have some targets, so don't ignore the following commands. */
1081 /* Expand the dependencies, etc. */
1082 if (*lb_next
!= '\0')
1084 unsigned int l
= p2
- variable_buffer
;
1085 (void) variable_expand_string (p2
+ plen
, lb_next
, (long)-1);
1086 p2
= variable_buffer
+ l
;
1088 /* Look for a semicolon in the expanded line. */
1091 cmdleft
= find_char_unquote (p2
, ';', 0, 0);
1093 *(cmdleft
++) = '\0';
1097 /* Do any of the prerequisites appear to have $@ etc.? */
1098 have_sysv_atvar
= 0;
1099 if (!posix_pedantic
)
1100 for (p
= strchr (p2
, '$'); p
!= 0; p
= strchr (p
+1, '$'))
1101 if (p
[1] == '@' || ((p
[1] == '(' || p
[1] == '{') && p
[2] == '@'))
1103 have_sysv_atvar
= 1;
1107 /* Is this a static pattern rule: `target: %targ: %dep; ...'? */
1108 p
= strchr (p2
, ':');
1109 while (p
!= 0 && p
[-1] == '\\')
1111 register char *q
= &p
[-1];
1112 register int backslash
= 0;
1113 while (*q
-- == '\\')
1114 backslash
= !backslash
;
1116 p
= strchr (p
+ 1, ':');
1121 /* Here, the situation is quite complicated. Let's have a look
1122 at a couple of targets:
1130 The rule is that it's only a target, if there are TWO :'s
1131 OR a space around the :.
1133 if (p
&& !(isspace ((unsigned char)p
[1]) || !p
[1]
1134 || isspace ((unsigned char)p
[-1])))
1137 #ifdef HAVE_DOS_PATHS
1143 /* For DOS-style paths, skip a "C:\..." or a "C:/..." */
1144 if (p
!= 0 && (p
[1] == '\\' || p
[1] == '/') &&
1145 isalpha ((unsigned char)p
[-1]) &&
1146 (p
== p2
+ 1 || strchr (" \t:(", p
[-2]) != 0)) {
1147 p
= strchr (p
+ 1, ':');
1150 } while (check_again
);
1155 struct nameseq
*target
;
1156 target
= parse_file_seq (&p2
, ':', sizeof (struct nameseq
), 1);
1159 fatal (fstart
, _("missing target pattern"));
1160 else if (target
->next
!= 0)
1161 fatal (fstart
, _("multiple target patterns"));
1162 pattern
= target
->name
;
1163 pattern_percent
= find_percent (pattern
);
1164 if (pattern_percent
== 0)
1165 fatal (fstart
, _("target pattern contains no `%%'"));
1166 free((char *)target
);
1171 /* Parse the dependencies. */
1172 deps
= (struct dep
*)
1173 multi_glob (parse_file_seq (&p2
, '|', sizeof (struct dep
), 1),
1174 sizeof (struct dep
));
1177 /* Files that follow '|' are special prerequisites that
1178 need only exist in order to satisfy the dependency.
1179 Their modification times are irrelevant. */
1180 struct dep
**deps_ptr
= &deps
;
1182 for (deps_ptr
= &deps
; *deps_ptr
; deps_ptr
= &(*deps_ptr
)->next
)
1185 *deps_ptr
= (struct dep
*)
1186 multi_glob (parse_file_seq (&p2
, '\0', sizeof (struct dep
), 1),
1187 sizeof (struct dep
));
1188 for (d
= *deps_ptr
; d
!= 0; d
= d
->next
)
1189 d
->ignore_mtime
= 1;
1195 /* Semicolon means rest of line is a command. */
1196 unsigned int len
= strlen (cmdleft
);
1198 cmds_started
= fstart
->lineno
;
1200 /* Add this command line to the buffer. */
1201 if (len
+ 2 > commands_len
)
1203 commands_len
= (len
+ 2) * 2;
1204 commands
= (char *) xrealloc (commands
, commands_len
);
1206 bcopy (cmdleft
, commands
, len
);
1207 commands_idx
+= len
;
1208 commands
[commands_idx
++] = '\n';
1214 /* We get here except in the case that we just read a rule line.
1215 Record now the last rule we read, so following spurious
1216 commands are properly diagnosed. */
1218 record_waiting_files ();
1223 if (conditionals
->if_cmds
)
1224 fatal (fstart
, _("missing `endif'"));
1226 /* At eof, record the last rule. */
1227 record_waiting_files ();
1230 free ((char *) collapsed
);
1231 free ((char *) commands
);
1237 /* Execute a `define' directive.
1238 The first line has already been read, and NAME is the name of
1239 the variable to be defined. The following lines remain to be read. */
1242 do_define (char *name
, unsigned int namelen
,
1243 enum variable_origin origin
, struct ebuffer
*ebuf
)
1245 struct floc defstart
;
1248 unsigned int length
= 100;
1249 char *definition
= (char *) xmalloc (length
);
1250 unsigned int idx
= 0;
1253 /* Expand the variable name. */
1254 char *var
= (char *) alloca (namelen
+ 1);
1255 bcopy (name
, var
, namelen
);
1256 var
[namelen
] = '\0';
1257 var
= variable_expand (var
);
1259 defstart
= ebuf
->floc
;
1266 nlines
= readline (ebuf
);
1267 ebuf
->floc
.lineno
+= nlines
;
1269 /* If there is nothing left to eval, we're done. */
1273 line
= ebuf
->buffer
;
1275 collapse_continuations (line
);
1277 /* If the line doesn't begin with a tab, test to see if it introduces
1278 another define, or ends one. */
1280 /* Stop if we find an 'endef' */
1281 if (line
[0] != '\t')
1283 p
= next_token (line
);
1286 /* If this is another 'define', increment the level count. */
1287 if ((len
== 6 || (len
> 6 && isblank ((unsigned char)p
[6])))
1288 && strneq (p
, "define", 6))
1291 /* If this is an 'endef', decrement the count. If it's now 0,
1292 we've found the last one. */
1293 else if ((len
== 5 || (len
> 5 && isblank ((unsigned char)p
[5])))
1294 && strneq (p
, "endef", 5))
1297 remove_comments (p
);
1298 if (*next_token (p
) != '\0')
1300 _("Extraneous text after `endef' directive"));
1304 /* Define the variable. */
1306 definition
[0] = '\0';
1308 definition
[idx
- 1] = '\0';
1310 /* Always define these variables in the global set. */
1311 define_variable_global (var
, strlen (var
), definition
,
1312 origin
, 1, &defstart
);
1319 /* Otherwise add this line to the variable definition. */
1320 len
= strlen (line
);
1321 if (idx
+ len
+ 1 > length
)
1323 length
= (idx
+ len
) * 2;
1324 definition
= (char *) xrealloc (definition
, length
+ 1);
1327 bcopy (line
, &definition
[idx
], len
);
1329 /* Separate lines with a newline. */
1330 definition
[idx
++] = '\n';
1334 fatal (&defstart
, _("missing `endef', unterminated `define'"));
1340 /* Interpret conditional commands "ifdef", "ifndef", "ifeq",
1341 "ifneq", "else" and "endif".
1342 LINE is the input line, with the command as its first word.
1344 FILENAME and LINENO are the filename and line number in the
1345 current makefile. They are used for error messages.
1347 Value is -1 if the line is invalid,
1348 0 if following text should be interpreted,
1349 1 if following text should be ignored. */
1352 conditional_line (char *line
, const struct floc
*flocp
)
1356 register unsigned int i
;
1360 /* It's an "if..." command. */
1361 notdef
= line
[2] == 'n';
1364 cmdname
= line
[3] == 'd' ? "ifndef" : "ifneq";
1365 line
+= cmdname
[3] == 'd' ? 7 : 6;
1369 cmdname
= line
[2] == 'd' ? "ifdef" : "ifeq";
1370 line
+= cmdname
[2] == 'd' ? 6 : 5;
1375 /* It's an "else" or "endif" command. */
1376 notdef
= line
[1] == 'n';
1377 cmdname
= notdef
? "endif" : "else";
1378 line
+= notdef
? 5 : 4;
1381 line
= next_token (line
);
1383 if (*cmdname
== 'e')
1386 error (flocp
, _("Extraneous text after `%s' directive"), cmdname
);
1387 /* "Else" or "endif". */
1388 if (conditionals
->if_cmds
== 0)
1389 fatal (flocp
, _("extraneous `%s'"), cmdname
);
1390 /* NOTDEF indicates an `endif' command. */
1392 --conditionals
->if_cmds
;
1393 else if (conditionals
->seen_else
[conditionals
->if_cmds
- 1])
1394 fatal (flocp
, _("only one `else' per conditional"));
1397 /* Toggle the state of ignorance. */
1398 conditionals
->ignoring
[conditionals
->if_cmds
- 1]
1399 = !conditionals
->ignoring
[conditionals
->if_cmds
- 1];
1400 /* Record that we have seen an `else' in this conditional.
1401 A second `else' will be erroneous. */
1402 conditionals
->seen_else
[conditionals
->if_cmds
- 1] = 1;
1404 for (i
= 0; i
< conditionals
->if_cmds
; ++i
)
1405 if (conditionals
->ignoring
[i
])
1410 if (conditionals
->allocated
== 0)
1412 conditionals
->allocated
= 5;
1413 conditionals
->ignoring
= (char *) xmalloc (conditionals
->allocated
);
1414 conditionals
->seen_else
= (char *) xmalloc (conditionals
->allocated
);
1417 ++conditionals
->if_cmds
;
1418 if (conditionals
->if_cmds
> conditionals
->allocated
)
1420 conditionals
->allocated
+= 5;
1421 conditionals
->ignoring
= (char *)
1422 xrealloc (conditionals
->ignoring
, conditionals
->allocated
);
1423 conditionals
->seen_else
= (char *)
1424 xrealloc (conditionals
->seen_else
, conditionals
->allocated
);
1427 /* Record that we have seen an `if...' but no `else' so far. */
1428 conditionals
->seen_else
[conditionals
->if_cmds
- 1] = 0;
1430 /* Search through the stack to see if we're already ignoring. */
1431 for (i
= 0; i
< conditionals
->if_cmds
- 1; ++i
)
1432 if (conditionals
->ignoring
[i
])
1434 /* We are already ignoring, so just push a level
1435 to match the next "else" or "endif", and keep ignoring.
1436 We don't want to expand variables in the condition. */
1437 conditionals
->ignoring
[conditionals
->if_cmds
- 1] = 1;
1441 if (cmdname
[notdef
? 3 : 2] == 'd')
1443 /* "Ifdef" or "ifndef". */
1448 /* Expand the thing we're looking up, so we can use indirect and
1449 constructed variable names. */
1450 var
= allocated_variable_expand (line
);
1452 /* Make sure there's only one variable name to test. */
1453 p
= end_of_token (var
);
1460 v
= lookup_variable (var
, strlen (var
));
1461 conditionals
->ignoring
[conditionals
->if_cmds
- 1]
1462 = (v
!= 0 && *v
->value
!= '\0') == notdef
;
1468 /* "Ifeq" or "ifneq". */
1471 char termin
= *line
== '(' ? ',' : *line
;
1473 if (termin
!= ',' && termin
!= '"' && termin
!= '\'')
1477 /* Find the end of the first string. */
1480 register int count
= 0;
1481 for (; *line
!= '\0'; ++line
)
1484 else if (*line
== ')')
1486 else if (*line
== ',' && count
<= 0)
1490 while (*line
!= '\0' && *line
!= termin
)
1498 /* Strip blanks after the first string. */
1500 while (isblank ((unsigned char)p
[-1]))
1507 s2
= variable_expand (s1
);
1508 /* We must allocate a new copy of the expanded string because
1509 variable_expand re-uses the same buffer. */
1511 s1
= (char *) alloca (len
+ 1);
1512 bcopy (s2
, s1
, len
+ 1);
1515 /* Find the start of the second string. */
1516 line
= next_token (line
);
1518 termin
= termin
== ',' ? ')' : *line
;
1519 if (termin
!= ')' && termin
!= '"' && termin
!= '\'')
1522 /* Find the end of the second string. */
1525 register int count
= 0;
1526 s2
= next_token (line
);
1527 for (line
= s2
; *line
!= '\0'; ++line
)
1531 else if (*line
== ')')
1544 while (*line
!= '\0' && *line
!= termin
)
1552 line
= next_token (++line
);
1554 error (flocp
, _("Extraneous text after `%s' directive"), cmdname
);
1556 s2
= variable_expand (s2
);
1557 conditionals
->ignoring
[conditionals
->if_cmds
- 1]
1558 = streq (s1
, s2
) == notdef
;
1561 /* Search through the stack to see if we're ignoring. */
1562 for (i
= 0; i
< conditionals
->if_cmds
; ++i
)
1563 if (conditionals
->ignoring
[i
])
1568 /* Remove duplicate dependencies in CHAIN. */
1570 static unsigned long
1571 dep_hash_1 (const void *key
)
1573 return_STRING_HASH_1 (dep_name ((struct dep
const *) key
));
1576 static unsigned long
1577 dep_hash_2 (const void *key
)
1579 return_STRING_HASH_2 (dep_name ((struct dep
const *) key
));
1583 dep_hash_cmp (const void *x
, const void *y
)
1585 struct dep
*dx
= (struct dep
*) x
;
1586 struct dep
*dy
= (struct dep
*) y
;
1587 int cmp
= strcmp (dep_name (dx
), dep_name (dy
));
1589 /* If the names are the same but ignore_mtimes are not equal, one of these
1590 is an order-only prerequisite and one isn't. That means that we should
1591 remove the one that isn't and keep the one that is. */
1593 if (!cmp
&& dx
->ignore_mtime
!= dy
->ignore_mtime
)
1594 dx
->ignore_mtime
= dy
->ignore_mtime
= 0;
1601 uniquize_deps (struct dep
*chain
)
1603 struct hash_table deps
;
1604 register struct dep
**depp
;
1606 hash_init (&deps
, 500, dep_hash_1
, dep_hash_2
, dep_hash_cmp
);
1608 /* Make sure that no dependencies are repeated. This does not
1609 really matter for the purpose of updating targets, but it
1610 might make some names be listed twice for $^ and $?. */
1615 struct dep
*dep
= *depp
;
1616 struct dep
**dep_slot
= (struct dep
**) hash_find_slot (&deps
, dep
);
1617 if (HASH_VACANT (*dep_slot
))
1619 hash_insert_at (&deps
, dep
, dep_slot
);
1624 /* Don't bother freeing duplicates.
1625 It's dangerous and little benefit accrues. */
1630 hash_free (&deps
, 0);
1633 /* Record target-specific variable values for files FILENAMES.
1634 TWO_COLON is nonzero if a double colon was used.
1636 The links of FILENAMES are freed, and so are any names in it
1637 that are not incorporated into other data structures.
1639 If the target is a pattern, add the variable to the pattern-specific
1640 variable value list. */
1643 record_target_var (struct nameseq
*filenames
, char *defn
,
1644 enum variable_origin origin
, int exported
,
1645 const struct floc
*flocp
)
1647 struct nameseq
*nextf
;
1648 struct variable_set_list
*global
;
1650 global
= current_variable_set_list
;
1652 /* If the variable is an append version, store that but treat it as a
1653 normal recursive variable. */
1655 for (; filenames
!= 0; filenames
= nextf
)
1658 register char *name
= filenames
->name
;
1661 struct pattern_var
*p
;
1663 nextf
= filenames
->next
;
1664 free ((char *) filenames
);
1666 /* If it's a pattern target, then add it to the pattern-specific
1668 percent
= find_percent (name
);
1671 /* Get a reference for this pattern-specific variable struct. */
1672 p
= create_pattern_var (name
, percent
);
1673 p
->variable
.fileinfo
= *flocp
;
1674 /* I don't think this can fail since we already determined it was a
1675 variable definition. */
1676 v
= parse_variable_definition (&p
->variable
, defn
);
1679 if (v
->flavor
== f_simple
)
1680 v
->value
= allocated_variable_expand (v
->value
);
1682 v
->value
= xstrdup (v
->value
);
1690 /* Get a file reference for this file, and initialize it.
1691 We don't want to just call enter_file() because that allocates a
1692 new entry if the file is a double-colon, which we don't want in
1694 f
= lookup_file (name
);
1696 f
= enter_file (name
);
1697 else if (f
->double_colon
)
1698 f
= f
->double_colon
;
1700 initialize_file_variables (f
, 1);
1703 current_variable_set_list
= f
->variables
;
1704 v
= try_variable_definition (flocp
, defn
, origin
, 1);
1706 error (flocp
, _("Malformed target-specific variable definition"));
1707 current_variable_set_list
= global
;
1710 /* Set up the variable to be *-specific. */
1714 v
->export
= v_export
;
1716 /* If it's not an override, check to see if there was a command-line
1717 setting. If so, reset the value. */
1718 if (origin
!= o_override
)
1720 struct variable
*gv
;
1721 int len
= strlen(v
->name
);
1723 gv
= lookup_variable (v
->name
, len
);
1724 if (gv
&& (gv
->origin
== o_env_override
|| gv
->origin
== o_command
))
1728 v
->value
= xstrdup (gv
->value
);
1729 v
->origin
= gv
->origin
;
1730 v
->recursive
= gv
->recursive
;
1735 /* Free name if not needed further. */
1736 if (name
!= fname
&& (name
< fname
|| name
> fname
+ strlen (fname
)))
1741 /* Record a description line for files FILENAMES,
1742 with dependencies DEPS, commands to execute described
1743 by COMMANDS and COMMANDS_IDX, coming from FILENAME:COMMANDS_STARTED.
1744 TWO_COLON is nonzero if a double colon was used.
1745 If not nil, PATTERN is the `%' pattern to make this
1746 a static pattern rule, and PATTERN_PERCENT is a pointer
1747 to the `%' within it.
1749 The links of FILENAMES are freed, and so are any names in it
1750 that are not incorporated into other data structures. */
1753 record_files (struct nameseq
*filenames
, char *pattern
, char *pattern_percent
,
1754 struct dep
*deps
, unsigned int cmds_started
, char *commands
,
1755 unsigned int commands_idx
, int two_colon
,
1756 int have_sysv_atvar
, const struct floc
*flocp
, int set_default
)
1758 struct nameseq
*nextf
;
1760 unsigned int max_targets
= 0, target_idx
= 0;
1761 char **targets
= 0, **target_percents
= 0;
1762 struct commands
*cmds
;
1764 if (commands_idx
> 0)
1766 cmds
= (struct commands
*) xmalloc (sizeof (struct commands
));
1767 cmds
->fileinfo
.filenm
= flocp
->filenm
;
1768 cmds
->fileinfo
.lineno
= cmds_started
;
1769 cmds
->commands
= savestring (commands
, commands_idx
);
1770 cmds
->command_lines
= 0;
1775 for (; filenames
!= 0; filenames
= nextf
)
1777 char *name
= filenames
->name
;
1781 char *implicit_percent
;
1783 nextf
= filenames
->next
;
1786 /* Check for .POSIX. We used to do this in snap_deps() but that's not
1787 good enough: it doesn't happen until after the makefile is read,
1788 which means we cannot use its value during parsing. */
1790 if (streq (name
, ".POSIX"))
1793 implicit_percent
= find_percent (name
);
1794 implicit
|= implicit_percent
!= 0;
1796 if (implicit
&& pattern
!= 0)
1797 fatal (flocp
, _("mixed implicit and static pattern rules"));
1799 if (implicit
&& implicit_percent
== 0)
1800 fatal (flocp
, _("mixed implicit and normal rules"));
1807 targets
= (char **) xmalloc (5 * sizeof (char *));
1808 target_percents
= (char **) xmalloc (5 * sizeof (char *));
1811 else if (target_idx
== max_targets
- 1)
1814 targets
= (char **) xrealloc ((char *) targets
,
1815 max_targets
* sizeof (char *));
1817 = (char **) xrealloc ((char *) target_percents
,
1818 max_targets
* sizeof (char *));
1820 targets
[target_idx
] = name
;
1821 target_percents
[target_idx
] = implicit_percent
;
1826 /* If there are multiple filenames, copy the chain DEPS
1827 for all but the last one. It is not safe for the same deps
1828 to go in more than one place in the data base. */
1829 this = nextf
!= 0 ? copy_dep_chain (deps
) : deps
;
1833 /* If this is an extended static rule:
1834 `targets: target%pattern: dep%pattern; cmds',
1835 translate each dependency pattern into a plain filename
1836 using the target pattern and this target's name. */
1837 if (!pattern_matches (pattern
, pattern_percent
, name
))
1839 /* Give a warning if the rule is meaningless. */
1841 _("target `%s' doesn't match the target pattern"), name
);
1846 /* We use patsubst_expand to do the work of translating
1847 the target pattern, the target's name and the dependencies'
1848 patterns into plain dependency names. */
1849 char *buffer
= variable_expand ("");
1851 for (d
= this; d
!= 0; d
= d
->next
)
1854 char *percent
= find_percent (d
->name
);
1857 o
= patsubst_expand (buffer
, name
, pattern
, d
->name
,
1858 pattern_percent
+1, percent
+1);
1859 /* If the name expanded to the empty string, that's
1863 _("target `%s' leaves prerequisite pattern empty"),
1866 d
->name
= savestring (buffer
, o
- buffer
);
1871 /* If at least one of the dependencies uses $$@ etc. deal with that.
1872 It would be very nice and very simple to just expand everything, but
1873 it would break a lot of backward compatibility. Maybe that's OK
1874 since we're just emulating a SysV function, and if we do that then
1875 why not emulate it completely (that's what SysV make does: it
1876 re-expands the entire prerequisite list, all the time, with $@
1877 etc. in scope). But, it would be a pain indeed to document this
1878 ("iff you use $$@, your prerequisite lists is expanded twice...")
1879 Ouch. Maybe better to make the code more complex. */
1881 if (have_sysv_atvar
)
1884 int tlen
= strlen (name
);
1885 char *fnp
= strrchr (name
, '/');
1893 flen
= strlen (fnp
);
1903 for (d
= this; d
!= 0; d
= d
->next
)
1904 for (p
= strchr (d
->name
, '$'); p
!= 0; p
= strchr (p
+1, '$'))
1910 /* If it's '$@', '$(@', or '${@', it's escaped */
1913 || ((p
[1] == '(' || p
[1] == '{') && p
[2] == '@')))
1915 bcopy (p
, s
, strlen (p
)+1);
1919 /* Maybe found one. We like anything of any form matching @,
1920 [({]@[}):], or [({]@[DF][}):]. */
1923 || ((p
[0] == '(' || p
[0] == '{') && (++p
)[0] == '@'
1924 && (((++p
)[0] == ')' || p
[0] == '}' || p
[0] == ':')
1925 || ((p
[1] == ')' || p
[1] == '}' || p
[1] == ':')
1926 && (p
[0] == 'D' || p
[0] == 'F'))))))
1929 /* Found one. Compute the length and string ptr. Move p
1930 past the variable reference. */
1952 /* Get more space. */
1954 int soff
= s
- d
->name
;
1955 int poff
= p
- d
->name
;
1956 d
->name
= (char *) xrealloc (d
->name
,
1957 strlen (d
->name
) + atlen
+ 1);
1962 /* Copy the string over. */
1963 bcopy(p
, s
+atlen
, strlen (p
)+1);
1964 bcopy(at
, s
, atlen
);
1971 /* Single-colon. Combine these dependencies
1972 with others in file's existing record, if any. */
1973 f
= enter_file (name
);
1975 if (f
->double_colon
)
1977 _("target file `%s' has both : and :: entries"), f
->name
);
1979 /* If CMDS == F->CMDS, this target was listed in this rule
1980 more than once. Just give a warning since this is harmless. */
1981 if (cmds
!= 0 && cmds
== f
->cmds
)
1983 _("target `%s' given more than once in the same rule."),
1986 /* Check for two single-colon entries both with commands.
1987 Check is_target so that we don't lose on files such as .c.o
1988 whose commands were preinitialized. */
1989 else if (cmds
!= 0 && f
->cmds
!= 0 && f
->is_target
)
1991 error (&cmds
->fileinfo
,
1992 _("warning: overriding commands for target `%s'"),
1994 error (&f
->cmds
->fileinfo
,
1995 _("warning: ignoring old commands for target `%s'"),
2001 /* Defining .DEFAULT with no deps or cmds clears it. */
2002 if (f
== default_file
&& this == 0 && cmds
== 0)
2006 /* Defining .SUFFIXES with no dependencies
2007 clears out the list of suffixes. */
2008 if (f
== suffix_file
&& this == 0)
2013 struct dep
*nextd
= d
->next
;
2020 else if (f
->deps
!= 0)
2022 /* Add the file's old deps and the new ones in THIS together. */
2024 struct dep
*firstdeps
, *moredeps
;
2027 /* This is the rule with commands, so put its deps first.
2028 The rationale behind this is that $< expands to the
2029 first dep in the chain, and commands use $< expecting
2030 to get the dep that rule specifies. */
2036 /* Append the new deps to the old ones. */
2037 firstdeps
= f
->deps
;
2042 firstdeps
= moredeps
;
2046 while (d
->next
!= 0)
2051 f
->deps
= firstdeps
;
2056 /* If this is a static pattern rule, set the file's stem to
2057 the part of its name that matched the `%' in the pattern,
2058 so you can use $* in the commands. */
2061 static char *percent
= "%";
2062 char *buffer
= variable_expand ("");
2063 char *o
= patsubst_expand (buffer
, name
, pattern
, percent
,
2064 pattern_percent
+1, percent
+1);
2065 f
->stem
= savestring (buffer
, o
- buffer
);
2070 /* Double-colon. Make a new record
2071 even if the file already has one. */
2072 f
= lookup_file (name
);
2073 /* Check for both : and :: rules. Check is_target so
2074 we don't lose on default suffix rules or makefiles. */
2075 if (f
!= 0 && f
->is_target
&& !f
->double_colon
)
2077 _("target file `%s' has both : and :: entries"), f
->name
);
2078 f
= enter_file (name
);
2079 /* If there was an existing entry and it was a double-colon
2080 entry, enter_file will have returned a new one, making it the
2081 prev pointer of the old one, and setting its double_colon
2082 pointer to the first one. */
2083 if (f
->double_colon
== 0)
2084 /* This is the first entry for this name, so we must
2085 set its double_colon pointer to itself. */
2086 f
->double_colon
= f
;
2092 /* Free name if not needed further. */
2093 if (f
!= 0 && name
!= f
->name
2094 && (name
< f
->name
|| name
> f
->name
+ strlen (f
->name
)))
2100 /* See if this is first target seen whose name does
2101 not start with a `.', unless it contains a slash. */
2102 if (default_goal_file
== 0 && set_default
2103 && (*name
!= '.' || strchr (name
, '/') != 0
2104 #ifdef HAVE_DOS_PATHS
2105 || strchr (name
, '\\') != 0
2111 /* If this file is a suffix, don't
2112 let it be the default goal file. */
2114 for (d
= suffix_file
->deps
; d
!= 0; d
= d
->next
)
2116 register struct dep
*d2
;
2117 if (*dep_name (d
) != '.' && streq (name
, dep_name (d
)))
2122 for (d2
= suffix_file
->deps
; d2
!= 0; d2
= d2
->next
)
2124 register unsigned int len
= strlen (dep_name (d2
));
2125 if (!strneq (name
, dep_name (d2
), len
))
2127 if (streq (name
+ len
, dep_name (d
)))
2138 default_goal_file
= f
;
2144 targets
[target_idx
] = 0;
2145 target_percents
[target_idx
] = 0;
2146 create_pattern_rule (targets
, target_percents
, two_colon
, deps
, cmds
, 1);
2147 free ((char *) target_percents
);
2151 /* Search STRING for an unquoted STOPCHAR or blank (if BLANK is nonzero).
2152 Backslashes quote STOPCHAR, blanks if BLANK is nonzero, and backslash.
2153 Quoting backslashes are removed from STRING by compacting it into
2154 itself. Returns a pointer to the first unquoted STOPCHAR if there is
2155 one, or nil if there are none. */
2158 find_char_unquote (char *string
, int stop1
, int stop2
, int blank
)
2160 unsigned int string_len
= 0;
2161 register char *p
= string
;
2166 while (*p
!= '\0' && *p
!= stop1
&& *p
!= stop2
2167 && ! isblank ((unsigned char) *p
))
2170 while (*p
!= '\0' && *p
!= stop1
&& *p
!= stop2
)
2173 while (*p
!= '\0' && *p
!= stop1
2174 && ! isblank ((unsigned char) *p
))
2177 while (*p
!= '\0' && *p
!= stop1
)
2183 if (p
> string
&& p
[-1] == '\\')
2185 /* Search for more backslashes. */
2186 register int i
= -2;
2187 while (&p
[i
] >= string
&& p
[i
] == '\\')
2190 /* Only compute the length if really needed. */
2191 if (string_len
== 0)
2192 string_len
= strlen (string
);
2193 /* The number of backslashes is now -I.
2194 Copy P over itself to swallow half of them. */
2195 bcopy (&p
[i
/ 2], &p
[i
], (string_len
- (p
- string
)) - (i
/ 2) + 1);
2198 /* All the backslashes quoted each other; the STOPCHAR was
2202 /* The STOPCHAR was quoted by a backslash. Look for another. */
2205 /* No backslash in sight. */
2209 /* Never hit a STOPCHAR or blank (with BLANK nonzero). */
2213 /* Search PATTERN for an unquoted %. */
2216 find_percent (char *pattern
)
2218 return find_char_unquote (pattern
, '%', 0, 0);
2221 /* Parse a string into a sequence of filenames represented as a
2222 chain of struct nameseq's in reverse order and return that chain.
2224 The string is passed as STRINGP, the address of a string pointer.
2225 The string pointer is updated to point at the first character
2226 not parsed, which either is a null char or equals STOPCHAR.
2228 SIZE is how big to construct chain elements.
2229 This is useful if we want them actually to be other structures
2230 that have room for additional info.
2232 If STRIP is nonzero, strip `./'s off the beginning. */
2235 parse_file_seq (char **stringp
, int stopchar
, unsigned int size
, int strip
)
2237 register struct nameseq
*new = 0;
2238 register struct nameseq
*new1
, *lastnew1
;
2239 register char *p
= *stringp
;
2244 # define VMS_COMMA ','
2246 # define VMS_COMMA 0
2251 /* Skip whitespace; see if any more names are left. */
2258 /* Yes, find end of next name. */
2260 p
= find_char_unquote (q
, stopchar
, VMS_COMMA
, 1);
2262 /* convert comma separated list to space separated */
2267 if (stopchar
== ':' && p
&& *p
== ':'
2268 && !(isspace ((unsigned char)p
[1]) || !p
[1]
2269 || isspace ((unsigned char)p
[-1])))
2271 p
= find_char_unquote (p
+1, stopchar
, VMS_COMMA
, 1);
2274 #ifdef HAVE_DOS_PATHS
2275 /* For DOS paths, skip a "C:\..." or a "C:/..." until we find the
2276 first colon which isn't followed by a slash or a backslash.
2277 Note that tokens separated by spaces should be treated as separate
2278 tokens since make doesn't allow path names with spaces */
2279 if (stopchar
== ':')
2280 while (p
!= 0 && !isspace ((unsigned char)*p
) &&
2281 (p
[1] == '\\' || p
[1] == '/') && isalpha ((unsigned char)p
[-1]))
2282 p
= find_char_unquote (p
+ 1, stopchar
, VMS_COMMA
, 1);
2289 /* Skip leading `[]'s. */
2290 while (p
- q
> 2 && q
[0] == '[' && q
[1] == ']')
2292 /* Skip leading `./'s. */
2293 while (p
- q
> 2 && q
[0] == '.' && q
[1] == '/')
2296 q
+= 2; /* Skip "./". */
2297 while (q
< p
&& *q
== '/')
2298 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
2302 /* Extract the filename just found, and skip it. */
2305 /* ".///" was stripped to "". */
2310 name
= savestring ("", 0);
2312 name
= savestring ("./", 2);
2317 /* VMS filenames can have a ':' in them but they have to be '\'ed but we need
2318 * to remove this '\' before we can use the filename.
2319 * Savestring called because q may be read-only string constant.
2322 char *qbase
= xstrdup (q
);
2323 char *pbase
= qbase
+ (p
-q
);
2330 if (*q1
== '\\' && *(q1
+1) == ':')
2337 name
= savestring (qbase
, p1
- qbase
);
2341 name
= savestring (q
, p
- q
);
2344 /* Add it to the front of the chain. */
2345 new1
= (struct nameseq
*) xmalloc (size
);
2353 /* Look for multi-word archive references.
2354 They are indicated by a elt ending with an unmatched `)' and
2355 an elt further down the chain (i.e., previous in the file list)
2356 with an unmatched `(' (e.g., "lib(mem"). */
2361 if (new1
->name
[0] != '(' /* Don't catch "(%)" and suchlike. */
2362 && new1
->name
[strlen (new1
->name
) - 1] == ')'
2363 && strchr (new1
->name
, '(') == 0)
2365 /* NEW1 ends with a `)' but does not contain a `('.
2366 Look back for an elt with an opening `(' but no closing `)'. */
2368 struct nameseq
*n
= new1
->next
, *lastn
= new1
;
2370 while (n
!= 0 && (paren
= strchr (n
->name
, '(')) == 0)
2376 /* Ignore something starting with `(', as that cannot actually
2377 be an archive-member reference (and treating it as such
2378 results in an empty file name, which causes much lossage). */
2379 && n
->name
[0] != '(')
2381 /* N is the first element in the archive group.
2382 Its name looks like "lib(mem" (with no closing `)'). */
2386 /* Copy "lib(" into LIBNAME. */
2388 libname
= (char *) alloca (paren
- n
->name
+ 1);
2389 bcopy (n
->name
, libname
, paren
- n
->name
);
2390 libname
[paren
- n
->name
] = '\0';
2394 /* N was just "lib(", part of something like "lib( a b)".
2395 Edit it out of the chain and free its storage. */
2396 lastn
->next
= n
->next
;
2399 /* LASTN->next is the new stopping elt for the loop below. */
2404 /* Replace N's name with the full archive reference. */
2405 name
= concat (libname
, paren
, ")");
2410 if (new1
->name
[1] == '\0')
2412 /* NEW1 is just ")", part of something like "lib(a b )".
2413 Omit it from the chain and free its storage. */
2417 lastnew1
->next
= new1
->next
;
2421 free ((char *) lastn
);
2425 /* Replace also NEW1->name, which already has closing `)'. */
2426 name
= concat (libname
, new1
->name
, "");
2432 /* Trace back from NEW1 (the end of the list) until N
2433 (the beginning of the list), rewriting each name
2434 with the full archive reference. */
2438 name
= concat (libname
, new1
->name
, ")");
2447 /* No frobnication happening. Just step down the list. */
2464 /* Find the next line of text in an eval buffer, combining continuation lines
2466 Return the number of actual lines read (> 1 if continuation lines).
2467 Returns -1 if there's nothing left in the buffer.
2469 After this function, ebuf->buffer points to the first character of the
2473 /* Read a line of text from a STRING.
2474 Since we aren't really reading from a file, don't bother with linenumbers.
2477 static unsigned long
2478 readstring (struct ebuffer
*ebuf
)
2482 /* If there is nothing left in this buffer, return 0. */
2483 if (ebuf
->bufnext
>= ebuf
->bufstart
+ ebuf
->size
)
2486 /* Set up a new starting point for the buffer, and find the end of the
2487 next logical line (taking into account backslash/newline pairs). */
2489 eol
= ebuf
->buffer
= ebuf
->bufnext
;
2497 /* Find the next newline. At EOS, stop. */
2498 eol
= p
= strchr (eol
, '\n');
2501 ebuf
->bufnext
= ebuf
->bufstart
+ ebuf
->size
+ 1;
2505 /* Found a newline; if it's escaped continue; else we're done. */
2506 while (p
> bol
&& *(--p
) == '\\')
2507 backslash
= !backslash
;
2513 /* Overwrite the newline char. */
2515 ebuf
->bufnext
= eol
+1;
2521 readline (struct ebuffer
*ebuf
)
2528 /* The behaviors between string and stream buffers are different enough to
2529 warrant different functions. Do the Right Thing. */
2532 return readstring (ebuf
);
2534 /* When reading from a file, we always start over at the beginning of the
2535 buffer for each new line. */
2537 p
= start
= ebuf
->bufstart
;
2538 end
= p
+ ebuf
->size
;
2541 while (fgets (p
, end
- p
, ebuf
->fp
) != 0)
2550 /* This only happens when the first thing on the line is a '\0'.
2551 It is a pretty hopeless case, but (wonder of wonders) Athena
2552 lossage strikes again! (xmkmf puts NULs in its makefiles.)
2553 There is nothing really to be done; we synthesize a newline so
2554 the following line doesn't appear to be part of this line. */
2556 _("warning: NUL character seen; rest of line ignored"));
2561 /* Jump past the text we just read. */
2564 /* If the last char isn't a newline, the whole line didn't fit into the
2565 buffer. Get some more buffer and try again. */
2569 /* We got a newline, so add one to the count of lines. */
2572 #if !defined(WINDOWS32) && !defined(__MSDOS__) && !defined(__EMX__)
2573 /* Check to see if the line was really ended with CRLF; if so ignore
2575 if ((p
- start
) > 1 && p
[-2] == '\r')
2583 for (p2
= p
- 2; p2
>= start
; --p2
)
2587 backslash
= !backslash
;
2596 /* It was a backslash/newline combo. If we have more space, read
2601 /* We need more space at the end of our buffer, so realloc it.
2602 Make sure to preserve the current offset of p. */
2605 unsigned long off
= p
- start
;
2607 start
= ebuf
->buffer
= ebuf
->bufstart
= (char *) xrealloc (start
,
2610 end
= start
+ ebuf
->size
;
2615 if (ferror (ebuf
->fp
))
2616 pfatal_with_name (ebuf
->floc
.filenm
);
2618 /* If we found some lines, return how many.
2619 If we didn't, but we did find _something_, that indicates we read the last
2620 line of a file with no final newline; return 1.
2621 If we read nothing, we're at EOF; return -1. */
2623 return nlines
? nlines
: p
== ebuf
->bufstart
? -1 : 1;
2626 /* Parse the next "makefile word" from the input buffer, and return info
2629 A "makefile word" is one of:
2631 w_bogus Should never happen
2633 w_static A static word; cannot be expanded
2634 w_variable A word containing one or more variables/functions
2636 w_dcolon A double-colon
2637 w_semicolon A semicolon
2638 w_varassign A variable assignment operator (=, :=, +=, or ?=)
2640 Note that this function is only used when reading certain parts of the
2641 makefile. Don't use it where special rules hold sway (RHS of a variable,
2642 in a command list, etc.) */
2644 static enum make_word_type
2645 get_next_mword (char *buffer
, char *delim
, char **startp
, unsigned int *length
)
2647 enum make_word_type wtype
= w_bogus
;
2648 char *p
= buffer
, *beg
;
2651 /* Skip any leading whitespace. */
2652 while (isblank ((unsigned char)*p
))
2664 wtype
= w_semicolon
;
2668 wtype
= w_varassign
;
2682 wtype
= w_varassign
;
2692 wtype
= w_varassign
;
2697 if (delim
&& strchr (delim
, c
))
2702 /* Did we find something? If so, return now. */
2703 if (wtype
!= w_bogus
)
2706 /* This is some non-operator word. A word consists of the longest
2707 string of characters that doesn't contain whitespace, one of [:=#],
2708 or [?+]=, or one of the chars in the DELIM string. */
2710 /* We start out assuming a static word; if we see a variable we'll
2711 adjust our assumptions then. */
2714 /* We already found the first value of "c", above. */
2729 #ifdef HAVE_DOS_PATHS
2730 /* A word CAN include a colon in its drive spec. The drive
2731 spec is allowed either at the beginning of a word, or as part
2732 of the archive member name, like in "libfoo.a(d:/foo/bar.o)". */
2734 && (*p
== '/' || *p
== '\\') && isalpha ((unsigned char)p
[-2])
2735 && (p
- beg
== 2 || p
[-3] == '(')))
2744 /* This is a variable reference, so note that it's expandable.
2745 Then read it to the matching close paren. */
2753 /* This is a single-letter variable reference. */
2756 for (count
=0; *p
!= '\0'; ++p
)
2760 else if (*p
== closeparen
&& --count
< 0)
2787 if (delim
&& strchr (delim
, c
))
2805 /* Construct the list of include directories
2806 from the arguments and the default list. */
2809 construct_include_path (char **arg_dirs
)
2811 register unsigned int i
;
2812 #ifdef VAXC /* just don't ask ... */
2817 /* Table to hold the dirs. */
2819 register unsigned int defsize
= (sizeof (default_include_directories
)
2820 / sizeof (default_include_directories
[0]));
2821 register unsigned int max
= 5;
2822 register char **dirs
= (char **) xmalloc ((5 + defsize
) * sizeof (char *));
2823 register unsigned int idx
= 0;
2829 /* First consider any dirs specified with -I switches.
2830 Ignore dirs that don't exist. */
2833 while (*arg_dirs
!= 0)
2835 char *dir
= *arg_dirs
++;
2840 char *expanded
= tilde_expand (dir
);
2845 EINTRLOOP (e
, stat (dir
, &stbuf
));
2846 if (e
== 0 && S_ISDIR (stbuf
.st_mode
))
2852 xrealloc ((char *) dirs
, (max
+ defsize
) * sizeof (char *));
2856 else if (dir
!= arg_dirs
[-1])
2860 /* Now add at the end the standard default dirs. */
2864 /* The environment variable $DJDIR holds the root of the
2865 DJGPP directory tree; add ${DJDIR}/include. */
2866 struct variable
*djdir
= lookup_variable ("DJDIR", 5);
2870 char *defdir
= (char *) xmalloc (strlen (djdir
->value
) + 8 + 1);
2872 strcat (strcpy (defdir
, djdir
->value
), "/include");
2873 dirs
[idx
++] = defdir
;
2878 for (i
= 0; default_include_directories
[i
] != 0; ++i
)
2882 EINTRLOOP (e
, stat (default_include_directories
[i
], &stbuf
));
2883 if (e
== 0 && S_ISDIR (stbuf
.st_mode
))
2884 dirs
[idx
++] = default_include_directories
[i
];
2889 /* Now compute the maximum length of any name in it. */
2892 for (i
= 0; i
< idx
; ++i
)
2894 unsigned int len
= strlen (dirs
[i
]);
2895 /* If dir name is written with a trailing slash, discard it. */
2896 if (dirs
[i
][len
- 1] == '/')
2897 /* We can't just clobber a null in because it may have come from
2898 a literal string and literal strings may not be writable. */
2899 dirs
[i
] = savestring (dirs
[i
], len
- 1);
2900 if (len
> max_incl_len
)
2904 include_directories
= dirs
;
2907 /* Expand ~ or ~USER at the beginning of NAME.
2908 Return a newly malloc'd string or 0. */
2911 tilde_expand (char *name
)
2914 if (name
[1] == '/' || name
[1] == '\0')
2916 extern char *getenv ();
2921 /* Turn off --warn-undefined-variables while we expand HOME. */
2922 int save
= warn_undefined_variables_flag
;
2923 warn_undefined_variables_flag
= 0;
2925 home_dir
= allocated_variable_expand ("$(HOME)");
2927 warn_undefined_variables_flag
= save
;
2930 is_variable
= home_dir
[0] != '\0';
2934 home_dir
= getenv ("HOME");
2936 #if !defined(_AMIGA) && !defined(WINDOWS32)
2937 if (home_dir
== 0 || home_dir
[0] == '\0')
2939 extern char *getlogin ();
2940 char *logname
= getlogin ();
2944 struct passwd
*p
= getpwnam (logname
);
2946 home_dir
= p
->pw_dir
;
2949 #endif /* !AMIGA && !WINDOWS32 */
2952 char *new = concat (home_dir
, "", name
+ 1);
2958 #if !defined(_AMIGA) && !defined(WINDOWS32)
2961 struct passwd
*pwent
;
2962 char *userend
= strchr (name
+ 1, '/');
2965 pwent
= getpwnam (name
+ 1);
2969 return xstrdup (pwent
->pw_dir
);
2971 return concat (pwent
->pw_dir
, "/", userend
+ 1);
2973 else if (userend
!= 0)
2976 #endif /* !AMIGA && !WINDOWS32 */
2981 /* Given a chain of struct nameseq's describing a sequence of filenames,
2982 in reverse of the intended order, return a new chain describing the
2983 result of globbing the filenames. The new chain is in forward order.
2984 The links of the old chain are freed or used in the new chain.
2985 Likewise for the names in the old chain.
2987 SIZE is how big to construct chain elements.
2988 This is useful if we want them actually to be other structures
2989 that have room for additional info. */
2992 multi_glob (struct nameseq
*chain
, unsigned int size
)
2994 extern void dir_setup_glob ();
2995 register struct nameseq
*new = 0;
2996 register struct nameseq
*old
;
2997 struct nameseq
*nexto
;
3000 dir_setup_glob (&gl
);
3002 for (old
= chain
; old
!= 0; old
= nexto
)
3010 if (old
->name
[0] == '~')
3012 char *newname
= tilde_expand (old
->name
);
3016 old
->name
= newname
;
3021 if (ar_name (old
->name
))
3023 /* OLD->name is an archive member reference.
3024 Replace it with the archive file name,
3025 and save the member name in MEMNAME.
3026 We will glob on the archive name and then
3027 reattach MEMNAME later. */
3029 ar_parse_name (old
->name
, &arname
, &memname
);
3035 #endif /* !NO_ARCHIVES */
3037 switch (glob (old
->name
, GLOB_NOCHECK
|GLOB_ALTDIRFUNC
, NULL
, &gl
))
3039 case 0: /* Success. */
3041 register int i
= gl
.gl_pathc
;
3047 /* Try to glob on MEMNAME within the archive. */
3048 struct nameseq
*found
3049 = ar_glob (gl
.gl_pathv
[i
], memname
, size
);
3052 /* No matches. Use MEMNAME as-is. */
3053 unsigned int alen
= strlen (gl
.gl_pathv
[i
]);
3054 unsigned int mlen
= strlen (memname
);
3056 = (struct nameseq
*) xmalloc (size
);
3057 if (size
> sizeof (struct nameseq
))
3058 bzero (((char *) elt
) + sizeof (struct nameseq
),
3059 size
- sizeof (struct nameseq
));
3060 elt
->name
= (char *) xmalloc (alen
+ 1 + mlen
+ 2);
3061 bcopy (gl
.gl_pathv
[i
], elt
->name
, alen
);
3062 elt
->name
[alen
] = '(';
3063 bcopy (memname
, &elt
->name
[alen
+ 1], mlen
);
3064 elt
->name
[alen
+ 1 + mlen
] = ')';
3065 elt
->name
[alen
+ 1 + mlen
+ 1] = '\0';
3071 /* Find the end of the FOUND chain. */
3072 struct nameseq
*f
= found
;
3073 while (f
->next
!= 0)
3076 /* Attach the chain being built to the end of the FOUND
3077 chain, and make FOUND the new NEW chain. */
3085 #endif /* !NO_ARCHIVES */
3087 struct nameseq
*elt
= (struct nameseq
*) xmalloc (size
);
3088 if (size
> sizeof (struct nameseq
))
3089 bzero (((char *) elt
) + sizeof (struct nameseq
),
3090 size
- sizeof (struct nameseq
));
3091 elt
->name
= xstrdup (gl
.gl_pathv
[i
]);
3103 fatal (NILF
, _("virtual memory exhausted"));