dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / make / bin / read2.cc
blobc6c429152645c319413bc6414cd02262b2509575
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
27 * read.c
29 * This file contains the makefile reader.
33 * Included files
35 #include <mk/defs.h>
36 #include <mksh/dosys.h> /* sh_command2string() */
37 #include <mksh/macro.h> /* expand_value() */
38 #include <mksh/misc.h> /* retmem() */
39 #include <stdarg.h> /* va_list, va_start(), va_end() */
40 #include <libintl.h>
43 * Defined macros
47 * typedefs & structs
51 * Static variables
53 static Boolean built_last_make_run_seen;
56 * File table of contents
58 static Name_vector enter_member_name(register wchar_t *lib_start, register wchar_t *member_start, register wchar_t *string_end, Name_vector current_names, Name_vector *extra_names);
59 extern Name normalize_name(register wchar_t *name_string, register int length);
60 static void read_suffixes_list(register Name_vector depes);
61 static void make_relative(wchar_t *to, wchar_t *result);
62 static void print_rule(register Cmd_line command);
63 static void sh_transform(Name *name, Name *value);
67 * enter_name(string, tail_present, string_start, string_end,
68 * current_names, extra_names, target_group_seen)
70 * Take one string and enter it as a name. The string is passed in
71 * two parts. A make string and possibly a C string to append to it.
72 * The result is stuffed in the vector current_names.
73 * extra_names points to a vector that is used if current_names overflows.
74 * This is allocad in the calling routine.
75 * Here we handle the "lib.a[members]" notation.
77 * Return value:
78 * The name vector that was used
80 * Parameters:
81 * tail_present Indicates if both C and make string was passed
82 * string_start C string
83 * string_end Pointer to char after last in C string
84 * string make style string with head of name
85 * current_names Vector to deposit the name in
86 * extra_names Where to get next name vector if we run out
87 * target_group_seen Pointer to boolean that is set if "+" is seen
89 * Global variables used:
90 * makefile_type When we read a report file we normalize paths
91 * plus Points to the Name "+"
94 Name_vector
95 enter_name(String string, Boolean tail_present, register wchar_t *string_start, register wchar_t *string_end, Name_vector current_names, Name_vector *extra_names, Boolean *target_group_seen)
97 Name name;
98 register wchar_t *cp;
99 wchar_t ch;
101 /* If we were passed a separate tail of the name we append it to the */
102 /* make string with the rest of it */
103 if (tail_present) {
104 append_string(string_start, string, string_end - string_start);
105 string_start = string->buffer.start;
106 string_end = string->text.p;
108 ch = *string_end;
109 *string_end = (int) nul_char;
111 * Check if there are any ( or [ that are not prefixed with $.
112 * If there are, we have to deal with the lib.a(members) format.
114 for (cp = (wchar_t *) wcschr(string_start, (int) parenleft_char);
115 cp != NULL;
116 cp = (wchar_t *) wcschr(cp + 1, (int) parenleft_char)) {
117 if (*(cp - 1) != (int) dollar_char) {
118 *string_end = ch;
119 return enter_member_name(string_start,
121 string_end,
122 current_names,
123 extra_names);
126 *string_end = ch;
128 if (makefile_type == reading_cpp_file) {
129 /* Remove extra ../ constructs if we are reading from a report file */
130 name = normalize_name(string_start, string_end - string_start);
131 } else {
133 * /tolik, fix bug 1197477/
134 * Normalize every target name before entering.
135 * ..//obj/a.o and ../obj//a.o are not two different targets.
136 * There is only one target ../obj/a.o
138 /*name = GETNAME(string_start, string_end - string_start);*/
139 name = normalize_name(string_start, string_end - string_start);
142 /* Internalize the name. Detect the name "+" (target group here) */
143 if(current_names->used != 0 && current_names->names[current_names->used-1] == plus) {
144 if(name == plus) {
145 return current_names;
148 /* If the current_names vector is full we patch in the one from */
149 /* extra_names */
150 if (current_names->used == VSIZEOF(current_names->names)) {
151 if (current_names->next != NULL) {
152 current_names = current_names->next;
153 } else {
154 current_names->next = *extra_names;
155 *extra_names = NULL;
156 current_names = current_names->next;
157 current_names->used = 0;
158 current_names->next = NULL;
161 current_names->target_group[current_names->used] = NULL;
162 current_names->names[current_names->used++] = name;
163 if (name == plus) {
164 *target_group_seen = true;
166 if (tail_present && string->free_after_use) {
167 retmem(string->buffer.start);
169 return current_names;
173 * enter_member_name(lib_start, member_start, string_end,
174 * current_names, extra_names)
176 * A string has been found to contain member names.
177 * (The "lib.a[members]" and "lib.a(members)" notation)
178 * Handle it pretty much as enter_name() does for simple names.
180 * Return value:
181 * The name vector that was used
183 * Parameters:
184 * lib_start Points to the of start of "lib.a(member.o)"
185 * member_start Points to "member.o" from above string.
186 * string_end Points to char after last of above string.
187 * current_names Vector to deposit the name in
188 * extra_names Where to get next name vector if we run out
190 * Global variables used:
192 static Name_vector
193 enter_member_name(register wchar_t *lib_start, register wchar_t *member_start, register wchar_t *string_end, Name_vector current_names, Name_vector *extra_names)
195 register Boolean entry = false;
196 wchar_t buffer[STRING_BUFFER_LENGTH];
197 Name lib;
198 Name member;
199 Name name;
200 Property prop;
201 wchar_t *memberp;
202 wchar_t *q;
203 register int paren_count;
204 register Boolean has_dollar;
205 register wchar_t *cq;
206 Name long_member_name = NULL;
208 /* Internalize the name of the library */
209 lib = GETNAME(lib_start, member_start - lib_start);
210 lib->is_member = true;
211 member_start++;
212 if (*member_start == (int) parenleft_char) {
213 /* This is really the "lib.a((entries))" format */
214 entry = true;
215 member_start++;
217 /* Move the library name to the buffer where we intend to build the */
218 /* "lib.a(member)" for each member */
219 (void) wcsncpy(buffer, lib_start, member_start - lib_start);
220 memberp = buffer + (member_start-lib_start);
221 while (1) {
222 long_member_name = NULL;
223 /* Skip leading spaces */
224 for (;
225 (member_start < string_end) && iswspace(*member_start);
226 member_start++);
227 /* Find the end of the member name. Allow nested (). Detect $*/
228 for (cq = memberp, has_dollar = false, paren_count = 0;
229 (member_start < string_end) &&
230 ((*member_start != (int) parenright_char) ||
231 (paren_count > 0)) &&
232 !iswspace(*member_start);
233 *cq++ = *member_start++) {
234 switch (*member_start) {
235 case parenleft_char:
236 paren_count++;
237 break;
238 case parenright_char:
239 paren_count--;
240 break;
241 case dollar_char:
242 has_dollar = true;
245 /* Internalize the member name */
246 member = GETNAME(memberp, cq - memberp);
247 *cq = 0;
248 if ((q = (wchar_t *) wcsrchr(memberp, (int) slash_char)) == NULL) {
249 q = memberp;
251 if ((cq - q > (int) ar_member_name_len) &&
252 !has_dollar) {
253 *cq++ = (int) parenright_char;
254 if (entry) {
255 *cq++ = (int) parenright_char;
257 long_member_name = GETNAME(buffer, cq - buffer);
258 cq = q + (int) ar_member_name_len;
260 *cq++ = (int) parenright_char;
261 if (entry) {
262 *cq++ = (int) parenright_char;
264 /* Internalize the "lib.a(member)" notation for this member */
265 name = GETNAME(buffer, cq - buffer);
266 name->is_member = lib->is_member;
267 if (long_member_name != NULL) {
268 prop = append_prop(name, long_member_name_prop);
269 name->has_long_member_name = true;
270 prop->body.long_member_name.member_name =
271 long_member_name;
273 /* And add the member prop */
274 prop = append_prop(name, member_prop);
275 prop->body.member.library = lib;
276 if (entry) {
277 /* "lib.a((entry))" notation */
278 prop->body.member.entry = member;
279 prop->body.member.member = NULL;
280 } else {
281 /* "lib.a(member)" Notation */
282 prop->body.member.entry = NULL;
283 prop->body.member.member = member;
285 /* Handle overflow of current_names */
286 if (current_names->used == VSIZEOF(current_names->names)) {
287 if (current_names->next != NULL) {
288 current_names = current_names->next;
289 } else {
290 if (*extra_names == NULL) {
291 current_names =
292 current_names->next =
293 ALLOC(Name_vector);
294 } else {
295 current_names =
296 current_names->next =
297 *extra_names;
298 *extra_names = NULL;
300 current_names->used = 0;
301 current_names->next = NULL;
304 current_names->target_group[current_names->used] = NULL;
305 current_names->names[current_names->used++] = name;
306 while (iswspace(*member_start)) {
307 member_start++;
309 /* Check if there are more members */
310 if ((*member_start == (int) parenright_char) ||
311 (member_start >= string_end)) {
312 return current_names;
315 /* NOTREACHED */
319 * normalize_name(name_string, length)
321 * Take a namestring and remove redundant ../, // and ./ constructs
323 * Return value:
324 * The normalized name
326 * Parameters:
327 * name_string Path string to normalize
328 * length Length of that string
330 * Global variables used:
331 * dot The Name ".", compared against
332 * dotdot The Name "..", compared against
334 Name
335 normalize_name(register wchar_t *name_string, register int length)
337 static Name dotdot;
338 register wchar_t *string = ALLOC_WC(length + 1);
339 register wchar_t *string2;
340 register wchar_t *cdp;
341 wchar_t *current_component;
342 Name name;
343 register int count;
345 if (dotdot == NULL) {
346 MBSTOWCS(wcs_buffer, "..");
347 dotdot = GETNAME(wcs_buffer, FIND_LENGTH);
351 * Copy string removing ./ and //.
352 * First strip leading ./
354 while ((length > 1) &&
355 (name_string[0] == (int) period_char) &&
356 (name_string[1] == (int) slash_char)) {
357 name_string += 2;
358 length -= 2;
359 while ((length > 0) && (name_string[0] == (int) slash_char)) {
360 name_string++;
361 length--;
364 /* Then copy the rest of the string removing /./ & // */
365 cdp = string;
366 while (length > 0) {
367 if (((length > 2) &&
368 (name_string[0] == (int) slash_char) &&
369 (name_string[1] == (int) period_char) &&
370 (name_string[2] == (int) slash_char)) ||
371 ((length == 2) &&
372 (name_string[0] == (int) slash_char) &&
373 (name_string[1] == (int) period_char))) {
374 name_string += 2;
375 length -= 2;
376 continue;
378 if ((length > 1) &&
379 (name_string[0] == (int) slash_char) &&
380 (name_string[1] == (int) slash_char)) {
381 name_string++;
382 length--;
383 continue;
385 *cdp++ = *name_string++;
386 length--;
388 *cdp = (int) nul_char;
390 * Now scan for <name>/../ and remove such combinations iff <name>
391 * is not another ..
392 * Each time something is removed, the whole process is restarted.
394 removed_one:
395 name_string = string;
396 string2 = name_string; /*save for free*/
397 current_component =
398 cdp =
399 string =
400 ALLOC_WC((length = wcslen(name_string)) + 1);
401 while (length > 0) {
402 if (((length > 3) &&
403 (name_string[0] == (int) slash_char) &&
404 (name_string[1] == (int) period_char) &&
405 (name_string[2] == (int) period_char) &&
406 (name_string[3] == (int) slash_char)) ||
407 ((length == 3) &&
408 (name_string[0] == (int) slash_char) &&
409 (name_string[1] == (int) period_char) &&
410 (name_string[2] == (int) period_char))) {
411 /* Positioned on the / that starts a /.. sequence */
412 if (((count = cdp - current_component) != 0) &&
413 (exists(name = GETNAME(string, cdp - string)) > file_doesnt_exist) &&
414 (!name->stat.is_sym_link)) {
415 name = GETNAME(current_component, count);
416 if(name != dotdot) {
417 cdp = current_component;
418 name_string += 3;
419 length -= 3;
420 if (length > 0) {
421 name_string++; /* skip slash */
422 length--;
423 while (length > 0) {
424 *cdp++ = *name_string++;
425 length--;
428 *cdp = (int) nul_char;
429 retmem(string2);
430 goto removed_one;
434 if ((*cdp++ = *name_string++) == (int) slash_char) {
435 current_component = cdp;
437 length--;
439 *cdp = (int) nul_char;
440 if (string[0] == (int) nul_char) {
441 name = dot;
442 } else {
443 name = GETNAME(string, FIND_LENGTH);
445 retmem(string);
446 retmem(string2);
447 return name;
451 * find_target_groups(target_list)
453 * If a "+" was seen when the target list was scanned we need to extract
454 * the groups. Each target in the name vector that is a member of a
455 * group gets a pointer to a chain of all the members stuffed in its
456 * target_group vector slot
458 * Parameters:
459 * target_list The list of targets that contains "+"
461 * Global variables used:
462 * plus The Name "+", compared against
464 Chain
465 find_target_groups(register Name_vector target_list, register int i, Boolean reset)
467 static Chain target_group = NULL;
468 static Chain tail_target_group = NULL;
469 static Name *next;
470 static Boolean clear_target_group = false;
472 if (reset) {
473 target_group = NULL;
474 tail_target_group = NULL;
475 clear_target_group = false;
478 /* Scan the list of targets */
479 /* If the previous target terminated a group */
480 /* we flush the pointer to that member chain */
481 if (clear_target_group) {
482 clear_target_group = false;
483 target_group = NULL;
485 /* Pick up a pointer to the cell with */
486 /* the next target */
487 if (i + 1 != target_list->used) {
488 next = &target_list->names[i + 1];
489 } else {
490 next = (target_list->next != NULL) ?
491 &target_list->next->names[0] : NULL;
493 /* We have four states here :
494 * 0: No target group started and next element is not "+"
495 * This is not interesting.
496 * 1: A target group is being built and the next element
497 * is not "+". This terminates the group.
498 * 2: No target group started and the next member is "+"
499 * This is the first target in a group.
500 * 3: A target group started and the next member is a "+"
501 * The group continues.
503 switch ((target_group ? 1 : 0) +
504 (next && (*next == plus) ?
505 2 : 0)) {
506 case 0: /* Not target_group */
507 break;
508 case 1: /* Last group member */
509 /* We need to keep this pointer so */
510 /* we can stuff it for last member */
511 clear_target_group = true;
512 /* fall into */
513 case 3: /* Middle group member */
514 /* Add this target to the */
515 /* current chain */
516 tail_target_group->next = ALLOC(Chain);
517 tail_target_group = tail_target_group->next;
518 tail_target_group->next = NULL;
519 tail_target_group->name = target_list->names[i];
520 break;
521 case 2: /* First group member */
522 /* Start a new chain */
523 target_group = tail_target_group = ALLOC(Chain);
524 target_group->next = NULL;
525 target_group->name = target_list->names[i];
526 break;
528 /* Stuff the current chain, if any, in the */
529 /* targets group slot */
530 target_list->target_group[i] = target_group;
531 if ((next != NULL) &&
532 (*next == plus)) {
533 *next = NULL;
535 return (tail_target_group);
539 * enter_dependencies(target, target_group, depes, command, separator)
541 * Take one target and a list of dependencies and process the whole thing.
542 * The target might be special in some sense in which case that is handled
544 * Parameters:
545 * target The target we want to enter
546 * target_group Non-NULL if target is part of a group this time
547 * depes A list of dependencies for the target
548 * command The command the target should be entered with
549 * separator Indicates if this is a ":" or a "::" rule
551 * Static variables used:
552 * built_last_make_run_seen If the previous target was
553 * .BUILT_LAST_MAKE_RUN we say to rewrite
554 * the state file later on
556 * Global variables used:
557 * command_changed Set to indicate if .make.state needs rewriting
558 * default_target_to_build Set to the target if reading makefile
559 * and this is the first regular target
560 * force The Name " FORCE", used with "::" targets
561 * makefile_type We do different things for makefile vs. report
562 * not_auto The Name ".NOT_AUTO", compared against
563 * recursive_name The Name ".RECURSIVE", compared against
564 * temp_file_number Used to figure out when to clear stale
565 * automatic dependencies
566 * trace_reader Indicates that we should echo stuff we read
568 void
569 enter_dependencies(register Name target, Chain target_group, register Name_vector depes, register Cmd_line command, register Separator separator)
571 register int i;
572 register Property line;
573 Name name;
574 Name directory;
575 wchar_t *namep;
576 char *mb_namep;
577 Dependency dp;
578 Dependency *dpp;
579 Property line2;
580 wchar_t relative[MAXPATHLEN];
581 register int recursive_state;
582 Boolean register_as_auto;
583 Boolean not_auto_found;
584 char *slash;
585 Wstring depstr;
587 /* Check if this is a .RECURSIVE line */
588 if ((depes->used >= 3) &&
589 (depes->names[0] == recursive_name)) {
590 target->has_recursive_dependency = true;
591 depes->names[0] = NULL;
592 recursive_state = 0;
593 dp = NULL;
594 dpp = &dp;
595 /* Read the dependencies. They are "<directory> <target-made>*/
596 /* <makefile>*" */
597 for (; depes != NULL; depes = depes->next) {
598 for (i = 0; i < depes->used; i++) {
599 if (depes->names[i] != NULL) {
600 switch (recursive_state++) {
601 case 0: /* Directory */
603 depstr.init(depes->names[i]);
604 make_relative(depstr.get_string(),
605 relative);
606 directory =
607 GETNAME(relative,
608 FIND_LENGTH);
610 break;
611 case 1: /* Target */
612 name = depes->names[i];
613 break;
614 default: /* Makefiles */
615 *dpp = ALLOC(Dependency);
616 (*dpp)->next = NULL;
617 (*dpp)->name = depes->names[i];
618 (*dpp)->automatic = false;
619 (*dpp)->stale = false;
620 (*dpp)->built = false;
621 dpp = &((*dpp)->next);
622 break;
627 /* Check if this recursion already has been reported else */
628 /* enter the recursive prop for the target */
629 /* The has_built flag is used to tell if this .RECURSIVE */
630 /* was discovered from this run (read from a tmp file) */
631 /* or was from discovered from the original .make.state */
632 /* file */
633 for (line = get_prop(target->prop, recursive_prop);
634 line != NULL;
635 line = get_prop(line->next, recursive_prop)) {
636 if ((line->body.recursive.directory == directory) &&
637 (line->body.recursive.target == name)) {
638 line->body.recursive.makefiles = dp;
639 line->body.recursive.has_built =
640 (Boolean)
641 (makefile_type == reading_cpp_file);
642 return;
645 line2 = append_prop(target, recursive_prop);
646 line2->body.recursive.directory = directory;
647 line2->body.recursive.target = name;
648 line2->body.recursive.makefiles = dp;
649 line2->body.recursive.has_built =
650 (Boolean) (makefile_type == reading_cpp_file);
651 line2->body.recursive.in_depinfo = false;
652 return;
654 /* If this is the first target that doesnt start with a "." in the */
655 /* makefile we remember that */
656 Wstring tstr(target);
657 wchar_t * wcb = tstr.get_string();
658 if ((makefile_type == reading_makefile) &&
659 (default_target_to_build == NULL) &&
660 ((wcb[0] != (int) period_char) ||
661 wcschr(wcb, (int) slash_char))) {
663 /* BID 1181577: $(EMPTY_MACRO) + $(EMPTY_MACRO):
664 ** The target with empty name cannot be default_target_to_build
666 if (target->hash.length != 0)
667 default_target_to_build = target;
669 /* Check if the line is ":" or "::" */
670 if (makefile_type == reading_makefile) {
671 if (target->colons == no_colon) {
672 target->colons = separator;
673 } else {
674 if (target->colons != separator) {
675 fatal_reader(gettext(":/:: conflict for target `%s'"),
676 target->string_mb);
679 if (target->colons == two_colon) {
680 if (depes->used == 0) {
681 /* If this is a "::" type line with no */
682 /* dependencies we add one "FRC" type */
683 /* dependency for free */
684 depes->used = 1; /* Force :: targets with no
685 * depes to always run */
686 depes->names[0] = force;
688 /* Do not delete "::" type targets when interrupted */
689 target->stat.is_precious = true;
691 * Build a synthetic target "<number>%target"
692 * for "target".
694 mb_namep = getmem((int) (strlen(target->string_mb) + 10));
695 namep = ALLOC_WC((int) (target->hash.length + 10));
696 slash = strrchr(target->string_mb, (int) slash_char);
697 if (slash == NULL) {
698 (void) sprintf(mb_namep,
699 "%d@%s",
700 target->colon_splits++,
701 target->string_mb);
702 } else {
703 *slash = 0;
704 (void) sprintf(mb_namep,
705 "%s/%d@%s",
706 target->string_mb,
707 target->colon_splits++,
708 slash + 1);
709 *slash = (int) slash_char;
711 MBSTOWCS(namep, mb_namep);
712 retmem_mb(mb_namep);
713 name = GETNAME(namep, FIND_LENGTH);
714 retmem(namep);
715 if (trace_reader) {
716 (void) printf("%s:\t", target->string_mb);
718 /* Make "target" depend on "<number>%target */
719 line2 = maybe_append_prop(target, line_prop);
720 enter_dependency(line2, name, true);
721 line2->body.line.target = target;
722 /* Put a prop on "<number>%target that makes */
723 /* appear as "target" */
724 /* when it is processed */
725 maybe_append_prop(name, target_prop)->
726 body.target.target = target;
727 target->is_double_colon_parent = true;
728 name->is_double_colon = true;
729 name->has_target_prop = true;
730 if (trace_reader) {
731 (void) printf("\n");
733 (target = name)->stat.is_file = true;
736 /* This really is a regular dependency line. Just enter it */
737 line = maybe_append_prop(target, line_prop);
738 line->body.line.target = target;
739 /* Depending on what kind of makefile we are reading we have to */
740 /* treat things differently */
741 switch (makefile_type) {
742 case reading_makefile:
743 /* Reading regular makefile. Just notice whether this */
744 /* redefines the rule for the target */
745 if (command != NULL) {
746 if (line->body.line.command_template != NULL) {
747 line->body.line.command_template_redefined =
748 true;
749 if ((wcb[0] == (int) period_char) &&
750 !wcschr(wcb, (int) slash_char)) {
751 line->body.line.command_template =
752 command;
754 } else {
755 line->body.line.command_template = command;
757 } else {
758 if ((wcb[0] == (int) period_char) &&
759 !wcschr(wcb, (int) slash_char)) {
760 line->body.line.command_template = command;
763 break;
764 case rereading_statefile:
765 /* Rereading the statefile. We only enter thing that changed */
766 /* since the previous time we read it */
767 if (!built_last_make_run_seen) {
768 for (Cmd_line next, cmd = command; cmd != NULL; cmd = next) {
769 next = cmd->next;
770 free(cmd);
772 return;
774 built_last_make_run_seen = false;
775 command_changed = true;
776 target->ran_command = true;
777 case reading_statefile:
778 /* Reading the statefile for the first time. Enter the rules */
779 /* as "Commands used" not "templates to use" */
780 if (command != NULL) {
781 for (Cmd_line next, cmd = line->body.line.command_used;
782 cmd != NULL; cmd = next) {
783 next = cmd->next;
784 free(cmd);
786 line->body.line.command_used = command;
788 case reading_cpp_file:
789 /* Reading report file from programs that reports */
790 /* dependencies. If this is the first time the target is */
791 /* read from this reportfile we clear all old */
792 /* automatic depes */
793 if (target->temp_file_number == temp_file_number) {
794 break;
796 target->temp_file_number = temp_file_number;
797 command_changed = true;
798 if (line != NULL) {
799 for (dp = line->body.line.dependencies;
800 dp != NULL;
801 dp = dp->next) {
802 if (dp->automatic) {
803 dp->stale = true;
807 break;
808 default:
809 fatal_reader(gettext("Internal error. Unknown makefile type %d"),
810 makefile_type);
812 /* A target may only be involved in one target group */
813 if (line->body.line.target_group != NULL) {
814 if (target_group != NULL) {
815 fatal_reader(gettext("Too many target groups for target `%s'"),
816 target->string_mb);
818 } else {
819 line->body.line.target_group = target_group;
822 if (trace_reader) {
823 (void) printf("%s:\t", target->string_mb);
825 /* Enter the dependencies */
826 register_as_auto = BOOLEAN(makefile_type != reading_makefile);
827 not_auto_found = false;
828 for (;
829 (depes != NULL) && !not_auto_found;
830 depes = depes->next) {
831 for (i = 0; i < depes->used; i++) {
832 /* the dependency .NOT_AUTO signals beginning of
833 * explicit dependancies which were put at end of
834 * list in .make.state file - we stop entering
835 * dependencies at this point
837 if (depes->names[i] == not_auto) {
838 not_auto_found = true;
839 break;
841 enter_dependency(line,
842 depes->names[i],
843 register_as_auto);
846 if (trace_reader) {
847 (void) printf("\n");
848 print_rule(command);
853 * enter_dependency(line, depe, automatic)
855 * Enter one dependency. Do not enter duplicates.
857 * Parameters:
858 * line The line block that the dependeny is
859 * entered for
860 * depe The dependency to enter
861 * automatic Used to set the field "automatic"
863 * Global variables used:
864 * makefile_type We do different things for makefile vs. report
865 * trace_reader Indicates that we should echo stuff we read
866 * wait_name The Name ".WAIT", compared against
868 void
869 enter_dependency(Property line, register Name depe, Boolean automatic)
871 register Dependency dp;
872 register Dependency *insert;
874 if (trace_reader) {
875 (void) printf("%s ", depe->string_mb);
877 /* Find the end of the list and check for duplicates */
878 for (insert = &line->body.line.dependencies, dp = *insert;
879 dp != NULL;
880 insert = &dp->next, dp = *insert) {
881 if ((dp->name == depe) && (depe != wait_name)) {
882 if (dp->automatic) {
883 dp->automatic = automatic;
884 if (automatic) {
885 dp->built = false;
886 depe->stat.is_file = true;
889 dp->stale = false;
890 return;
893 /* Insert the new dependency since we couldnt find it */
894 dp = *insert = ALLOC(Dependency);
895 dp->name = depe;
896 dp->next = NULL;
897 dp->automatic = automatic;
898 dp->stale = false;
899 dp->built = false;
900 depe->stat.is_file = true;
902 if ((makefile_type == reading_makefile) &&
903 (line != NULL) &&
904 (line->body.line.target != NULL)) {
905 line->body.line.target->has_regular_dependency = true;
910 * enter_percent(target, depes, command)
912 * Enter "x%y : a%b" type lines
913 * % patterns are stored in four parts head and tail for target and source
915 * Parameters:
916 * target Left hand side of pattern
917 * depes The dependency list with the rh pattern
918 * command The command for the pattern
920 * Global variables used:
921 * empty_name The Name "", compared against
922 * percent_list The list of all percent rules, added to
923 * trace_reader Indicates that we should echo stuff we read
925 Percent
926 enter_percent(register Name target, Chain target_group, register Name_vector depes, Cmd_line command)
928 register Percent result = ALLOC(Percent);
929 register Percent depe;
930 register Percent *depe_tail = &result->dependencies;
931 register Percent *insert;
932 register wchar_t *cp, *cp1;
933 Name_vector nvp;
934 int i;
935 int pattern;
937 result->next = NULL;
938 result->patterns = NULL;
939 result->patterns_total = 0;
940 result->command_template = command;
941 result->being_expanded = false;
942 result->name = target;
943 result->dependencies = NULL;
944 result->target_group = target_group;
946 /* get patterns count */
947 Wstring wcb(target);
948 cp = wcb.get_string();
949 while (true) {
950 cp = (wchar_t *) wcschr(cp, (int) percent_char);
951 if (cp != NULL) {
952 result->patterns_total++;
953 cp++;
954 } else {
955 break;
958 result->patterns_total++;
960 /* allocate storage for patterns */
961 result->patterns = (Name *) getmem(sizeof(Name) * result->patterns_total);
963 /* then create patterns */
964 cp = wcb.get_string();
965 pattern = 0;
966 while (true) {
967 cp1 = (wchar_t *) wcschr(cp, (int) percent_char);
968 if (cp1 != NULL) {
969 result->patterns[pattern] = GETNAME(cp, cp1 - cp);
970 cp = cp1 + 1;
971 pattern++;
972 } else {
973 result->patterns[pattern] = GETNAME(cp, (int) target->hash.length - (cp - wcb.get_string()));
974 break;
978 Wstring wcb1;
980 /* build dependencies list */
981 for (nvp = depes; nvp != NULL; nvp = nvp->next) {
982 for (i = 0; i < nvp->used; i++) {
983 depe = ALLOC(Percent);
984 depe->next = NULL;
985 depe->patterns = NULL;
986 depe->patterns_total = 0;
987 depe->name = nvp->names[i];
988 depe->dependencies = NULL;
989 depe->command_template = NULL;
990 depe->being_expanded = false;
991 depe->target_group = NULL;
993 *depe_tail = depe;
994 depe_tail = &depe->next;
996 if (depe->name->percent) {
997 /* get patterns count */
998 wcb1.init(depe->name);
999 cp = wcb1.get_string();
1000 while (true) {
1001 cp = (wchar_t *) wcschr(cp, (int) percent_char);
1002 if (cp != NULL) {
1003 depe->patterns_total++;
1004 cp++;
1005 } else {
1006 break;
1009 depe->patterns_total++;
1011 /* allocate storage for patterns */
1012 depe->patterns = (Name *) getmem(sizeof(Name) * depe->patterns_total);
1014 /* then create patterns */
1015 cp = wcb1.get_string();
1016 pattern = 0;
1017 while (true) {
1018 cp1 = (wchar_t *) wcschr(cp, (int) percent_char);
1019 if (cp1 != NULL) {
1020 depe->patterns[pattern] = GETNAME(cp, cp1 - cp);
1021 cp = cp1 + 1;
1022 pattern++;
1023 } else {
1024 depe->patterns[pattern] = GETNAME(cp, (int) depe->name->hash.length - (cp - wcb1.get_string()));
1025 break;
1032 /* Find the end of the percent list and append the new pattern */
1033 for (insert = &percent_list; (*insert) != NULL; insert = &(*insert)->next);
1034 *insert = result;
1036 if (trace_reader) {
1037 (void) printf("%s:", result->name->string_mb);
1039 for (depe = result->dependencies; depe != NULL; depe = depe->next) {
1040 (void) printf(" %s", depe->name->string_mb);
1043 (void) printf("\n");
1045 print_rule(command);
1048 return result;
1052 * enter_dyntarget(target)
1054 * Enter "$$(MACRO) : b" type lines
1056 * Parameters:
1057 * target Left hand side of pattern
1059 * Global variables used:
1060 * dyntarget_list The list of all percent rules, added to
1061 * trace_reader Indicates that we should echo stuff we read
1063 Dyntarget
1064 enter_dyntarget(register Name target)
1066 register Dyntarget result = ALLOC(Dyntarget);
1067 Dyntarget p;
1068 Dyntarget *insert;
1069 int i;
1071 result->next = NULL;
1072 result->name = target;
1075 /* Find the end of the dyntarget list and append the new pattern */
1076 for (insert = &dyntarget_list, p = *insert;
1077 p != NULL;
1078 insert = &p->next, p = *insert);
1079 *insert = result;
1081 if (trace_reader) {
1082 (void) printf("Dynamic target %s:\n", result->name->string_mb);
1084 return( result);
1089 * special_reader(target, depes, command)
1091 * Read the pseudo targets make knows about
1092 * This handles the special targets that should not be entered as regular
1093 * target/dependency sets.
1095 * Parameters:
1096 * target The special target
1097 * depes The list of dependencies it was entered with
1098 * command The command it was entered with
1100 * Static variables used:
1101 * built_last_make_run_seen Set to indicate .BUILT_LAST... seen
1103 * Global variables used:
1104 * all_parallel Set to indicate that everything runs parallel
1105 * svr4 Set when ".SVR4" target is read
1106 * svr4_name The Name ".SVR4"
1107 * posix Set when ".POSIX" target is read
1108 * posix_name The Name ".POSIX"
1109 * current_make_version The Name "<current version number>"
1110 * default_rule Set when ".DEFAULT" target is read
1111 * default_rule_name The Name ".DEFAULT", used for tracing
1112 * dot_keep_state The Name ".KEEP_STATE", used for tracing
1113 * ignore_errors Set if ".IGNORE" target is read
1114 * ignore_name The Name ".IGNORE", used for tracing
1115 * keep_state Set if ".KEEP_STATE" target is read
1116 * no_parallel_name The Name ".NO_PARALLEL", used for tracing
1117 * only_parallel Set to indicate only some targets runs parallel
1118 * parallel_name The Name ".PARALLEL", used for tracing
1119 * precious The Name ".PRECIOUS", used for tracing
1120 * sccs_get_name The Name ".SCCS_GET", used for tracing
1121 * sccs_get_posix_name The Name ".SCCS_GET_POSIX", used for tracing
1122 * get_name The Name ".GET", used for tracing
1123 * sccs_get_rule Set when ".SCCS_GET" target is read
1124 * silent Set when ".SILENT" target is read
1125 * silent_name The Name ".SILENT", used for tracing
1126 * trace_reader Indicates that we should echo stuff we read
1128 void
1129 special_reader(Name target, register Name_vector depes, Cmd_line command)
1131 register int n;
1133 switch (target->special_reader) {
1135 case svr4_special:
1136 if (depes->used != 0) {
1137 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1138 target->string_mb);
1140 svr4 = true;
1141 posix = false;
1142 keep_state = false;
1143 all_parallel = false;
1144 only_parallel = false;
1145 if (trace_reader) {
1146 (void) printf("%s:\n", svr4_name->string_mb);
1148 break;
1150 case posix_special:
1151 if(svr4)
1152 break;
1153 if (depes->used != 0) {
1154 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1155 target->string_mb);
1157 posix = true;
1158 /* with posix on, use the posix get rule */
1159 sccs_get_rule = sccs_get_posix_rule;
1160 /* turn keep state off being SunPro make specific */
1161 keep_state = false;
1162 MBSTOWCS(wcs_buffer, "/usr/bin/sh");
1163 (void) SETVAR(shell_name, GETNAME(wcs_buffer, FIND_LENGTH), false);
1164 if (trace_reader) {
1165 (void) printf("%s:\n", posix_name->string_mb);
1167 break;
1169 case built_last_make_run_special:
1170 built_last_make_run_seen = true;
1171 break;
1173 case default_special:
1174 if (depes->used != 0) {
1175 warning(gettext("Illegal dependency list for target `%s'"),
1176 target->string_mb);
1178 default_rule = command;
1179 if (trace_reader) {
1180 (void) printf("%s:\n",
1181 default_rule_name->string_mb);
1182 print_rule(command);
1184 break;
1187 case ignore_special:
1188 if ((depes->used != 0) &&(!posix)){
1189 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1190 target->string_mb);
1192 if (depes->used == 0)
1194 ignore_errors_all = true;
1196 if(svr4) {
1197 ignore_errors_all = true;
1198 break;
1200 for (; depes != NULL; depes = depes->next) {
1201 for (n = 0; n < depes->used; n++) {
1202 depes->names[n]->ignore_error_mode = true;
1205 if (trace_reader) {
1206 (void) printf("%s:\n", ignore_name->string_mb);
1208 break;
1210 case keep_state_special:
1211 if(svr4)
1212 break;
1213 /* ignore keep state, being SunPro make specific */
1214 if(posix)
1215 break;
1216 if (depes->used != 0) {
1217 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1218 target->string_mb);
1220 keep_state = true;
1221 if (trace_reader) {
1222 (void) printf("%s:\n",
1223 dot_keep_state->string_mb);
1225 break;
1227 case keep_state_file_special:
1228 if(svr4)
1229 break;
1230 if(posix)
1231 break;
1232 /* it's not necessary to specify KEEP_STATE, if this
1233 ** is given, so set the keep_state.
1235 keep_state = true;
1236 if (depes->used != 0) {
1237 if((!make_state) ||(!strcmp(make_state->string_mb,".make.state"))) {
1238 make_state = depes->names[0];
1241 break;
1242 case make_version_special:
1243 if(svr4)
1244 break;
1245 if (depes->used != 1) {
1246 fatal_reader(gettext("Illegal dependency list for target `%s'"),
1247 target->string_mb);
1249 if (depes->names[0] != current_make_version) {
1251 * Special case the fact that version 1.0 and 1.1
1252 * are identical.
1254 if (!IS_EQUAL(depes->names[0]->string_mb,
1255 "VERSION-1.1") ||
1256 !IS_EQUAL(current_make_version->string_mb,
1257 "VERSION-1.0")) {
1259 * Version mismatches should cause the
1260 * .make.state file to be skipped.
1261 * This is currently not true - it is read
1262 * anyway.
1264 warning(gettext("Version mismatch between current version `%s' and `%s'"),
1265 current_make_version->string_mb,
1266 depes->names[0]->string_mb);
1269 break;
1271 case no_parallel_special:
1272 if(svr4)
1273 break;
1274 /* Set the no_parallel bit for all the targets on */
1275 /* the dependency list */
1276 if (depes->used == 0) {
1277 /* only those explicitly made parallel */
1278 only_parallel = true;
1279 all_parallel = false;
1281 for (; depes != NULL; depes = depes->next) {
1282 for (n = 0; n < depes->used; n++) {
1283 if (trace_reader) {
1284 (void) printf("%s:\t%s\n",
1285 no_parallel_name->string_mb,
1286 depes->names[n]->string_mb);
1288 depes->names[n]->no_parallel = true;
1289 depes->names[n]->parallel = false;
1292 break;
1294 case parallel_special:
1295 if(svr4)
1296 break;
1297 if (depes->used == 0) {
1298 /* everything runs in parallel */
1299 all_parallel = true;
1300 only_parallel = false;
1302 /* Set the parallel bit for all the targets on */
1303 /* the dependency list */
1304 for (; depes != NULL; depes = depes->next) {
1305 for (n = 0; n < depes->used; n++) {
1306 if (trace_reader) {
1307 (void) printf("%s:\t%s\n",
1308 parallel_name->string_mb,
1309 depes->names[n]->string_mb);
1311 depes->names[n]->parallel = true;
1312 depes->names[n]->no_parallel = false;
1315 break;
1317 case localhost_special:
1318 if(svr4)
1319 break;
1320 /* Set the no_parallel bit for all the targets on */
1321 /* the dependency list */
1322 if (depes->used == 0) {
1323 /* only those explicitly made parallel */
1324 only_parallel = true;
1325 all_parallel = false;
1327 for (; depes != NULL; depes = depes->next) {
1328 for (n = 0; n < depes->used; n++) {
1329 if (trace_reader) {
1330 (void) printf("%s:\t%s\n",
1331 localhost_name->string_mb,
1332 depes->names[n]->string_mb);
1334 depes->names[n]->no_parallel = true;
1335 depes->names[n]->parallel = false;
1336 depes->names[n]->localhost = true;
1339 break;
1341 case precious_special:
1342 if (depes->used == 0) {
1343 /* everything is precious */
1344 all_precious = true;
1345 } else {
1346 all_precious = false;
1348 if(svr4) {
1349 all_precious = true;
1350 break;
1352 /* Set the precious bit for all the targets on */
1353 /* the dependency list */
1354 for (; depes != NULL; depes = depes->next) {
1355 for (n = 0; n < depes->used; n++) {
1356 if (trace_reader) {
1357 (void) printf("%s:\t%s\n",
1358 precious->string_mb,
1359 depes->names[n]->string_mb);
1361 depes->names[n]->stat.is_precious = true;
1364 break;
1366 case sccs_get_special:
1367 if (depes->used != 0) {
1368 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1369 target->string_mb);
1371 sccs_get_rule = command;
1372 sccs_get_org_rule = command;
1373 if (trace_reader) {
1374 (void) printf("%s:\n", sccs_get_name->string_mb);
1375 print_rule(command);
1377 break;
1379 case sccs_get_posix_special:
1380 if (depes->used != 0) {
1381 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1382 target->string_mb);
1384 sccs_get_posix_rule = command;
1385 if (trace_reader) {
1386 (void) printf("%s:\n", sccs_get_posix_name->string_mb);
1387 print_rule(command);
1389 break;
1391 case get_posix_special:
1392 if (depes->used != 0) {
1393 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1394 target->string_mb);
1396 get_posix_rule = command;
1397 if (trace_reader) {
1398 (void) printf("%s:\n", get_posix_name->string_mb);
1399 print_rule(command);
1401 break;
1403 case get_special:
1404 if(!svr4) {
1405 break;
1407 if (depes->used != 0) {
1408 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1409 target->string_mb);
1411 get_rule = command;
1412 sccs_get_rule = command;
1413 if (trace_reader) {
1414 (void) printf("%s:\n", get_name->string_mb);
1415 print_rule(command);
1417 break;
1419 case silent_special:
1420 if ((depes->used != 0) && (!posix)){
1421 fatal_reader(gettext("Illegal dependencies for target `%s'"),
1422 target->string_mb);
1424 if (depes->used == 0)
1426 silent_all = true;
1428 if(svr4) {
1429 silent_all = true;
1430 break;
1432 for (; depes != NULL; depes = depes->next) {
1433 for (n = 0; n < depes->used; n++) {
1434 depes->names[n]->silent_mode = true;
1437 if (trace_reader) {
1438 (void) printf("%s:\n", silent_name->string_mb);
1440 break;
1442 case suffixes_special:
1443 read_suffixes_list(depes);
1444 break;
1446 default:
1448 fatal_reader(gettext("Internal error: Unknown special reader"));
1453 * read_suffixes_list(depes)
1455 * Read the special list .SUFFIXES. If it is empty the old list is
1456 * cleared. Else the new one is appended. Suffixes with ~ are extracted
1457 * and marked.
1459 * Parameters:
1460 * depes The list of suffixes
1462 * Global variables used:
1463 * hashtab The central hashtable for Names.
1464 * suffixes The list of suffixes, set or appended to
1465 * suffixes_name The Name ".SUFFIXES", used for tracing
1466 * trace_reader Indicates that we should echo stuff we read
1468 static void
1469 read_suffixes_list(register Name_vector depes)
1471 register int n;
1472 register Dependency dp;
1473 register Dependency *insert_dep;
1474 register Name np;
1475 Name np2;
1476 register Boolean first = true;
1478 if (depes->used == 0) {
1479 /* .SUFFIXES with no dependency list clears the */
1480 /* suffixes list */
1481 for (Name_set::iterator np = hashtab.begin(), e = hashtab.end(); np != e; np++) {
1482 np->with_squiggle =
1483 np->without_squiggle =
1484 false;
1486 suffixes = NULL;
1487 if (trace_reader) {
1488 (void) printf("%s:\n", suffixes_name->string_mb);
1490 return;
1492 Wstring str;
1493 /* Otherwise we append to the list */
1494 for (; depes != NULL; depes = depes->next) {
1495 for (n = 0; n < depes->used; n++) {
1496 np = depes->names[n];
1497 /* Find the end of the list and check if the */
1498 /* suffix already has been entered */
1499 for (insert_dep = &suffixes, dp = *insert_dep;
1500 dp != NULL;
1501 insert_dep = &dp->next, dp = *insert_dep) {
1502 if (dp->name == np) {
1503 goto duplicate_suffix;
1506 if (trace_reader) {
1507 if (first) {
1508 (void) printf("%s:\t",
1509 suffixes_name->string_mb);
1510 first = false;
1512 (void) printf("%s ", depes->names[n]->string_mb);
1514 if(!(posix|svr4)) {
1515 /* If the suffix is suffixed with "~" we */
1516 /* strip that and mark the suffix nameblock */
1517 str.init(np);
1518 wchar_t * wcb = str.get_string();
1519 if (wcb[np->hash.length - 1] ==
1520 (int) tilde_char) {
1521 np2 = GETNAME(wcb,
1522 (int)(np->hash.length - 1));
1523 np2->with_squiggle = true;
1524 if (np2->without_squiggle) {
1525 continue;
1527 np = np2;
1530 np->without_squiggle = true;
1531 /* Add the suffix to the list */
1532 dp = *insert_dep = ALLOC(Dependency);
1533 insert_dep = &dp->next;
1534 dp->next = NULL;
1535 dp->name = np;
1536 dp->built = false;
1537 duplicate_suffix:;
1540 if (trace_reader) {
1541 (void) printf("\n");
1546 * make_relative(to, result)
1548 * Given a file name compose a relative path name from it to the
1549 * current directory.
1551 * Parameters:
1552 * to The path we want to make relative
1553 * result Where to put the resulting relative path
1555 * Global variables used:
1557 static void
1558 make_relative(wchar_t *to, wchar_t *result)
1560 wchar_t *from;
1561 wchar_t *allocated;
1562 wchar_t *cp;
1563 wchar_t *tocomp;
1564 int ncomps;
1565 int i;
1566 int len;
1568 /* Check if the path is already relative. */
1569 if (to[0] != (int) slash_char) {
1570 (void) wcscpy(result, to);
1571 return;
1574 MBSTOWCS(wcs_buffer, get_current_path());
1575 from = allocated = (wchar_t *) wcsdup(wcs_buffer);
1578 * Find the number of components in the from name.
1579 * ncomp = number of slashes + 1.
1581 ncomps = 1;
1582 for (cp = from; *cp != (int) nul_char; cp++) {
1583 if (*cp == (int) slash_char) {
1584 ncomps++;
1589 * See how many components match to determine how many "..",
1590 * if any, will be needed.
1592 result[0] = (int) nul_char;
1593 tocomp = to;
1594 while ((*from != (int) nul_char) && (*from == *to)) {
1595 if (*from == (int) slash_char) {
1596 ncomps--;
1597 tocomp = &to[1];
1599 from++;
1600 to++;
1604 * Now for some special cases. Check for exact matches and
1605 * for either name terminating exactly.
1607 if (*from == (int) nul_char) {
1608 if (*to == (int) nul_char) {
1609 MBSTOWCS(wcs_buffer, ".");
1610 (void) wcscpy(result, wcs_buffer);
1611 retmem(allocated);
1612 return;
1614 if (*to == (int) slash_char) {
1615 ncomps--;
1616 tocomp = &to[1];
1618 } else if ((*from == (int) slash_char) && (*to == (int) nul_char)) {
1619 ncomps--;
1620 tocomp = to;
1622 /* Add on the ".."s. */
1623 for (i = 0; i < ncomps; i++) {
1624 MBSTOWCS(wcs_buffer, "../");
1625 (void) wcscat(result, wcs_buffer);
1628 /* Add on the remainder of the to name, if any. */
1629 if (*tocomp == (int) nul_char) {
1630 len = wcslen(result);
1631 result[len - 1] = (int) nul_char;
1632 } else {
1633 (void) wcscat(result, tocomp);
1635 retmem(allocated);
1636 return;
1640 * print_rule(command)
1642 * Used when tracing the reading of rules
1644 * Parameters:
1645 * command Command to print
1647 * Global variables used:
1649 static void
1650 print_rule(register Cmd_line command)
1652 for (; command != NULL; command = command->next) {
1653 (void) printf("\t%s\n", command->command_line->string_mb);
1658 * enter_conditional(target, name, value, append)
1660 * Enter "target := MACRO= value" constructs
1662 * Parameters:
1663 * target The target the macro is for
1664 * name The name of the macro
1665 * value The value for the macro
1666 * append Indicates if the assignment is appending or not
1668 * Global variables used:
1669 * conditionals A special Name that stores all conditionals
1670 * where the target is a % pattern
1671 * trace_reader Indicates that we should echo stuff we read
1673 void
1674 enter_conditional(register Name target, Name name, Name value, register Boolean append)
1676 register Property conditional;
1677 static int sequence;
1678 Name orig_target = target;
1680 if (name == target_arch) {
1681 enter_conditional(target, virtual_root, virtual_root, false);
1684 if (target->percent) {
1685 target = conditionals;
1688 if (name->colon) {
1689 sh_transform(&name, &value);
1692 /* Count how many conditionals we must activate before building the */
1693 /* target */
1694 if (target->percent) {
1695 target = conditionals;
1698 target->conditional_cnt++;
1699 maybe_append_prop(name, macro_prop)->body.macro.is_conditional = true;
1700 /* Add the property for the target */
1701 conditional = append_prop(target, conditional_prop);
1702 conditional->body.conditional.target = orig_target;
1703 conditional->body.conditional.name = name;
1704 conditional->body.conditional.value = value;
1705 conditional->body.conditional.sequence = sequence++;
1706 conditional->body.conditional.append = append;
1707 if (trace_reader) {
1708 if (value == NULL) {
1709 (void) printf("%s := %s %c=\n",
1710 target->string_mb,
1711 name->string_mb,
1712 append ?
1713 (int) plus_char : (int) space_char);
1714 } else {
1715 (void) printf("%s := %s %c= %s\n",
1716 target->string_mb,
1717 name->string_mb,
1718 append ?
1719 (int) plus_char : (int) space_char,
1720 value->string_mb);
1726 * enter_equal(name, value, append)
1728 * Enter "MACRO= value" constructs
1730 * Parameters:
1731 * name The name of the macro
1732 * value The value for the macro
1733 * append Indicates if the assignment is appending or not
1735 * Global variables used:
1736 * trace_reader Indicates that we should echo stuff we read
1738 void
1739 enter_equal(Name name, Name value, register Boolean append)
1741 wchar_t *string;
1742 Name temp;
1744 if (name->colon) {
1745 sh_transform(&name, &value);
1747 (void) SETVAR(name, value, append);
1749 /* if we're setting FC, we want to set F77 to the same value. */
1750 Wstring nms(name);
1751 wchar_t * wcb = nms.get_string();
1752 string = wcb;
1753 if (string[0]=='F' &&
1754 string[1]=='C' &&
1755 string[2]=='\0') {
1756 MBSTOWCS(wcs_buffer, "F77");
1757 temp = GETNAME(wcs_buffer, FIND_LENGTH);
1758 (void) SETVAR(temp, value, append);
1760 fprintf(stderr, gettext("warning: FC is obsolete, use F77 instead\n"));
1764 if (trace_reader) {
1765 if (value == NULL) {
1766 (void) printf("%s %c=\n",
1767 name->string_mb,
1768 append ?
1769 (int) plus_char : (int) space_char);
1770 } else {
1771 (void) printf("%s %c= %s\n",
1772 name->string_mb,
1773 append ?
1774 (int) plus_char : (int) space_char,
1775 value->string_mb);
1781 * sh_transform(name, value)
1783 * Parameters:
1784 * name The name of the macro we might transform
1785 * value The value to transform
1788 static void
1789 sh_transform(Name *name, Name *value)
1791 /* Check if we need :sh transform */
1792 wchar_t *colon;
1793 String_rec command;
1794 String_rec destination;
1795 wchar_t buffer[1000];
1796 wchar_t buffer1[1000];
1798 static wchar_t colon_sh[4];
1799 static wchar_t colon_shell[7];
1801 if (colon_sh[0] == (int) nul_char) {
1802 MBSTOWCS(colon_sh, ":sh");
1803 MBSTOWCS(colon_shell, ":shell");
1805 Wstring nms((*name));
1806 wchar_t * wcb = nms.get_string();
1808 colon = (wchar_t *) wcsrchr(wcb, (int) colon_char);
1809 if ((colon != NULL) && (IS_WEQUAL(colon, colon_sh) || IS_WEQUAL(colon, colon_shell))) {
1810 INIT_STRING_FROM_STACK(destination, buffer);
1812 if(*value == NULL) {
1813 buffer[0] = 0;
1814 } else {
1815 Wstring wcb1((*value));
1816 if (IS_WEQUAL(colon, colon_shell)) {
1817 INIT_STRING_FROM_STACK(command, buffer1);
1818 expand_value(*value, &command, false);
1819 } else {
1820 command.text.p = wcb1.get_string() + (*value)->hash.length;
1821 command.text.end = command.text.p;
1822 command.buffer.start = wcb1.get_string();
1823 command.buffer.end = command.text.p;
1825 sh_command2string(&command, &destination);
1828 (*value) = GETNAME(destination.buffer.start, FIND_LENGTH);
1829 *colon = (int) nul_char;
1830 (*name) = GETNAME(wcb, FIND_LENGTH);
1831 *colon = (int) colon_char;
1836 * fatal_reader(format, args...)
1838 * Parameters:
1839 * format printf style format string
1840 * args arguments to match the format
1842 * Global variables used:
1843 * file_being_read Name of the makefile being read
1844 * line_number Line that is being read
1845 * report_pwd Indicates whether current path should be shown
1846 * temp_file_name When reading tempfile we report that name
1848 /*VARARGS*/
1849 void
1850 fatal_reader(char * pattern, ...)
1852 va_list args;
1853 char message[1000];
1855 va_start(args, pattern);
1856 if (file_being_read != NULL) {
1857 WCSTOMBS(mbs_buffer, file_being_read);
1858 if (line_number != 0) {
1859 (void) sprintf(message,
1860 gettext("%s, line %d: %s"),
1861 mbs_buffer,
1862 line_number,
1863 pattern);
1864 } else {
1865 (void) sprintf(message,
1866 "%s: %s",
1867 mbs_buffer,
1868 pattern);
1870 pattern = message;
1873 (void) fflush(stdout);
1874 (void) fprintf(stderr, gettext("%s: Fatal error in reader: "),
1875 getprogname());
1876 (void) vfprintf(stderr, pattern, args);
1877 (void) fprintf(stderr, "\n");
1878 va_end(args);
1880 if (temp_file_name != NULL) {
1881 (void) fprintf(stderr,
1882 gettext("%s: Temp-file %s not removed\n"),
1883 getprogname(),
1884 temp_file_name->string_mb);
1885 temp_file_name = NULL;
1888 if (report_pwd) {
1889 (void) fprintf(stderr,
1890 gettext("Current working directory %s\n"),
1891 get_current_path());
1893 (void) fflush(stderr);
1894 exit_status = 1;
1895 exit(1);