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
,
141 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 (makefiles
)
152 unsigned int num_makefiles
= 0;
154 /* Create *_LIST variables, to hold the makefiles, targets, and variables
155 we will be reading. */
157 define_variable ("MAKEFILE_LIST", sizeof ("MAKEFILE_LIST")-1, "", o_file
, 0);
159 DB (DB_BASIC
, (_("Reading makefiles...\n")));
161 /* If there's a non-null variable MAKEFILES, its value is a list of
162 files to read first thing. But don't let it prevent reading the
163 default makefiles and don't let the default goal come from there. */
171 /* Turn off --warn-undefined-variables while we expand MAKEFILES. */
172 int save
= warn_undefined_variables_flag
;
173 warn_undefined_variables_flag
= 0;
175 value
= allocated_variable_expand ("$(MAKEFILES)");
177 warn_undefined_variables_flag
= save
;
180 /* Set NAME to the start of next token and LENGTH to its length.
181 MAKEFILES is updated for finding remaining tokens. */
184 while ((name
= find_next_token (&p
, &length
)) != 0)
188 name
= xstrdup (name
);
189 if (eval_makefile (name
,
190 RM_NO_DEFAULT_GOAL
|RM_INCLUDED
|RM_DONTCARE
) < 2)
197 /* Read makefiles specified with -f switches. */
200 while (*makefiles
!= 0)
202 struct dep
*tail
= read_makefiles
;
203 register struct dep
*d
;
205 if (! eval_makefile (*makefiles
, 0))
206 perror_with_name ("", *makefiles
);
208 /* Find the right element of read_makefiles. */
210 while (d
->next
!= tail
)
213 /* Use the storage read_makefile allocates. */
214 *makefiles
= dep_name (d
);
219 /* If there were no -f switches, try the default names. */
221 if (num_makefiles
== 0)
223 static char *default_makefiles
[] =
225 /* all lower case since readdir() (the vms version) 'lowercasifies' */
226 { "makefile.vms", "gnumakefile.", "makefile.", 0 };
229 { "GNUmakefile", "Makefile", "SMakefile", 0 };
230 #else /* !Amiga && !VMS */
231 { "GNUmakefile", "makefile", "Makefile", 0 };
234 register char **p
= default_makefiles
;
235 while (*p
!= 0 && !file_exists_p (*p
))
240 if (! eval_makefile (*p
, 0))
241 perror_with_name ("", *p
);
245 /* No default makefile was found. Add the default makefiles to the
246 `read_makefiles' chain so they will be updated if possible. */
247 struct dep
*tail
= read_makefiles
;
248 /* Add them to the tail, after any MAKEFILES variable makefiles. */
249 while (tail
!= 0 && tail
->next
!= 0)
251 for (p
= default_makefiles
; *p
!= 0; ++p
)
253 struct dep
*d
= (struct dep
*) xmalloc (sizeof (struct dep
));
255 d
->file
= enter_file (*p
);
256 d
->file
->dontcare
= 1;
258 /* Tell update_goal_chain to bail out as soon as this file is
259 made, and main not to die if we can't make this file. */
260 d
->changed
= RM_DONTCARE
;
272 return read_makefiles
;
276 eval_makefile (filename
, flags
)
282 const struct floc
*curfile
;
286 ebuf
.floc
.filenm
= filename
;
287 ebuf
.floc
.lineno
= 1;
289 if (ISDB (DB_VERBOSE
))
291 printf (_("Reading makefile `%s'"), filename
);
292 if (flags
& RM_NO_DEFAULT_GOAL
)
293 printf (_(" (no default goal)"));
294 if (flags
& RM_INCLUDED
)
295 printf (_(" (search path)"));
296 if (flags
& RM_DONTCARE
)
297 printf (_(" (don't care)"));
298 if (flags
& RM_NO_TILDE
)
299 printf (_(" (no ~ expansion)"));
303 /* First, get a stream to read. */
305 /* Expand ~ in FILENAME unless it came from `include',
306 in which case it was already done. */
307 if (!(flags
& RM_NO_TILDE
) && filename
[0] == '~')
309 char *expanded
= tilde_expand (filename
);
314 ebuf
.fp
= fopen (filename
, "r");
315 /* Save the error code so we print the right message later. */
316 makefile_errno
= errno
;
318 /* If the makefile wasn't found and it's either a makefile from
319 the `MAKEFILES' variable or an included makefile,
320 search the included makefile search path for this makefile. */
321 if (ebuf
.fp
== 0 && (flags
& RM_INCLUDED
) && *filename
!= '/')
323 register unsigned int i
;
324 for (i
= 0; include_directories
[i
] != 0; ++i
)
326 char *name
= concat (include_directories
[i
], "/", filename
);
327 ebuf
.fp
= fopen (name
, "r");
338 /* Add FILENAME to the chain of read makefiles. */
339 deps
= (struct dep
*) xmalloc (sizeof (struct dep
));
340 deps
->next
= read_makefiles
;
341 read_makefiles
= deps
;
343 deps
->file
= lookup_file (filename
);
346 deps
->file
= enter_file (xstrdup (filename
));
347 if (flags
& RM_DONTCARE
)
348 deps
->file
->dontcare
= 1;
350 if (filename
!= ebuf
.floc
.filenm
)
352 filename
= deps
->file
->name
;
353 deps
->changed
= flags
;
354 deps
->ignore_mtime
= 0;
356 /* If the makefile can't be found at all, give up entirely. */
360 /* If we did some searching, errno has the error from the last
361 attempt, rather from FILENAME itself. Restore it in case the
362 caller wants to use it in a message. */
363 errno
= makefile_errno
;
367 /* Add this makefile to the list. */
368 do_variable_definition (&ebuf
.floc
, "MAKEFILE_LIST", filename
, o_file
,
371 /* Evaluate the makefile */
374 ebuf
.buffer
= ebuf
.bufnext
= ebuf
.bufstart
= xmalloc (ebuf
.size
);
376 curfile
= reading_file
;
377 reading_file
= &ebuf
.floc
;
379 r
= eval (&ebuf
, !(flags
& RM_NO_DEFAULT_GOAL
));
381 reading_file
= curfile
;
385 free (ebuf
.bufstart
);
394 const struct floc
*curfile
;
397 /* Evaluate the buffer */
399 ebuf
.size
= strlen (buffer
);
400 ebuf
.buffer
= ebuf
.bufnext
= ebuf
.bufstart
= buffer
;
403 ebuf
.floc
= *reading_file
;
405 curfile
= reading_file
;
406 reading_file
= &ebuf
.floc
;
410 reading_file
= curfile
;
416 /* Read file FILENAME as a makefile and add its contents to the data base.
418 SET_DEFAULT is true if we are allowed to set the default goal.
420 FILENAME is added to the `read_makefiles' chain.
422 Returns 0 if a file was not found or not read.
423 Returns 1 if FILENAME was found and read.
424 Returns 2 if FILENAME was read, and we kept a reference (don't free it). */
427 eval (ebuf
, set_default
)
428 struct ebuffer
*ebuf
;
431 static char *collapsed
= 0;
432 static unsigned int collapsed_length
= 0;
433 unsigned int commands_len
= 200;
435 unsigned int commands_idx
= 0;
436 unsigned int cmds_started
, tgts_started
;
437 int ignoring
= 0, in_ignored_define
= 0;
438 int no_targets
= 0; /* Set when reading a rule without targets. */
439 int have_sysv_atvar
= 0;
440 struct nameseq
*filenames
= 0;
441 struct dep
*deps
= 0;
444 char *pattern
= 0, *pattern_percent
;
448 #define record_waiting_files() \
451 if (filenames != 0) \
453 fi.lineno = tgts_started; \
454 record_files (filenames, pattern, pattern_percent, deps, \
455 cmds_started, commands, commands_idx, two_colon, \
456 have_sysv_atvar, &fi, set_default); \
461 if (pattern) { free(pattern); pattern = 0; } \
465 cmds_started
= tgts_started
= 1;
467 fstart
= &ebuf
->floc
;
468 fi
.filenm
= ebuf
->floc
.filenm
;
470 /* Loop over lines in the file.
471 The strategy is to accumulate target names in FILENAMES, dependencies
472 in DEPS and commands in COMMANDS. These are used to define a rule
473 when the start of the next rule (or eof) is encountered.
475 When you see a "continue" in the loop below, that means we are moving on
476 to the next line _without_ ending any rule that we happen to be working
477 with at the moment. If you see a "goto rule_complete", then the
478 statement we just parsed also finishes the previous rule. */
480 commands
= xmalloc (200);
490 /* Grab the next line to be evaluated */
491 ebuf
->floc
.lineno
+= nlines
;
492 nlines
= readline (ebuf
);
494 /* If there is nothing left to eval, we're done. */
498 /* If this line is empty, skip it. */
503 linelen
= strlen (line
);
505 /* Check for a shell command line first.
506 If it is not one, we can stop treating tab specially. */
510 /* Ignore the commands in a rule with no targets. */
513 /* If there is no preceding rule line, don't treat this line
514 as a command, even though it begins with a tab character.
515 SunOS 4 make appears to behave this way. */
520 /* Yep, this is a shell command, and we don't care. */
523 /* Append this command line to the line being accumulated. */
524 if (commands_idx
== 0)
525 cmds_started
= ebuf
->floc
.lineno
;
527 if (linelen
+ 1 + commands_idx
> commands_len
)
529 commands_len
= (linelen
+ 1 + commands_idx
) * 2;
530 commands
= xrealloc (commands
, commands_len
);
532 bcopy (line
, &commands
[commands_idx
], linelen
);
533 commands_idx
+= linelen
;
534 commands
[commands_idx
++] = '\n';
540 /* This line is not a shell command line. Don't worry about tabs. */
542 if (collapsed_length
< linelen
+1)
544 collapsed_length
= linelen
+1;
547 collapsed
= (char *) xmalloc (collapsed_length
);
549 strcpy (collapsed
, line
);
550 /* Collapse continuation lines. */
551 collapse_continuations (collapsed
);
552 remove_comments (collapsed
);
554 /* Compare a word, both length and contents. */
555 #define word1eq(s) (len == sizeof(s)-1 && strneq (s, p, sizeof(s)-1))
557 while (isspace ((unsigned char)*p
))
561 /* This line is completely empty--ignore it. */
564 /* Find the end of the first token. Note we don't need to worry about
565 * ":" here since we compare tokens by length (so "export" will never
566 * be equal to "export:").
568 for (p2
= p
+1; *p2
!= '\0' && !isspace ((unsigned char)*p2
); ++p2
)
572 /* Find the start of the second token. If it looks like a target or
573 variable definition it can't be a preprocessor token so skip
574 them--this allows variables/targets named `ifdef', `export', etc. */
575 while (isspace ((unsigned char)*p2
))
578 if ((p2
[0] == ':' || p2
[0] == '+' || p2
[0] == '=') && p2
[1] == '\0')
580 /* It can't be a preprocessor token so skip it if we're ignoring */
584 goto skip_conditionals
;
587 /* We must first check for conditional and `define' directives before
588 ignoring anything, since they control what we will do with
591 if (!in_ignored_define
592 && (word1eq ("ifdef") || word1eq ("ifndef")
593 || word1eq ("ifeq") || word1eq ("ifneq")
594 || word1eq ("else") || word1eq ("endif")))
596 int i
= conditional_line (p
, fstart
);
598 fatal (fstart
, _("invalid syntax in conditional"));
604 if (word1eq ("endef"))
606 if (!in_ignored_define
)
607 fatal (fstart
, _("extraneous `endef'"));
608 in_ignored_define
= 0;
612 if (word1eq ("define"))
615 in_ignored_define
= 1;
619 fatal (fstart
, _("empty variable name"));
621 /* Let the variable name be the whole rest of the line,
622 with trailing blanks stripped (comments have already been
623 removed), so it could be a complex variable/function
624 reference that might contain blanks. */
625 p
= strchr (p2
, '\0');
626 while (isblank ((unsigned char)p
[-1]))
628 do_define (p2
, p
- p2
, o_file
, ebuf
);
633 if (word1eq ("override"))
636 error (fstart
, _("empty `override' directive"));
638 if (strneq (p2
, "define", 6)
639 && (isblank ((unsigned char)p2
[6]) || p2
[6] == '\0'))
642 in_ignored_define
= 1;
645 p2
= next_token (p2
+ 6);
647 fatal (fstart
, _("empty variable name"));
649 /* Let the variable name be the whole rest of the line,
650 with trailing blanks stripped (comments have already been
651 removed), so it could be a complex variable/function
652 reference that might contain blanks. */
653 p
= strchr (p2
, '\0');
654 while (isblank ((unsigned char)p
[-1]))
656 do_define (p2
, p
- p2
, o_override
, ebuf
);
660 && !try_variable_definition (fstart
, p2
, o_override
, 0))
661 error (fstart
, _("invalid `override' directive"));
667 /* Ignore the line. We continue here so conditionals
668 can appear in the middle of a rule. */
671 if (word1eq ("export"))
673 /* 'export' by itself causes everything to be exported. */
675 export_all_variables
= 1;
680 v
= try_variable_definition (fstart
, p2
, o_file
, 0);
682 v
->export
= v_export
;
688 /* Expand the line so we can use indirect and constructed
689 variable names in an export command. */
690 p2
= ap
= allocated_variable_expand (p2
);
692 for (p
= find_next_token (&p2
, &len
); p
!= 0;
693 p
= find_next_token (&p2
, &len
))
695 v
= lookup_variable (p
, len
);
697 v
= define_variable_loc (p
, len
, "", o_file
, 0,
699 v
->export
= v_export
;
708 if (word1eq ("unexport"))
711 export_all_variables
= 0;
718 /* Expand the line so we can use indirect and constructed
719 variable names in an unexport command. */
720 p2
= ap
= allocated_variable_expand (p2
);
722 for (p
= find_next_token (&p2
, &len
); p
!= 0;
723 p
= find_next_token (&p2
, &len
))
725 v
= lookup_variable (p
, len
);
727 v
= define_variable_loc (p
, len
, "", o_file
, 0, fstart
);
729 v
->export
= v_noexport
;
738 if (word1eq ("vpath"))
742 p2
= variable_expand (p2
);
743 p
= find_next_token (&p2
, &len
);
746 pattern
= savestring (p
, len
);
747 p
= find_next_token (&p2
, &len
);
748 /* No searchpath means remove all previous
749 selective VPATH's with the same pattern. */
752 /* No pattern means remove all previous selective VPATH's. */
754 construct_vpath_list (pattern
, p
);
761 if (word1eq ("include") || word1eq ("-include") || word1eq ("sinclude"))
763 /* We have found an `include' line specifying a nested
764 makefile to be read at this point. */
765 struct conditionals
*save
;
766 struct conditionals new_conditionals
;
767 struct nameseq
*files
;
768 /* "-include" (vs "include") says no error if the file does not
769 exist. "sinclude" is an alias for this from SGI. */
770 int noerror
= (p
[0] != 'i');
772 p
= allocated_variable_expand (p2
);
776 _("no file name for `%sinclude'"), noerror
? "-" : "");
780 /* Parse the list of file names. */
782 files
= multi_glob (parse_file_seq (&p2
, '\0',
783 sizeof (struct nameseq
),
785 sizeof (struct nameseq
));
788 /* Save the state of conditionals and start
789 the included makefile with a clean slate. */
791 bzero ((char *) &new_conditionals
, sizeof new_conditionals
);
792 conditionals
= &new_conditionals
;
794 /* Record the rules that are waiting so they will determine
795 the default goal before those in the included makefile. */
796 record_waiting_files ();
798 /* Read each included makefile. */
801 struct nameseq
*next
= files
->next
;
802 char *name
= files
->name
;
805 free ((char *)files
);
808 r
= eval_makefile (name
, (RM_INCLUDED
| RM_NO_TILDE
809 | (noerror
? RM_DONTCARE
: 0)));
813 error (fstart
, "%s: %s", name
, strerror (errno
));
818 /* Free any space allocated by conditional_line. */
819 if (conditionals
->ignoring
)
820 free (conditionals
->ignoring
);
821 if (conditionals
->seen_else
)
822 free (conditionals
->seen_else
);
830 if (try_variable_definition (fstart
, p
, o_file
, 0))
831 /* This line has been dealt with. */
836 p
= collapsed
; /* Ignore comments, etc. */
837 while (isblank ((unsigned char)*p
))
840 /* The line is completely blank; that is harmless. */
843 /* This line starts with a tab but was not caught above
844 because there was no preceding target, and the line
845 might have been usable as a variable definition.
846 But now we know it is definitely lossage. */
847 fatal(fstart
, _("commands commence before first target"));
850 /* This line describes some target files. This is complicated by
851 the existence of target-specific variables, because we can't
852 expand the entire line until we know if we have one or not. So
853 we expand the line word by word until we find the first `:',
854 then check to see if it's a target-specific variable.
856 In this algorithm, `lb_next' will point to the beginning of the
857 unexpanded parts of the input buffer, while `p2' points to the
858 parts of the expanded buffer we haven't searched yet. */
861 enum make_word_type wtype
;
862 enum variable_origin v_origin
;
863 char *cmdleft
, *semip
, *lb_next
;
864 unsigned int len
, plen
= 0;
867 /* Record the previous rule. */
869 record_waiting_files ();
870 tgts_started
= fstart
->lineno
;
872 /* Search the line for an unquoted ; that is not after an
874 cmdleft
= find_char_unquote (line
, ';', '#', 0);
875 if (cmdleft
!= 0 && *cmdleft
== '#')
877 /* We found a comment before a semicolon. */
881 else if (cmdleft
!= 0)
882 /* Found one. Cut the line short there before expanding it. */
886 collapse_continuations (line
);
888 /* We can't expand the entire line, since if it's a per-target
889 variable we don't want to expand it. So, walk from the
890 beginning, expanding as we go, and looking for "interesting"
891 chars. The first word is always expandable. */
892 wtype
= get_next_mword(line
, NULL
, &lb_next
, &len
);
897 fatal(fstart
, _("missing rule before commands"));
898 /* This line contained something but turned out to be nothing
899 but whitespace (a comment?). */
904 /* We accept and ignore rules without targets for
905 compatibility with SunOS 4 make. */
913 p2
= variable_expand_string(NULL
, lb_next
, len
);
919 /* Look for a semicolon in the expanded line. */
920 cmdleft
= find_char_unquote (p2
, ';', 0, 0);
924 unsigned long p2_off
= p2
- variable_buffer
;
925 unsigned long cmd_off
= cmdleft
- variable_buffer
;
926 char *pend
= p2
+ strlen(p2
);
928 /* Append any remnants of lb, then cut the line short
932 /* One school of thought says that you shouldn't expand
933 here, but merely copy, since now you're beyond a ";"
934 and into a command script. However, the old parser
935 expanded the whole line, so we continue that for
936 backwards-compatiblity. Also, it wouldn't be
937 entirely consistent, since we do an unconditional
938 expand below once we know we don't have a
939 target-specific variable. */
940 (void)variable_expand_string(pend
, lb_next
, (long)-1);
941 lb_next
+= strlen(lb_next
);
942 p2
= variable_buffer
+ p2_off
;
943 cmdleft
= variable_buffer
+ cmd_off
+ 1;
947 colonp
= find_char_unquote(p2
, ':', 0, 0);
948 #ifdef HAVE_DOS_PATHS
949 /* The drive spec brain-damage strikes again... */
950 /* Note that the only separators of targets in this context
951 are whitespace and a left paren. If others are possible,
952 they should be added to the string in the call to index. */
953 while (colonp
&& (colonp
[1] == '/' || colonp
[1] == '\\') &&
954 colonp
> p2
&& isalpha ((unsigned char)colonp
[-1]) &&
955 (colonp
== p2
+ 1 || strchr (" \t(", colonp
[-2]) != 0))
956 colonp
= find_char_unquote(colonp
+ 1, ':', 0, 0);
961 wtype
= get_next_mword(lb_next
, NULL
, &lb_next
, &len
);
967 p2
= variable_expand_string(p2
, lb_next
, len
);
968 /* We don't need to worry about cmdleft here, because if it was
969 found in the variable_buffer the entire buffer has already
970 been expanded... we'll never get here. */
973 p2
= next_token (variable_buffer
);
975 /* If the word we're looking at is EOL, see if there's _anything_
976 on the line. If not, a variable expanded to nothing, so ignore
977 it. If so, we can't parse this line so punt. */
981 /* There's no need to be ivory-tower about this: check for
982 one of the most common bugs found in makefiles... */
983 fatal (fstart
, _("missing separator%s"),
984 !strneq(line
, " ", 8) ? ""
985 : _(" (did you mean TAB instead of 8 spaces?)"));
989 /* Make the colon the end-of-string so we know where to stop
990 looking for targets. */
992 filenames
= multi_glob (parse_file_seq (&p2
, '\0',
993 sizeof (struct nameseq
),
995 sizeof (struct nameseq
));
1000 /* We accept and ignore rules without targets for
1001 compatibility with SunOS 4 make. */
1005 /* This should never be possible; we handled it above. */
1006 assert (*p2
!= '\0');
1009 /* Is this a one-colon or two-colon entry? */
1010 two_colon
= *p2
== ':';
1014 /* Test to see if it's a target-specific variable. Copy the rest
1015 of the buffer over, possibly temporarily (we'll expand it later
1016 if it's not a target-specific variable). PLEN saves the length
1017 of the unparsed section of p2, for later. */
1018 if (*lb_next
!= '\0')
1020 unsigned int l
= p2
- variable_buffer
;
1022 (void) variable_buffer_output (p2
+plen
,
1023 lb_next
, strlen (lb_next
)+1);
1024 p2
= variable_buffer
+ l
;
1027 /* See if it's an "override" keyword; if so see if what comes after
1028 it looks like a variable definition. */
1030 wtype
= get_next_mword (p2
, NULL
, &p
, &len
);
1033 if (wtype
== w_static
&& word1eq ("override"))
1035 v_origin
= o_override
;
1036 wtype
= get_next_mword (p
+len
, NULL
, &p
, &len
);
1040 wtype
= get_next_mword (p
+len
, NULL
, NULL
, NULL
);
1042 if (wtype
== w_varassign
)
1044 /* If there was a semicolon found, add it back, plus anything
1049 variable_buffer_output (p2
+ strlen (p2
),
1050 semip
, strlen (semip
)+1);
1052 record_target_var (filenames
, p
, two_colon
, v_origin
, fstart
);
1057 /* This is a normal target, _not_ a target-specific variable.
1058 Unquote any = in the dependency list. */
1059 find_char_unquote (lb_next
, '=', 0, 0);
1061 /* We have some targets, so don't ignore the following commands. */
1064 /* Expand the dependencies, etc. */
1065 if (*lb_next
!= '\0')
1067 unsigned int l
= p2
- variable_buffer
;
1068 (void) variable_expand_string (p2
+ plen
, lb_next
, (long)-1);
1069 p2
= variable_buffer
+ l
;
1071 /* Look for a semicolon in the expanded line. */
1074 cmdleft
= find_char_unquote (p2
, ';', 0, 0);
1076 *(cmdleft
++) = '\0';
1080 /* Do any of the prerequisites appear to have $@ etc.? */
1081 have_sysv_atvar
= 0;
1082 if (!posix_pedantic
)
1083 for (p
= strchr (p2
, '$'); p
!= 0; p
= strchr (p
+1, '$'))
1084 if (p
[1] == '@' || (p
[1] == '(' && p
[2] == '@'))
1086 have_sysv_atvar
= 1;
1090 /* Is this a static pattern rule: `target: %targ: %dep; ...'? */
1091 p
= strchr (p2
, ':');
1092 while (p
!= 0 && p
[-1] == '\\')
1094 register char *q
= &p
[-1];
1095 register int backslash
= 0;
1096 while (*q
-- == '\\')
1097 backslash
= !backslash
;
1099 p
= strchr (p
+ 1, ':');
1104 /* Here, the situation is quite complicated. Let's have a look
1105 at a couple of targets:
1113 The rule is that it's only a target, if there are TWO :'s
1114 OR a space around the :.
1116 if (p
&& !(isspace ((unsigned char)p
[1]) || !p
[1]
1117 || isspace ((unsigned char)p
[-1])))
1120 #ifdef HAVE_DOS_PATHS
1126 /* For DOS paths, skip a "C:\..." or a "C:/..." */
1127 if (p
!= 0 && (p
[1] == '\\' || p
[1] == '/') &&
1128 isalpha ((unsigned char)p
[-1]) &&
1129 (p
== p2
+ 1 || strchr (" \t:(", p
[-2]) != 0)) {
1130 p
= strchr (p
+ 1, ':');
1133 } while (check_again
);
1138 struct nameseq
*target
;
1139 target
= parse_file_seq (&p2
, ':', sizeof (struct nameseq
), 1);
1142 fatal (fstart
, _("missing target pattern"));
1143 else if (target
->next
!= 0)
1144 fatal (fstart
, _("multiple target patterns"));
1145 pattern
= target
->name
;
1146 pattern_percent
= find_percent (pattern
);
1147 if (pattern_percent
== 0)
1148 fatal (fstart
, _("target pattern contains no `%%'"));
1149 free((char *)target
);
1154 /* Parse the dependencies. */
1155 deps
= (struct dep
*)
1156 multi_glob (parse_file_seq (&p2
, '|', sizeof (struct dep
), 1),
1157 sizeof (struct dep
));
1160 /* Files that follow '|' are special prerequisites that
1161 need only exist in order to satisfy the dependency.
1162 Their modification times are irrelevant. */
1163 struct dep
**deps_ptr
= &deps
;
1165 for (deps_ptr
= &deps
; *deps_ptr
; deps_ptr
= &(*deps_ptr
)->next
)
1168 *deps_ptr
= (struct dep
*)
1169 multi_glob (parse_file_seq (&p2
, '\0', sizeof (struct dep
), 1),
1170 sizeof (struct dep
));
1171 for (d
= *deps_ptr
; d
!= 0; d
= d
->next
)
1172 d
->ignore_mtime
= 1;
1178 /* Semicolon means rest of line is a command. */
1179 unsigned int len
= strlen (cmdleft
);
1181 cmds_started
= fstart
->lineno
;
1183 /* Add this command line to the buffer. */
1184 if (len
+ 2 > commands_len
)
1186 commands_len
= (len
+ 2) * 2;
1187 commands
= (char *) xrealloc (commands
, commands_len
);
1189 bcopy (cmdleft
, commands
, len
);
1190 commands_idx
+= len
;
1191 commands
[commands_idx
++] = '\n';
1197 /* We get here except in the case that we just read a rule line.
1198 Record now the last rule we read, so following spurious
1199 commands are properly diagnosed. */
1201 record_waiting_files ();
1206 if (conditionals
->if_cmds
)
1207 fatal (fstart
, _("missing `endif'"));
1209 /* At eof, record the last rule. */
1210 record_waiting_files ();
1212 free ((char *) commands
);
1218 /* Execute a `define' directive.
1219 The first line has already been read, and NAME is the name of
1220 the variable to be defined. The following lines remain to be read. */
1223 do_define (name
, namelen
, origin
, ebuf
)
1225 unsigned int namelen
;
1226 enum variable_origin origin
;
1227 struct ebuffer
*ebuf
;
1229 struct floc defstart
;
1232 unsigned int length
= 100;
1233 char *definition
= (char *) xmalloc (length
);
1234 unsigned int idx
= 0;
1237 /* Expand the variable name. */
1238 char *var
= (char *) alloca (namelen
+ 1);
1239 bcopy (name
, var
, namelen
);
1240 var
[namelen
] = '\0';
1241 var
= variable_expand (var
);
1243 defstart
= ebuf
->floc
;
1250 ebuf
->floc
.lineno
+= nlines
;
1251 nlines
= readline (ebuf
);
1253 /* If there is nothing left to eval, we're done. */
1257 line
= ebuf
->buffer
;
1259 collapse_continuations (line
);
1261 /* If the line doesn't begin with a tab, test to see if it introduces
1262 another define, or ends one. */
1264 /* Stop if we find an 'endef' */
1265 if (line
[0] != '\t')
1267 p
= next_token (line
);
1270 /* If this is another 'define', increment the level count. */
1271 if ((len
== 6 || (len
> 6 && isblank ((unsigned char)p
[6])))
1272 && strneq (p
, "define", 6))
1275 /* If this is an 'endef', decrement the count. If it's now 0,
1276 we've found the last one. */
1277 else if ((len
== 5 || (len
> 5 && isblank ((unsigned char)p
[5])))
1278 && strneq (p
, "endef", 5))
1281 remove_comments (p
);
1282 if (*next_token (p
) != '\0')
1284 _("Extraneous text after `endef' directive"));
1288 /* Define the variable. */
1290 definition
[0] = '\0';
1292 definition
[idx
- 1] = '\0';
1294 /* Always define these variables in the global set. */
1295 define_variable_global (var
, strlen (var
), definition
,
1296 origin
, 1, &defstart
);
1303 /* Otherwise add this line to the variable definition. */
1304 len
= strlen (line
);
1305 if (idx
+ len
+ 1 > length
)
1307 length
= (idx
+ len
) * 2;
1308 definition
= (char *) xrealloc (definition
, length
+ 1);
1311 bcopy (line
, &definition
[idx
], len
);
1313 /* Separate lines with a newline. */
1314 definition
[idx
++] = '\n';
1318 fatal (&defstart
, _("missing `endef', unterminated `define'"));
1324 /* Interpret conditional commands "ifdef", "ifndef", "ifeq",
1325 "ifneq", "else" and "endif".
1326 LINE is the input line, with the command as its first word.
1328 FILENAME and LINENO are the filename and line number in the
1329 current makefile. They are used for error messages.
1331 Value is -1 if the line is invalid,
1332 0 if following text should be interpreted,
1333 1 if following text should be ignored. */
1336 conditional_line (line
, flocp
)
1338 const struct floc
*flocp
;
1342 register unsigned int i
;
1346 /* It's an "if..." command. */
1347 notdef
= line
[2] == 'n';
1350 cmdname
= line
[3] == 'd' ? "ifndef" : "ifneq";
1351 line
+= cmdname
[3] == 'd' ? 7 : 6;
1355 cmdname
= line
[2] == 'd' ? "ifdef" : "ifeq";
1356 line
+= cmdname
[2] == 'd' ? 6 : 5;
1361 /* It's an "else" or "endif" command. */
1362 notdef
= line
[1] == 'n';
1363 cmdname
= notdef
? "endif" : "else";
1364 line
+= notdef
? 5 : 4;
1367 line
= next_token (line
);
1369 if (*cmdname
== 'e')
1372 error (flocp
, _("Extraneous text after `%s' directive"), cmdname
);
1373 /* "Else" or "endif". */
1374 if (conditionals
->if_cmds
== 0)
1375 fatal (flocp
, _("extraneous `%s'"), cmdname
);
1376 /* NOTDEF indicates an `endif' command. */
1378 --conditionals
->if_cmds
;
1379 else if (conditionals
->seen_else
[conditionals
->if_cmds
- 1])
1380 fatal (flocp
, _("only one `else' per conditional"));
1383 /* Toggle the state of ignorance. */
1384 conditionals
->ignoring
[conditionals
->if_cmds
- 1]
1385 = !conditionals
->ignoring
[conditionals
->if_cmds
- 1];
1386 /* Record that we have seen an `else' in this conditional.
1387 A second `else' will be erroneous. */
1388 conditionals
->seen_else
[conditionals
->if_cmds
- 1] = 1;
1390 for (i
= 0; i
< conditionals
->if_cmds
; ++i
)
1391 if (conditionals
->ignoring
[i
])
1396 if (conditionals
->allocated
== 0)
1398 conditionals
->allocated
= 5;
1399 conditionals
->ignoring
= (char *) xmalloc (conditionals
->allocated
);
1400 conditionals
->seen_else
= (char *) xmalloc (conditionals
->allocated
);
1403 ++conditionals
->if_cmds
;
1404 if (conditionals
->if_cmds
> conditionals
->allocated
)
1406 conditionals
->allocated
+= 5;
1407 conditionals
->ignoring
= (char *)
1408 xrealloc (conditionals
->ignoring
, conditionals
->allocated
);
1409 conditionals
->seen_else
= (char *)
1410 xrealloc (conditionals
->seen_else
, conditionals
->allocated
);
1413 /* Record that we have seen an `if...' but no `else' so far. */
1414 conditionals
->seen_else
[conditionals
->if_cmds
- 1] = 0;
1416 /* Search through the stack to see if we're already ignoring. */
1417 for (i
= 0; i
< conditionals
->if_cmds
- 1; ++i
)
1418 if (conditionals
->ignoring
[i
])
1420 /* We are already ignoring, so just push a level
1421 to match the next "else" or "endif", and keep ignoring.
1422 We don't want to expand variables in the condition. */
1423 conditionals
->ignoring
[conditionals
->if_cmds
- 1] = 1;
1427 if (cmdname
[notdef
? 3 : 2] == 'd')
1429 /* "Ifdef" or "ifndef". */
1432 register char *p
= end_of_token (line
);
1438 /* Expand the thing we're looking up, so we can use indirect and
1439 constructed variable names. */
1441 var
= allocated_variable_expand (line
);
1443 v
= lookup_variable (var
, strlen (var
));
1444 conditionals
->ignoring
[conditionals
->if_cmds
- 1]
1445 = (v
!= 0 && *v
->value
!= '\0') == notdef
;
1451 /* "Ifeq" or "ifneq". */
1454 char termin
= *line
== '(' ? ',' : *line
;
1456 if (termin
!= ',' && termin
!= '"' && termin
!= '\'')
1460 /* Find the end of the first string. */
1463 register int count
= 0;
1464 for (; *line
!= '\0'; ++line
)
1467 else if (*line
== ')')
1469 else if (*line
== ',' && count
<= 0)
1473 while (*line
!= '\0' && *line
!= termin
)
1481 /* Strip blanks after the first string. */
1483 while (isblank ((unsigned char)p
[-1]))
1490 s2
= variable_expand (s1
);
1491 /* We must allocate a new copy of the expanded string because
1492 variable_expand re-uses the same buffer. */
1494 s1
= (char *) alloca (len
+ 1);
1495 bcopy (s2
, s1
, len
+ 1);
1498 /* Find the start of the second string. */
1499 line
= next_token (line
);
1501 termin
= termin
== ',' ? ')' : *line
;
1502 if (termin
!= ')' && termin
!= '"' && termin
!= '\'')
1505 /* Find the end of the second string. */
1508 register int count
= 0;
1509 s2
= next_token (line
);
1510 for (line
= s2
; *line
!= '\0'; ++line
)
1514 else if (*line
== ')')
1527 while (*line
!= '\0' && *line
!= termin
)
1535 line
= next_token (++line
);
1537 error (flocp
, _("Extraneous text after `%s' directive"), cmdname
);
1539 s2
= variable_expand (s2
);
1540 conditionals
->ignoring
[conditionals
->if_cmds
- 1]
1541 = streq (s1
, s2
) == notdef
;
1544 /* Search through the stack to see if we're ignoring. */
1545 for (i
= 0; i
< conditionals
->if_cmds
; ++i
)
1546 if (conditionals
->ignoring
[i
])
1551 /* Remove duplicate dependencies in CHAIN. */
1553 static unsigned long
1557 return_STRING_HASH_1 (dep_name ((struct dep
const *) key
));
1560 static unsigned long
1564 return_STRING_HASH_2 (dep_name ((struct dep
const *) key
));
1572 struct dep
*dx
= (struct dep
*) x
;
1573 struct dep
*dy
= (struct dep
*) y
;
1574 int cmp
= strcmp (dep_name (dx
), dep_name (dy
));
1576 /* If the names are the same but ignore_mtimes are not equal, one of these
1577 is an order-only prerequisite and one isn't. That means that we should
1578 remove the one that isn't and keep the one that is. */
1580 if (!cmp
&& dx
->ignore_mtime
!= dy
->ignore_mtime
)
1581 dx
->ignore_mtime
= dy
->ignore_mtime
= 0;
1588 uniquize_deps (chain
)
1591 struct hash_table deps
;
1592 register struct dep
**depp
;
1594 hash_init (&deps
, 500, dep_hash_1
, dep_hash_2
, dep_hash_cmp
);
1596 /* Make sure that no dependencies are repeated. This does not
1597 really matter for the purpose of updating targets, but it
1598 might make some names be listed twice for $^ and $?. */
1603 struct dep
*dep
= *depp
;
1604 struct dep
**dep_slot
= (struct dep
**) hash_find_slot (&deps
, dep
);
1605 if (HASH_VACANT (*dep_slot
))
1607 hash_insert_at (&deps
, dep
, dep_slot
);
1612 /* Don't bother freeing duplicates.
1613 It's dangerous and little benefit accrues. */
1618 hash_free (&deps
, 0);
1621 /* Record target-specific variable values for files FILENAMES.
1622 TWO_COLON is nonzero if a double colon was used.
1624 The links of FILENAMES are freed, and so are any names in it
1625 that are not incorporated into other data structures.
1627 If the target is a pattern, add the variable to the pattern-specific
1628 variable value list. */
1631 record_target_var (filenames
, defn
, two_colon
, origin
, flocp
)
1632 struct nameseq
*filenames
;
1635 enum variable_origin origin
;
1636 const struct floc
*flocp
;
1638 struct nameseq
*nextf
;
1639 struct variable_set_list
*global
;
1641 global
= current_variable_set_list
;
1643 /* If the variable is an append version, store that but treat it as a
1644 normal recursive variable. */
1646 for (; filenames
!= 0; filenames
= nextf
)
1649 register char *name
= filenames
->name
;
1650 struct variable_set_list
*vlist
;
1654 nextf
= filenames
->next
;
1655 free ((char *) filenames
);
1657 /* If it's a pattern target, then add it to the pattern-specific
1659 percent
= find_percent (name
);
1662 struct pattern_var
*p
;
1664 /* Get a reference for this pattern-specific variable struct. */
1665 p
= create_pattern_var(name
, percent
);
1673 /* Get a file reference for this file, and initialize it.
1674 We don't want to just call enter_file() because that allocates a
1675 new entry if the file is a double-colon, which we don't want in
1677 f
= lookup_file (name
);
1679 f
= enter_file (name
);
1680 else if (f
->double_colon
)
1681 f
= f
->double_colon
;
1683 initialize_file_variables (f
, 1);
1684 vlist
= f
->variables
;
1688 /* Make the new variable context current and define the variable. */
1689 current_variable_set_list
= vlist
;
1690 v
= try_variable_definition (flocp
, defn
, origin
, 1);
1692 error (flocp
, _("Malformed per-target variable definition"));
1695 /* If it's not an override, check to see if there was a command-line
1696 setting. If so, reset the value. */
1697 if (origin
!= o_override
)
1699 struct variable
*gv
;
1700 int len
= strlen(v
->name
);
1702 current_variable_set_list
= global
;
1703 gv
= lookup_variable (v
->name
, len
);
1704 if (gv
&& (gv
->origin
== o_env_override
|| gv
->origin
== o_command
))
1706 v
= define_variable_in_set (v
->name
, len
, gv
->value
, gv
->origin
,
1707 gv
->recursive
, vlist
->set
, flocp
);
1712 /* Free name if not needed further. */
1713 if (name
!= fname
&& (name
< fname
|| name
> fname
+ strlen (fname
)))
1717 current_variable_set_list
= global
;
1720 /* Record a description line for files FILENAMES,
1721 with dependencies DEPS, commands to execute described
1722 by COMMANDS and COMMANDS_IDX, coming from FILENAME:COMMANDS_STARTED.
1723 TWO_COLON is nonzero if a double colon was used.
1724 If not nil, PATTERN is the `%' pattern to make this
1725 a static pattern rule, and PATTERN_PERCENT is a pointer
1726 to the `%' within it.
1728 The links of FILENAMES are freed, and so are any names in it
1729 that are not incorporated into other data structures. */
1732 record_files (filenames
, pattern
, pattern_percent
, deps
, cmds_started
,
1733 commands
, commands_idx
, two_colon
, have_sysv_atvar
,
1735 struct nameseq
*filenames
;
1736 char *pattern
, *pattern_percent
;
1738 unsigned int cmds_started
;
1740 unsigned int commands_idx
;
1742 int have_sysv_atvar
;
1743 const struct floc
*flocp
;
1746 struct nameseq
*nextf
;
1748 unsigned int max_targets
= 0, target_idx
= 0;
1749 char **targets
= 0, **target_percents
= 0;
1750 struct commands
*cmds
;
1752 if (commands_idx
> 0)
1754 cmds
= (struct commands
*) xmalloc (sizeof (struct commands
));
1755 cmds
->fileinfo
.filenm
= flocp
->filenm
;
1756 cmds
->fileinfo
.lineno
= cmds_started
;
1757 cmds
->commands
= savestring (commands
, commands_idx
);
1758 cmds
->command_lines
= 0;
1763 for (; filenames
!= 0; filenames
= nextf
)
1765 char *name
= filenames
->name
;
1769 char *implicit_percent
;
1771 nextf
= filenames
->next
;
1774 /* Check for .POSIX. We used to do this in snap_deps() but that's not
1775 good enough: it doesn't happen until after the makefile is read,
1776 which means we cannot use its value during parsing. */
1778 if (streq (name
, ".POSIX"))
1781 implicit_percent
= find_percent (name
);
1782 implicit
|= implicit_percent
!= 0;
1784 if (implicit
&& pattern
!= 0)
1785 fatal (flocp
, _("mixed implicit and static pattern rules"));
1787 if (implicit
&& implicit_percent
== 0)
1788 fatal (flocp
, _("mixed implicit and normal rules"));
1795 targets
= (char **) xmalloc (5 * sizeof (char *));
1796 target_percents
= (char **) xmalloc (5 * sizeof (char *));
1799 else if (target_idx
== max_targets
- 1)
1802 targets
= (char **) xrealloc ((char *) targets
,
1803 max_targets
* sizeof (char *));
1805 = (char **) xrealloc ((char *) target_percents
,
1806 max_targets
* sizeof (char *));
1808 targets
[target_idx
] = name
;
1809 target_percents
[target_idx
] = implicit_percent
;
1814 /* If there are multiple filenames, copy the chain DEPS
1815 for all but the last one. It is not safe for the same deps
1816 to go in more than one place in the data base. */
1817 this = nextf
!= 0 ? copy_dep_chain (deps
) : deps
;
1821 /* If this is an extended static rule:
1822 `targets: target%pattern: dep%pattern; cmds',
1823 translate each dependency pattern into a plain filename
1824 using the target pattern and this target's name. */
1825 if (!pattern_matches (pattern
, pattern_percent
, name
))
1827 /* Give a warning if the rule is meaningless. */
1829 _("target `%s' doesn't match the target pattern"), name
);
1834 /* We use patsubst_expand to do the work of translating
1835 the target pattern, the target's name and the dependencies'
1836 patterns into plain dependency names. */
1837 char *buffer
= variable_expand ("");
1839 for (d
= this; d
!= 0; d
= d
->next
)
1842 char *percent
= find_percent (d
->name
);
1845 o
= patsubst_expand (buffer
, name
, pattern
, d
->name
,
1846 pattern_percent
, percent
);
1847 /* If the name expanded to the empty string, that's
1851 _("target `%s' leaves prerequisite pattern empty"),
1854 d
->name
= savestring (buffer
, o
- buffer
);
1859 /* If at least one of the dependencies uses $$@ etc. deal with that.
1860 It would be very nice and very simple to just expand everything, but
1861 it would break a lot of backward compatibility. Maybe that's OK
1862 since we're just emulating a SysV function, and if we do that then
1863 why not emulate it completely (that's what SysV make does: it
1864 re-expands the entire prerequisite list, all the time, with $@
1865 etc. in scope. But, it would be a pain indeed to document this
1866 ("iff you use $$@, your prerequisite lists is expanded twice...")
1867 Ouch. Maybe better to make the code more complex. */
1869 if (have_sysv_atvar
)
1872 int tlen
= strlen (name
);
1873 char *fnp
= strrchr (name
, '/');
1881 flen
= strlen (fnp
);
1891 for (d
= this; d
!= 0; d
= d
->next
)
1892 for (p
= strchr (d
->name
, '$'); p
!= 0; p
= strchr (p
+1, '$'))
1898 /* If it's a '$@' or '$(@', it's escaped */
1900 && (p
[1] == '@' || (p
[1] == '(' && p
[2] == '@')))
1902 bcopy (p
, s
, strlen (p
)+1);
1906 /* Maybe found one. Check. p will point to '@' [for $@] or
1907 ')' [for $(@)] or 'D' [for $(@D)] or 'F' [for $(@F)]. */
1909 && (p
[0] != '(' || (++p
)[0] != '@'
1911 && (p
[1] != ')' || (p
[0] != 'D' && p
[0] != 'F')))))
1914 /* Found one. Compute the length and string ptr. Move p
1915 past the variable reference. */
1937 /* Get more space. */
1939 int soff
= s
- d
->name
;
1940 int poff
= p
- d
->name
;
1941 d
->name
= (char *) xrealloc (d
->name
,
1942 strlen (d
->name
) + atlen
+ 1);
1947 /* Copy the string over. */
1948 bcopy(p
, s
+atlen
, strlen (p
)+1);
1949 bcopy(at
, s
, atlen
);
1956 /* Single-colon. Combine these dependencies
1957 with others in file's existing record, if any. */
1958 f
= enter_file (name
);
1960 if (f
->double_colon
)
1962 _("target file `%s' has both : and :: entries"), f
->name
);
1964 /* If CMDS == F->CMDS, this target was listed in this rule
1965 more than once. Just give a warning since this is harmless. */
1966 if (cmds
!= 0 && cmds
== f
->cmds
)
1968 _("target `%s' given more than once in the same rule."),
1971 /* Check for two single-colon entries both with commands.
1972 Check is_target so that we don't lose on files such as .c.o
1973 whose commands were preinitialized. */
1974 else if (cmds
!= 0 && f
->cmds
!= 0 && f
->is_target
)
1976 error (&cmds
->fileinfo
,
1977 _("warning: overriding commands for target `%s'"),
1979 error (&f
->cmds
->fileinfo
,
1980 _("warning: ignoring old commands for target `%s'"),
1986 /* Defining .DEFAULT with no deps or cmds clears it. */
1987 if (f
== default_file
&& this == 0 && cmds
== 0)
1991 /* Defining .SUFFIXES with no dependencies
1992 clears out the list of suffixes. */
1993 if (f
== suffix_file
&& this == 0)
1998 struct dep
*nextd
= d
->next
;
2005 else if (f
->deps
!= 0)
2007 /* Add the file's old deps and the new ones in THIS together. */
2009 struct dep
*firstdeps
, *moredeps
;
2012 /* This is the rule with commands, so put its deps first.
2013 The rationale behind this is that $< expands to the
2014 first dep in the chain, and commands use $< expecting
2015 to get the dep that rule specifies. */
2021 /* Append the new deps to the old ones. */
2022 firstdeps
= f
->deps
;
2027 firstdeps
= moredeps
;
2031 while (d
->next
!= 0)
2036 f
->deps
= firstdeps
;
2041 /* If this is a static pattern rule, set the file's stem to
2042 the part of its name that matched the `%' in the pattern,
2043 so you can use $* in the commands. */
2046 static char *percent
= "%";
2047 char *buffer
= variable_expand ("");
2048 char *o
= patsubst_expand (buffer
, name
, pattern
, percent
,
2049 pattern_percent
, percent
);
2050 f
->stem
= savestring (buffer
, o
- buffer
);
2055 /* Double-colon. Make a new record
2056 even if the file already has one. */
2057 f
= lookup_file (name
);
2058 /* Check for both : and :: rules. Check is_target so
2059 we don't lose on default suffix rules or makefiles. */
2060 if (f
!= 0 && f
->is_target
&& !f
->double_colon
)
2062 _("target file `%s' has both : and :: entries"), f
->name
);
2063 f
= enter_file (name
);
2064 /* If there was an existing entry and it was a double-colon
2065 entry, enter_file will have returned a new one, making it the
2066 prev pointer of the old one, and setting its double_colon
2067 pointer to the first one. */
2068 if (f
->double_colon
== 0)
2069 /* This is the first entry for this name, so we must
2070 set its double_colon pointer to itself. */
2071 f
->double_colon
= f
;
2077 /* Free name if not needed further. */
2078 if (f
!= 0 && name
!= f
->name
2079 && (name
< f
->name
|| name
> f
->name
+ strlen (f
->name
)))
2085 /* See if this is first target seen whose name does
2086 not start with a `.', unless it contains a slash. */
2087 if (default_goal_file
== 0 && set_default
2088 && (*name
!= '.' || strchr (name
, '/') != 0
2089 #ifdef HAVE_DOS_PATHS
2090 || strchr (name
, '\\') != 0
2096 /* If this file is a suffix, don't
2097 let it be the default goal file. */
2099 for (d
= suffix_file
->deps
; d
!= 0; d
= d
->next
)
2101 register struct dep
*d2
;
2102 if (*dep_name (d
) != '.' && streq (name
, dep_name (d
)))
2107 for (d2
= suffix_file
->deps
; d2
!= 0; d2
= d2
->next
)
2109 register unsigned int len
= strlen (dep_name (d2
));
2110 if (!strneq (name
, dep_name (d2
), len
))
2112 if (streq (name
+ len
, dep_name (d
)))
2123 default_goal_file
= f
;
2129 targets
[target_idx
] = 0;
2130 target_percents
[target_idx
] = 0;
2131 create_pattern_rule (targets
, target_percents
, two_colon
, deps
, cmds
, 1);
2132 free ((char *) target_percents
);
2136 /* Search STRING for an unquoted STOPCHAR or blank (if BLANK is nonzero).
2137 Backslashes quote STOPCHAR, blanks if BLANK is nonzero, and backslash.
2138 Quoting backslashes are removed from STRING by compacting it into
2139 itself. Returns a pointer to the first unquoted STOPCHAR if there is
2140 one, or nil if there are none. */
2143 find_char_unquote (string
, stop1
, stop2
, blank
)
2149 unsigned int string_len
= 0;
2150 register char *p
= string
;
2155 while (*p
!= '\0' && *p
!= stop1
&& *p
!= stop2
2156 && ! isblank ((unsigned char) *p
))
2159 while (*p
!= '\0' && *p
!= stop1
&& *p
!= stop2
)
2162 while (*p
!= '\0' && *p
!= stop1
2163 && ! isblank ((unsigned char) *p
))
2166 while (*p
!= '\0' && *p
!= stop1
)
2172 if (p
> string
&& p
[-1] == '\\')
2174 /* Search for more backslashes. */
2175 register int i
= -2;
2176 while (&p
[i
] >= string
&& p
[i
] == '\\')
2179 /* Only compute the length if really needed. */
2180 if (string_len
== 0)
2181 string_len
= strlen (string
);
2182 /* The number of backslashes is now -I.
2183 Copy P over itself to swallow half of them. */
2184 bcopy (&p
[i
/ 2], &p
[i
], (string_len
- (p
- string
)) - (i
/ 2) + 1);
2187 /* All the backslashes quoted each other; the STOPCHAR was
2191 /* The STOPCHAR was quoted by a backslash. Look for another. */
2194 /* No backslash in sight. */
2198 /* Never hit a STOPCHAR or blank (with BLANK nonzero). */
2202 /* Search PATTERN for an unquoted %. */
2205 find_percent (pattern
)
2208 return find_char_unquote (pattern
, '%', 0, 0);
2211 /* Parse a string into a sequence of filenames represented as a
2212 chain of struct nameseq's in reverse order and return that chain.
2214 The string is passed as STRINGP, the address of a string pointer.
2215 The string pointer is updated to point at the first character
2216 not parsed, which either is a null char or equals STOPCHAR.
2218 SIZE is how big to construct chain elements.
2219 This is useful if we want them actually to be other structures
2220 that have room for additional info.
2222 If STRIP is nonzero, strip `./'s off the beginning. */
2225 parse_file_seq (stringp
, stopchar
, size
, strip
)
2231 register struct nameseq
*new = 0;
2232 register struct nameseq
*new1
, *lastnew1
;
2233 register char *p
= *stringp
;
2238 # define VMS_COMMA ','
2240 # define VMS_COMMA 0
2245 /* Skip whitespace; see if any more names are left. */
2252 /* Yes, find end of next name. */
2254 p
= find_char_unquote (q
, stopchar
, VMS_COMMA
, 1);
2256 /* convert comma separated list to space separated */
2261 if (stopchar
== ':' && p
&& *p
== ':'
2262 && !(isspace ((unsigned char)p
[1]) || !p
[1]
2263 || isspace ((unsigned char)p
[-1])))
2265 p
= find_char_unquote (p
+1, stopchar
, VMS_COMMA
, 1);
2268 #ifdef HAVE_DOS_PATHS
2269 /* For DOS paths, skip a "C:\..." or a "C:/..." until we find the
2270 first colon which isn't followed by a slash or a backslash.
2271 Note that tokens separated by spaces should be treated as separate
2272 tokens since make doesn't allow path names with spaces */
2273 if (stopchar
== ':')
2274 while (p
!= 0 && !isspace ((unsigned char)*p
) &&
2275 (p
[1] == '\\' || p
[1] == '/') && isalpha ((unsigned char)p
[-1]))
2276 p
= find_char_unquote (p
+ 1, stopchar
, VMS_COMMA
, 1);
2283 /* Skip leading `[]'s. */
2284 while (p
- q
> 2 && q
[0] == '[' && q
[1] == ']')
2286 /* Skip leading `./'s. */
2287 while (p
- q
> 2 && q
[0] == '.' && q
[1] == '/')
2290 q
+= 2; /* Skip "./". */
2291 while (q
< p
&& *q
== '/')
2292 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
2296 /* Extract the filename just found, and skip it. */
2299 /* ".///" was stripped to "". */
2304 name
= savestring ("", 0);
2306 name
= savestring ("./", 2);
2311 /* VMS filenames can have a ':' in them but they have to be '\'ed but we need
2312 * to remove this '\' before we can use the filename.
2313 * Savestring called because q may be read-only string constant.
2316 char *qbase
= xstrdup (q
);
2317 char *pbase
= qbase
+ (p
-q
);
2324 if (*q1
== '\\' && *(q1
+1) == ':')
2331 name
= savestring (qbase
, p1
- qbase
);
2335 name
= savestring (q
, p
- q
);
2338 /* Add it to the front of the chain. */
2339 new1
= (struct nameseq
*) xmalloc (size
);
2347 /* Look for multi-word archive references.
2348 They are indicated by a elt ending with an unmatched `)' and
2349 an elt further down the chain (i.e., previous in the file list)
2350 with an unmatched `(' (e.g., "lib(mem"). */
2355 if (new1
->name
[0] != '(' /* Don't catch "(%)" and suchlike. */
2356 && new1
->name
[strlen (new1
->name
) - 1] == ')'
2357 && strchr (new1
->name
, '(') == 0)
2359 /* NEW1 ends with a `)' but does not contain a `('.
2360 Look back for an elt with an opening `(' but no closing `)'. */
2362 struct nameseq
*n
= new1
->next
, *lastn
= new1
;
2364 while (n
!= 0 && (paren
= strchr (n
->name
, '(')) == 0)
2370 /* Ignore something starting with `(', as that cannot actually
2371 be an archive-member reference (and treating it as such
2372 results in an empty file name, which causes much lossage). */
2373 && n
->name
[0] != '(')
2375 /* N is the first element in the archive group.
2376 Its name looks like "lib(mem" (with no closing `)'). */
2380 /* Copy "lib(" into LIBNAME. */
2382 libname
= (char *) alloca (paren
- n
->name
+ 1);
2383 bcopy (n
->name
, libname
, paren
- n
->name
);
2384 libname
[paren
- n
->name
] = '\0';
2388 /* N was just "lib(", part of something like "lib( a b)".
2389 Edit it out of the chain and free its storage. */
2390 lastn
->next
= n
->next
;
2393 /* LASTN->next is the new stopping elt for the loop below. */
2398 /* Replace N's name with the full archive reference. */
2399 name
= concat (libname
, paren
, ")");
2404 if (new1
->name
[1] == '\0')
2406 /* NEW1 is just ")", part of something like "lib(a b )".
2407 Omit it from the chain and free its storage. */
2411 lastnew1
->next
= new1
->next
;
2415 free ((char *) lastn
);
2419 /* Replace also NEW1->name, which already has closing `)'. */
2420 name
= concat (libname
, new1
->name
, "");
2426 /* Trace back from NEW1 (the end of the list) until N
2427 (the beginning of the list), rewriting each name
2428 with the full archive reference. */
2432 name
= concat (libname
, new1
->name
, ")");
2441 /* No frobnication happening. Just step down the list. */
2458 /* Find the next line of text in an eval buffer, combining continuation lines
2460 Return the number of actual lines read (> 1 if continuation lines).
2461 Returns -1 if there's nothing left in the buffer.
2463 After this function, ebuf->buffer points to the first character of the
2467 /* Read a line of text from a STRING.
2468 Since we aren't really reading from a file, don't bother with linenumbers.
2471 static unsigned long
2473 struct ebuffer
*ebuf
;
2477 /* If there is nothing left in this buffer, return 0. */
2478 if (ebuf
->bufnext
> ebuf
->bufstart
+ ebuf
->size
)
2481 /* Set up a new starting point for the buffer, and find the end of the
2482 next logical line (taking into account backslash/newline pairs). */
2484 p
= ebuf
->buffer
= ebuf
->bufnext
;
2490 /* Find the next newline. Keep track of backslashes as we look. */
2491 for (; *p
!= '\n' && *p
!= '\0'; ++p
)
2493 backslash
= !backslash
;
2495 /* If we got to the end of the string or a newline with no backslash,
2497 if (*p
== '\0' || !backslash
)
2501 /* Overwrite the newline char. */
2503 ebuf
->bufnext
= p
+1;
2510 struct ebuffer
*ebuf
;
2517 /* The behaviors between string and stream buffers are different enough to
2518 warrant different functions. Do the Right Thing. */
2521 return readstring (ebuf
);
2523 /* When reading from a file, we always start over at the beginning of the
2524 buffer for each new line. */
2526 p
= start
= ebuf
->bufstart
;
2527 end
= p
+ ebuf
->size
;
2530 while (fgets (p
, end
- p
, ebuf
->fp
) != 0)
2539 /* This only happens when the first thing on the line is a '\0'.
2540 It is a pretty hopeless case, but (wonder of wonders) Athena
2541 lossage strikes again! (xmkmf puts NULs in its makefiles.)
2542 There is nothing really to be done; we synthesize a newline so
2543 the following line doesn't appear to be part of this line. */
2545 _("warning: NUL character seen; rest of line ignored"));
2550 /* Jump past the text we just read. */
2553 /* If the last char isn't a newline, the whole line didn't fit into the
2554 buffer. Get some more buffer and try again. */
2558 /* We got a newline, so add one to the count of lines. */
2561 #if !defined(WINDOWS32) && !defined(__MSDOS__)
2562 /* Check to see if the line was really ended with CRLF; if so ignore
2564 if ((p
- start
) > 1 && p
[-2] == '\r')
2572 for (p2
= p
- 2; p2
>= start
; --p2
)
2576 backslash
= !backslash
;
2585 /* It was a backslash/newline combo. If we have more space, read
2590 /* We need more space at the end of our buffer, so realloc it.
2591 Make sure to preserve the current offset of p. */
2594 unsigned long off
= p
- start
;
2596 start
= ebuf
->buffer
= ebuf
->bufstart
= (char *) xrealloc (start
,
2599 end
= start
+ ebuf
->size
;
2604 if (ferror (ebuf
->fp
))
2605 pfatal_with_name (ebuf
->floc
.filenm
);
2607 /* If we found some lines, return how many.
2608 If we didn't, but we did find _something_, that indicates we read the last
2609 line of a file with no final newline; return 1.
2610 If we read nothing, we're at EOF; return -1. */
2612 return nlines
? nlines
: p
== ebuf
->bufstart
? -1 : 1;
2615 /* Parse the next "makefile word" from the input buffer, and return info
2618 A "makefile word" is one of:
2620 w_bogus Should never happen
2622 w_static A static word; cannot be expanded
2623 w_variable A word containing one or more variables/functions
2625 w_dcolon A double-colon
2626 w_semicolon A semicolon
2627 w_varassign A variable assignment operator (=, :=, +=, or ?=)
2629 Note that this function is only used when reading certain parts of the
2630 makefile. Don't use it where special rules hold sway (RHS of a variable,
2631 in a command list, etc.) */
2633 static enum make_word_type
2634 get_next_mword (buffer
, delim
, startp
, length
)
2638 unsigned int *length
;
2640 enum make_word_type wtype
= w_bogus
;
2641 char *p
= buffer
, *beg
;
2644 /* Skip any leading whitespace. */
2645 while (isblank ((unsigned char)*p
))
2657 wtype
= w_semicolon
;
2661 wtype
= w_varassign
;
2675 wtype
= w_varassign
;
2685 wtype
= w_varassign
;
2690 if (delim
&& strchr (delim
, c
))
2695 /* Did we find something? If so, return now. */
2696 if (wtype
!= w_bogus
)
2699 /* This is some non-operator word. A word consists of the longest
2700 string of characters that doesn't contain whitespace, one of [:=#],
2701 or [?+]=, or one of the chars in the DELIM string. */
2703 /* We start out assuming a static word; if we see a variable we'll
2704 adjust our assumptions then. */
2707 /* We already found the first value of "c", above. */
2722 #ifdef HAVE_DOS_PATHS
2723 /* A word CAN include a colon in its drive spec. The drive
2724 spec is allowed either at the beginning of a word, or as part
2725 of the archive member name, like in "libfoo.a(d:/foo/bar.o)". */
2727 && (*p
== '/' || *p
== '\\') && isalpha ((unsigned char)p
[-2])
2728 && (p
- beg
== 2 || p
[-3] == '(')))
2737 /* This is a variable reference, so note that it's expandable.
2738 Then read it to the matching close paren. */
2746 /* This is a single-letter variable reference. */
2749 for (count
=0; *p
!= '\0'; ++p
)
2753 else if (*p
== closeparen
&& --count
< 0)
2780 if (delim
&& strchr (delim
, c
))
2798 /* Construct the list of include directories
2799 from the arguments and the default list. */
2802 construct_include_path (arg_dirs
)
2805 register unsigned int i
;
2806 #ifdef VAXC /* just don't ask ... */
2811 /* Table to hold the dirs. */
2813 register unsigned int defsize
= (sizeof (default_include_directories
)
2814 / sizeof (default_include_directories
[0]));
2815 register unsigned int max
= 5;
2816 register char **dirs
= (char **) xmalloc ((5 + defsize
) * sizeof (char *));
2817 register unsigned int idx
= 0;
2823 /* First consider any dirs specified with -I switches.
2824 Ignore dirs that don't exist. */
2827 while (*arg_dirs
!= 0)
2829 char *dir
= *arg_dirs
++;
2833 char *expanded
= tilde_expand (dir
);
2838 if (stat (dir
, &stbuf
) == 0 && S_ISDIR (stbuf
.st_mode
))
2844 xrealloc ((char *) dirs
, (max
+ defsize
) * sizeof (char *));
2848 else if (dir
!= arg_dirs
[-1])
2852 /* Now add at the end the standard default dirs. */
2856 /* The environment variable $DJDIR holds the root of the
2857 DJGPP directory tree; add ${DJDIR}/include. */
2858 struct variable
*djdir
= lookup_variable ("DJDIR", 5);
2862 char *defdir
= (char *) xmalloc (strlen (djdir
->value
) + 8 + 1);
2864 strcat (strcpy (defdir
, djdir
->value
), "/include");
2865 dirs
[idx
++] = defdir
;
2870 for (i
= 0; default_include_directories
[i
] != 0; ++i
)
2871 if (stat (default_include_directories
[i
], &stbuf
) == 0
2872 && S_ISDIR (stbuf
.st_mode
))
2873 dirs
[idx
++] = default_include_directories
[i
];
2877 /* Now compute the maximum length of any name in it. */
2880 for (i
= 0; i
< idx
; ++i
)
2882 unsigned int len
= strlen (dirs
[i
]);
2883 /* If dir name is written with a trailing slash, discard it. */
2884 if (dirs
[i
][len
- 1] == '/')
2885 /* We can't just clobber a null in because it may have come from
2886 a literal string and literal strings may not be writable. */
2887 dirs
[i
] = savestring (dirs
[i
], len
- 1);
2888 if (len
> max_incl_len
)
2892 include_directories
= dirs
;
2895 /* Expand ~ or ~USER at the beginning of NAME.
2896 Return a newly malloc'd string or 0. */
2903 if (name
[1] == '/' || name
[1] == '\0')
2905 extern char *getenv ();
2910 /* Turn off --warn-undefined-variables while we expand HOME. */
2911 int save
= warn_undefined_variables_flag
;
2912 warn_undefined_variables_flag
= 0;
2914 home_dir
= allocated_variable_expand ("$(HOME)");
2916 warn_undefined_variables_flag
= save
;
2919 is_variable
= home_dir
[0] != '\0';
2923 home_dir
= getenv ("HOME");
2925 #if !defined(_AMIGA) && !defined(WINDOWS32)
2926 if (home_dir
== 0 || home_dir
[0] == '\0')
2928 extern char *getlogin ();
2929 char *logname
= getlogin ();
2933 struct passwd
*p
= getpwnam (logname
);
2935 home_dir
= p
->pw_dir
;
2938 #endif /* !AMIGA && !WINDOWS32 */
2941 char *new = concat (home_dir
, "", name
+ 1);
2947 #if !defined(_AMIGA) && !defined(WINDOWS32)
2950 struct passwd
*pwent
;
2951 char *userend
= strchr (name
+ 1, '/');
2954 pwent
= getpwnam (name
+ 1);
2958 return xstrdup (pwent
->pw_dir
);
2960 return concat (pwent
->pw_dir
, "/", userend
+ 1);
2962 else if (userend
!= 0)
2965 #endif /* !AMIGA && !WINDOWS32 */
2970 /* Given a chain of struct nameseq's describing a sequence of filenames,
2971 in reverse of the intended order, return a new chain describing the
2972 result of globbing the filenames. The new chain is in forward order.
2973 The links of the old chain are freed or used in the new chain.
2974 Likewise for the names in the old chain.
2976 SIZE is how big to construct chain elements.
2977 This is useful if we want them actually to be other structures
2978 that have room for additional info. */
2981 multi_glob (chain
, size
)
2982 struct nameseq
*chain
;
2985 extern void dir_setup_glob ();
2986 register struct nameseq
*new = 0;
2987 register struct nameseq
*old
;
2988 struct nameseq
*nexto
;
2991 dir_setup_glob (&gl
);
2993 for (old
= chain
; old
!= 0; old
= nexto
)
3001 if (old
->name
[0] == '~')
3003 char *newname
= tilde_expand (old
->name
);
3007 old
->name
= newname
;
3012 if (ar_name (old
->name
))
3014 /* OLD->name is an archive member reference.
3015 Replace it with the archive file name,
3016 and save the member name in MEMNAME.
3017 We will glob on the archive name and then
3018 reattach MEMNAME later. */
3020 ar_parse_name (old
->name
, &arname
, &memname
);
3026 #endif /* !NO_ARCHIVES */
3028 switch (glob (old
->name
, GLOB_NOCHECK
|GLOB_ALTDIRFUNC
, NULL
, &gl
))
3030 case 0: /* Success. */
3032 register int i
= gl
.gl_pathc
;
3038 /* Try to glob on MEMNAME within the archive. */
3039 struct nameseq
*found
3040 = ar_glob (gl
.gl_pathv
[i
], memname
, size
);
3043 /* No matches. Use MEMNAME as-is. */
3044 unsigned int alen
= strlen (gl
.gl_pathv
[i
]);
3045 unsigned int mlen
= strlen (memname
);
3047 = (struct nameseq
*) xmalloc (size
);
3048 if (size
> sizeof (struct nameseq
))
3049 bzero (((char *) elt
) + sizeof (struct nameseq
),
3050 size
- sizeof (struct nameseq
));
3051 elt
->name
= (char *) xmalloc (alen
+ 1 + mlen
+ 2);
3052 bcopy (gl
.gl_pathv
[i
], elt
->name
, alen
);
3053 elt
->name
[alen
] = '(';
3054 bcopy (memname
, &elt
->name
[alen
+ 1], mlen
);
3055 elt
->name
[alen
+ 1 + mlen
] = ')';
3056 elt
->name
[alen
+ 1 + mlen
+ 1] = '\0';
3062 /* Find the end of the FOUND chain. */
3063 struct nameseq
*f
= found
;
3064 while (f
->next
!= 0)
3067 /* Attach the chain being built to the end of the FOUND
3068 chain, and make FOUND the new NEW chain. */
3076 #endif /* !NO_ARCHIVES */
3078 struct nameseq
*elt
= (struct nameseq
*) xmalloc (size
);
3079 if (size
> sizeof (struct nameseq
))
3080 bzero (((char *) elt
) + sizeof (struct nameseq
),
3081 size
- sizeof (struct nameseq
));
3082 elt
->name
= xstrdup (gl
.gl_pathv
[i
]);
3094 fatal (NILF
, _("virtual memory exhausted"));