1 /* Internals of variables for GNU Make.
2 Copyright (C) 1988,89,90,91,92,93,94,96,97 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
27 #include "pathstuff.h"
30 /* Hash table of all global variable definitions. */
32 #ifndef VARIABLE_BUCKETS
33 #define VARIABLE_BUCKETS 523
35 #ifndef PERFILE_VARIABLE_BUCKETS
36 #define PERFILE_VARIABLE_BUCKETS 23
38 #ifndef SMALL_SCOPE_VARIABLE_BUCKETS
39 #define SMALL_SCOPE_VARIABLE_BUCKETS 13
41 static struct variable
*variable_table
[VARIABLE_BUCKETS
];
42 static struct variable_set global_variable_set
43 = { variable_table
, VARIABLE_BUCKETS
};
44 static struct variable_set_list global_setlist
45 = { 0, &global_variable_set
};
46 struct variable_set_list
*current_variable_set_list
= &global_setlist
;
48 static struct variable
*lookup_variable_in_set
PARAMS ((char *name
,
49 unsigned int length
, struct variable_set
*set
));
51 /* Implement variables. */
53 /* Define variable named NAME with value VALUE in SET. VALUE is copied.
54 LENGTH is the length of NAME, which does not need to be null-terminated.
55 ORIGIN specifies the origin of the variable (makefile, command line
57 If RECURSIVE is nonzero a flag is set in the variable saying
58 that it should be recursively re-expanded. */
61 define_variable_in_set (name
, length
, value
, origin
, recursive
, set
)
65 enum variable_origin origin
;
67 struct variable_set
*set
;
69 register unsigned int i
;
70 register unsigned int hashval
;
71 register struct variable
*v
;
74 for (i
= 0; i
< length
; ++i
)
75 HASH (hashval
, name
[i
]);
76 hashval
%= set
->buckets
;
78 for (v
= set
->table
[hashval
]; v
!= 0; v
= v
->next
)
80 && !strncmp (v
->name
+ 1, name
+ 1, length
- 1)
81 && v
->name
[length
] == '\0')
84 if (env_overrides
&& origin
== o_env
)
85 origin
= o_env_override
;
89 if (env_overrides
&& v
->origin
== o_env
)
90 /* V came from in the environment. Since it was defined
91 before the switches were parsed, it wasn't affected by -e. */
92 v
->origin
= o_env_override
;
94 /* A variable of this name is already defined.
95 If the old definition is from a stronger source
96 than this one, don't redefine it. */
97 if ((int) origin
>= (int) v
->origin
)
101 v
->value
= savestring (value
, strlen (value
));
103 v
->recursive
= recursive
;
108 /* Create a new variable definition and add it to the hash table. */
110 v
= (struct variable
*) xmalloc (sizeof (struct variable
));
111 v
->name
= savestring (name
, length
);
112 v
->value
= savestring (value
, strlen (value
));
114 v
->recursive
= recursive
;
117 v
->export
= v_default
;
118 v
->next
= set
->table
[hashval
];
119 set
->table
[hashval
] = v
;
123 /* Define a variable in the current variable set. */
126 define_variable (name
, length
, value
, origin
, recursive
)
130 enum variable_origin origin
;
133 return define_variable_in_set (name
, length
, value
, origin
, recursive
,
134 current_variable_set_list
->set
);
137 /* Define a variable in FILE's variable set. */
140 define_variable_for_file (name
, length
, value
, origin
, recursive
, file
)
144 enum variable_origin origin
;
148 return define_variable_in_set (name
, length
, value
, origin
, recursive
,
149 file
->variables
->set
);
152 /* Lookup a variable whose name is a string starting at NAME
153 and with LENGTH chars. NAME need not be null-terminated.
154 Returns address of the `struct variable' containing all info
155 on the variable, or nil if no such variable is defined. */
158 lookup_variable (name
, length
)
162 register struct variable_set_list
*setlist
;
164 register unsigned int i
;
165 register unsigned int rawhash
= 0;
167 for (i
= 0; i
< length
; ++i
)
168 HASH (rawhash
, name
[i
]);
170 for (setlist
= current_variable_set_list
;
171 setlist
!= 0; setlist
= setlist
->next
)
173 register struct variable_set
*set
= setlist
->set
;
174 register unsigned int hashval
= rawhash
% set
->buckets
;
175 register struct variable
*v
;
177 for (v
= set
->table
[hashval
]; v
!= 0; v
= v
->next
)
178 if (*v
->name
== *name
179 && !strncmp (v
->name
+ 1, name
+ 1, length
- 1)
180 && v
->name
[length
] == 0)
187 /* Lookup a variable whose name is a string starting at NAME
188 and with LENGTH chars in set SET. NAME need not be null-terminated.
189 Returns address of the `struct variable' containing all info
190 on the variable, or nil if no such variable is defined. */
192 static struct variable
*
193 lookup_variable_in_set (name
, length
, set
)
196 struct variable_set
*set
;
198 register unsigned int i
;
199 register unsigned int hash
= 0;
200 register struct variable
*v
;
202 for (i
= 0; i
< length
; ++i
)
203 HASH (hash
, name
[i
]);
204 hash
%= set
->buckets
;
206 for (v
= set
->table
[hash
]; v
!= 0; v
= v
->next
)
207 if (*v
->name
== *name
208 && !strncmp (v
->name
+ 1, name
+ 1, length
- 1)
209 && v
->name
[length
] == 0)
215 /* Initialize FILE's variable set list. If FILE already has a variable set
216 list, the topmost variable set is left intact, but the the rest of the
217 chain is replaced with FILE->parent's setlist. */
220 initialize_file_variables (file
)
223 register struct variable_set_list
*l
= file
->variables
;
226 l
= (struct variable_set_list
*)
227 xmalloc (sizeof (struct variable_set_list
));
228 l
->set
= (struct variable_set
*) xmalloc (sizeof (struct variable_set
));
229 l
->set
->buckets
= PERFILE_VARIABLE_BUCKETS
;
230 l
->set
->table
= (struct variable
**)
231 xmalloc (l
->set
->buckets
* sizeof (struct variable
*));
232 bzero ((char *) l
->set
->table
,
233 l
->set
->buckets
* sizeof (struct variable
*));
237 if (file
->parent
== 0)
238 l
->next
= &global_setlist
;
241 if (file
->parent
->variables
== 0)
242 initialize_file_variables (file
->parent
);
243 l
->next
= file
->parent
->variables
;
247 /* Pop the top set off the current variable set list,
248 and free all its storage. */
251 pop_variable_scope ()
253 register struct variable_set_list
*setlist
= current_variable_set_list
;
254 register struct variable_set
*set
= setlist
->set
;
255 register unsigned int i
;
257 current_variable_set_list
= setlist
->next
;
258 free ((char *) setlist
);
260 for (i
= 0; i
< set
->buckets
; ++i
)
262 register struct variable
*next
= set
->table
[i
];
265 register struct variable
*v
= next
;
274 free ((char *) set
->table
);
278 struct variable_set_list
*
279 create_new_variable_set ()
281 register struct variable_set_list
*setlist
;
282 register struct variable_set
*set
;
284 set
= (struct variable_set
*) xmalloc (sizeof (struct variable_set
));
285 set
->buckets
= SMALL_SCOPE_VARIABLE_BUCKETS
;
286 set
->table
= (struct variable
**)
287 xmalloc (set
->buckets
* sizeof (struct variable
*));
288 bzero ((char *) set
->table
, set
->buckets
* sizeof (struct variable
*));
290 setlist
= (struct variable_set_list
*)
291 xmalloc (sizeof (struct variable_set_list
));
293 setlist
->next
= current_variable_set_list
;
298 /* Create a new variable set and push it on the current setlist. */
300 struct variable_set_list
*
301 push_new_variable_scope ()
303 return (current_variable_set_list
= create_new_variable_set());
306 /* Merge SET1 into SET0, freeing unused storage in SET1. */
309 merge_variable_sets (set0
, set1
)
310 struct variable_set
*set0
, *set1
;
312 register unsigned int bucket1
;
314 for (bucket1
= 0; bucket1
< set1
->buckets
; ++bucket1
)
316 register struct variable
*v1
= set1
->table
[bucket1
];
319 struct variable
*next
= v1
->next
;
320 unsigned int bucket0
;
321 register struct variable
*v0
;
323 if (set1
->buckets
>= set0
->buckets
)
329 for (n
= v1
->name
; *n
!= '\0'; ++n
)
332 bucket0
%= set0
->buckets
;
334 for (v0
= set0
->table
[bucket0
]; v0
!= 0; v0
= v0
->next
)
335 if (streq (v0
->name
, v1
->name
))
340 /* There is no variable in SET0 with the same name. */
341 v1
->next
= set0
->table
[bucket0
];
342 set0
->table
[bucket0
] = v1
;
346 /* The same variable exists in both sets.
347 SET0 takes precedence. */
357 /* Merge SETLIST1 into SETLIST0, freeing unused storage in SETLIST1. */
360 merge_variable_set_lists (setlist0
, setlist1
)
361 struct variable_set_list
**setlist0
, *setlist1
;
363 register struct variable_set_list
*list0
= *setlist0
;
364 struct variable_set_list
*last0
= 0;
366 while (setlist1
!= 0 && list0
!= 0)
368 struct variable_set_list
*next
= setlist1
;
369 setlist1
= setlist1
->next
;
371 merge_variable_sets (list0
->set
, next
->set
);
380 *setlist0
= setlist1
;
382 last0
->next
= setlist1
;
386 /* Define the automatic variables, and record the addresses
387 of their structures so we can change their values quickly. */
390 define_automatic_variables ()
393 extern char* default_shell
;
395 extern char default_shell
[];
397 register struct variable
*v
;
400 sprintf (buf
, "%u", makelevel
);
401 (void) define_variable ("MAKELEVEL", 9, buf
, o_env
, 0);
403 sprintf (buf
, "%s%s%s",
405 (remote_description
== 0 || remote_description
[0] == '\0')
407 (remote_description
== 0 || remote_description
[0] == '\0')
408 ? "" : remote_description
);
409 (void) define_variable ("MAKE_VERSION", 12, buf
, o_default
, 0);
412 /* Allow to specify a special shell just for Make,
413 and use $COMSPEC as the default $SHELL when appropriate. */
415 static char shell_str
[] = "SHELL";
416 const int shlen
= sizeof (shell_str
) - 1;
417 struct variable
*mshp
= lookup_variable ("MAKESHELL", 9);
418 struct variable
*comp
= lookup_variable ("COMSPEC", 7);
420 /* Make $MAKESHELL override $SHELL even if -e is in effect. */
422 (void) define_variable (shell_str
, shlen
,
423 mshp
->value
, o_env_override
, 0);
426 /* $COMSPEC shouldn't override $SHELL. */
427 struct variable
*shp
= lookup_variable (shell_str
, shlen
);
430 (void) define_variable (shell_str
, shlen
, comp
->value
, o_env
, 0);
435 /* This won't override any definition, but it
436 will provide one if there isn't one there. */
437 v
= define_variable ("SHELL", 5, default_shell
, o_default
, 0);
438 v
->export
= v_export
; /* Always export SHELL. */
440 /* On MSDOS we do use SHELL from environment, since
441 it isn't a standard environment variable on MSDOS,
442 so whoever sets it, does that on purpose. */
444 /* Don't let SHELL come from the environment. */
445 if (*v
->value
== '\0' || v
->origin
== o_env
|| v
->origin
== o_env_override
)
449 v
->value
= savestring (default_shell
, strlen (default_shell
));
453 /* Make sure MAKEFILES gets exported if it is set. */
454 v
= define_variable ("MAKEFILES", 9, "", o_default
, 0);
457 /* Define the magic D and F variables in terms of
458 the automatic variables they are variations of. */
460 define_variable ("@D", 2, "$(patsubst %/,%,$(dir $@))", o_automatic
, 1);
461 define_variable ("%D", 2, "$(patsubst %/,%,$(dir $%))", o_automatic
, 1);
462 define_variable ("*D", 2, "$(patsubst %/,%,$(dir $*))", o_automatic
, 1);
463 define_variable ("<D", 2, "$(patsubst %/,%,$(dir $<))", o_automatic
, 1);
464 define_variable ("?D", 2, "$(patsubst %/,%,$(dir $?))", o_automatic
, 1);
465 define_variable ("^D", 2, "$(patsubst %/,%,$(dir $^))", o_automatic
, 1);
466 define_variable ("+D", 2, "$(patsubst %/,%,$(dir $+))", o_automatic
, 1);
467 define_variable ("@F", 2, "$(notdir $@)", o_automatic
, 1);
468 define_variable ("%F", 2, "$(notdir $%)", o_automatic
, 1);
469 define_variable ("*F", 2, "$(notdir $*)", o_automatic
, 1);
470 define_variable ("<F", 2, "$(notdir $<)", o_automatic
, 1);
471 define_variable ("?F", 2, "$(notdir $?)", o_automatic
, 1);
472 define_variable ("^F", 2, "$(notdir $^)", o_automatic
, 1);
473 define_variable ("+F", 2, "$(notdir $+)", o_automatic
, 1);
476 int export_all_variables
;
478 /* Create a new environment for FILE's commands.
479 If FILE is nil, this is for the `shell' function.
480 The child's MAKELEVEL variable is incremented. */
483 target_environment (file
)
486 struct variable_set_list
*set_list
;
487 register struct variable_set_list
*s
;
488 struct variable_bucket
490 struct variable_bucket
*next
;
491 struct variable
*variable
;
493 struct variable_bucket
**table
;
494 unsigned int buckets
;
495 register unsigned int i
;
496 register unsigned nvariables
;
498 unsigned int mklev_hash
;
501 set_list
= current_variable_set_list
;
503 set_list
= file
->variables
;
505 /* Find the lowest number of buckets in any set in the list. */
507 buckets
= s
->set
->buckets
;
508 for (s
= s
->next
; s
!= 0; s
= s
->next
)
509 if (s
->set
->buckets
< buckets
)
510 buckets
= s
->set
->buckets
;
512 /* Find the hash value of the bucket `MAKELEVEL' will fall into. */
514 char *p
= "MAKELEVEL";
517 HASH (mklev_hash
, *p
++);
520 /* Temporarily allocate a table with that many buckets. */
521 table
= (struct variable_bucket
**)
522 alloca (buckets
* sizeof (struct variable_bucket
*));
523 bzero ((char *) table
, buckets
* sizeof (struct variable_bucket
*));
525 /* Run through all the variable sets in the list,
526 accumulating variables in TABLE. */
528 for (s
= set_list
; s
!= 0; s
= s
->next
)
530 register struct variable_set
*set
= s
->set
;
531 for (i
= 0; i
< set
->buckets
; ++i
)
533 register struct variable
*v
;
534 for (v
= set
->table
[i
]; v
!= 0; v
= v
->next
)
536 unsigned int j
= i
% buckets
;
537 register struct variable_bucket
*ov
;
538 register char *p
= v
->name
;
540 if (i
== mklev_hash
% set
->buckets
541 && streq (v
->name
, "MAKELEVEL"))
542 /* Don't include MAKELEVEL because it will be
543 added specially at the end. */
546 /* If this is a per-target variable and it hasn't been touched
547 already then look up the global version and take its export
549 if (v
->per_target
&& v
->export
== v_default
)
553 gv
= lookup_variable_in_set(v
->name
, strlen(v
->name
),
554 &global_variable_set
);
556 v
->export
= gv
->export
;
562 if (v
->origin
== o_default
|| v
->origin
== o_automatic
)
563 /* Only export default variables by explicit request. */
566 if (! export_all_variables
567 && v
->origin
!= o_command
568 && v
->origin
!= o_env
&& v
->origin
!= o_env_override
)
571 if (*p
!= '_' && (*p
< 'A' || *p
> 'Z')
572 && (*p
< 'a' || *p
> 'z'))
574 for (++p
; *p
!= '\0'; ++p
)
575 if (*p
!= '_' && (*p
< 'a' || *p
> 'z')
576 && (*p
< 'A' || *p
> 'Z') && (*p
< '0' || *p
> '9'))
589 if (v
->origin
== o_default
)
594 /* If this was from a different-sized hash table, then
595 recalculate the bucket it goes in. */
596 if (set
->buckets
!= buckets
)
601 for (np
= v
->name
; *np
!= '\0'; ++np
)
606 for (ov
= table
[j
]; ov
!= 0; ov
= ov
->next
)
607 if (streq (v
->name
, ov
->variable
->name
))
612 register struct variable_bucket
*entry
;
613 entry
= (struct variable_bucket
*)
614 alloca (sizeof (struct variable_bucket
));
615 entry
->next
= table
[j
];
624 result
= (char **) xmalloc ((nvariables
+ 2) * sizeof (char *));
626 for (i
= 0; i
< buckets
; ++i
)
628 register struct variable_bucket
*b
;
629 for (b
= table
[i
]; b
!= 0; b
= b
->next
)
631 register struct variable
*v
= b
->variable
;
633 /* If V is recursively expanded and didn't come from the environment,
634 expand its value. If it came from the environment, it should
635 go back into the environment unchanged. */
637 && v
->origin
!= o_env
&& v
->origin
!= o_env_override
)
639 char *value
= recursively_expand (v
);
641 if (strcmp(v
->name
, "Path") == 0 ||
642 strcmp(v
->name
, "PATH") == 0)
643 convert_Path_to_windows32(value
, ';');
645 result
[nvariables
++] = concat (v
->name
, "=", value
);
651 if (strcmp(v
->name
, "Path") == 0 ||
652 strcmp(v
->name
, "PATH") == 0)
653 convert_Path_to_windows32(v
->value
, ';');
654 result
[nvariables
++] = concat (v
->name
, "=", v
->value
);
657 result
[nvariables
++] = concat (v
->name
, "=", v
->value
);
661 result
[nvariables
] = (char *) xmalloc (100);
662 (void) sprintf (result
[nvariables
], "MAKELEVEL=%u", makelevel
+ 1);
663 result
[++nvariables
] = 0;
668 /* Try to interpret LINE (a null-terminated string) as a variable definition.
670 ORIGIN may be o_file, o_override, o_env, o_env_override,
671 or o_command specifying that the variable definition comes
672 from a makefile, an override directive, the environment with
673 or without the -e switch, or the command line.
675 See the comments for parse_variable_definition().
677 If LINE was recognized as a variable definition, a pointer to its `struct
678 variable' is returned. If LINE is not a variable definition, NULL is
682 try_variable_definition (flocp
, line
, origin
)
683 const struct floc
*flocp
;
685 enum variable_origin origin
;
688 register char *p
= line
;
692 f_simple
, f_recursive
, f_append
, f_conditional
} flavor
= f_bogus
;
693 char *name
, *expanded_name
, *value
, *alloc_value
=NULL
;
699 if (c
== '\0' || c
== '#')
704 flavor
= f_recursive
;
715 /* A colon other than := is a rule line, not a variable defn. */
717 else if (c
== '+' && *p
== '=')
723 else if (c
== '?' && *p
== '=')
726 flavor
= f_conditional
;
731 /* This might begin a variable expansion reference. Make sure we
732 don't misrecognize chars inside the reference as =, := or +=. */
741 continue; /* Nope. */
743 /* P now points past the opening paren or brace.
744 Count parens or braces until it is matched. */
746 for (; *p
!= '\0'; ++p
)
750 else if (*p
== closeparen
&& --count
< 0)
759 beg
= next_token (line
);
760 while (end
> beg
&& isblank (end
[-1]))
764 /* Expand the name, so "$(foo)bar = baz" works. */
765 name
= (char *) alloca (end
- beg
+ 1);
766 bcopy (beg
, name
, end
- beg
);
767 name
[end
- beg
] = '\0';
768 expanded_name
= allocated_variable_expand (name
);
770 if (expanded_name
[0] == '\0')
771 fatal (flocp
, "empty variable name");
773 /* Calculate the variable's new value in VALUE. */
778 /* Should not be possible. */
781 /* A simple variable definition "var := value". Expand the value.
782 We have to allocate memory since otherwise it'll clobber the
783 variable buffer, and we still need that. */
784 alloc_value
= allocated_variable_expand (p
);
788 /* A conditional variable definition "var ?= value".
789 The value is set IFF the variable is not defined yet. */
790 v
= lookup_variable(expanded_name
, strlen(expanded_name
));
796 flavor
= f_recursive
;
799 /* A recursive variable definition "var = value".
800 The value is used verbatim. */
804 /* An appending variable definition "var += value".
805 Extract the old value and append the new one. */
806 v
= lookup_variable (expanded_name
, strlen (expanded_name
));
809 /* There was no old value.
810 This becomes a normal recursive definition. */
812 flavor
= f_recursive
;
816 /* Paste the old and new values together in VALUE. */
818 unsigned int oldlen
, newlen
;
821 /* The previous definition of the variable was recursive.
822 The new value comes from the unexpanded old and new values. */
823 flavor
= f_recursive
;
825 /* The previous definition of the variable was simple.
826 The new value comes from the old value, which was expanded
827 when it was set; and from the expanded new value. */
828 p
= variable_expand (p
);
830 oldlen
= strlen (v
->value
);
832 value
= (char *) alloca (oldlen
+ 1 + newlen
+ 1);
833 bcopy (v
->value
, value
, oldlen
);
835 bcopy (p
, &value
[oldlen
+ 1], newlen
+ 1);
840 /* Many Unix Makefiles include a line saying "SHELL=/bin/sh", but
841 non-Unix systems don't conform to this default configuration (in
842 fact, most of them don't even have `/bin'). On the other hand,
843 $SHELL in the environment, if set, points to the real pathname of
845 Therefore, we generally won't let lines like "SHELL=/bin/sh" from
846 the Makefile override $SHELL from the environment. But first, we
847 look for the basename of the shell in the directory where SHELL=
848 points, and along the $PATH; if it is found in any of these places,
849 we define $SHELL to be the actual pathname of the shell. Thus, if
850 you have bash.exe installed as d:/unix/bash.exe, and d:/unix is on
851 your $PATH, then SHELL=/usr/local/bin/bash will have the effect of
852 defining SHELL to be "d:/unix/bash.exe". */
854 && strcmp (expanded_name
, "SHELL") == 0)
856 char shellpath
[PATH_MAX
];
857 extern char * __dosexec_find_on_path (const char *, char *[], char *);
859 /* See if we can find "/bin/sh.exe", "/bin/sh.com", etc. */
860 if (__dosexec_find_on_path (value
, (char **)0, shellpath
))
864 for (p
= shellpath
; *p
; p
++)
869 v
= define_variable (expanded_name
, strlen (expanded_name
),
870 shellpath
, origin
, flavor
== f_recursive
);
874 char *shellbase
, *bslash
;
875 struct variable
*pathv
= lookup_variable ("PATH", 4);
880 shellbase
= rindex (value
, '/');
881 bslash
= rindex (value
, '\\');
882 if (!shellbase
|| bslash
> shellbase
)
884 if (!shellbase
&& value
[1] == ':')
885 shellbase
= value
+ 1;
891 /* Search for the basename of the shell (with standard
892 executable extensions) along the $PATH. */
894 pathlen
= strlen (pathv
->value
);
895 path_string
= (char *)xmalloc (5 + pathlen
+ 2 + 1);
896 /* On MSDOS, current directory is considered as part of $PATH. */
897 sprintf (path_string
, "PATH=.;%s", pathv
? pathv
->value
: "");
898 fake_env
[0] = path_string
;
899 fake_env
[1] = (char *)0;
900 if (__dosexec_find_on_path (shellbase
, fake_env
, shellpath
))
904 for (p
= shellpath
; *p
; p
++)
909 v
= define_variable (expanded_name
, strlen (expanded_name
),
910 shellpath
, origin
, flavor
== f_recursive
);
913 v
= lookup_variable (expanded_name
, strlen (expanded_name
));
919 #endif /* __MSDOS__ */
922 && strcmp (expanded_name
, "SHELL") == 0) {
923 extern char* default_shell
;
926 * Call shell locator function. If it returns TRUE, then
927 * set no_default_sh_exe to indicate sh was found and
928 * set new value for SHELL variable.
930 if (find_and_set_default_shell(value
)) {
931 v
= define_variable (expanded_name
, strlen (expanded_name
),
932 default_shell
, origin
, flavor
== f_recursive
);
933 no_default_sh_exe
= 0;
938 v
= define_variable (expanded_name
, strlen (expanded_name
),
939 value
, origin
, flavor
== f_recursive
);
943 free (expanded_name
);
948 /* Print information for variable V, prefixing it with PREFIX. */
951 print_variable (v
, prefix
)
952 register struct variable
*v
;
963 origin
= "environment";
969 origin
= "environment under -e";
972 origin
= "command line";
975 origin
= "`override' directive";
978 origin
= "automatic";
985 printf ("# %s\n", origin
);
987 fputs (prefix
, stdout
);
989 /* Is this a `define'? */
990 if (v
->recursive
&& index (v
->value
, '\n') != 0)
991 printf ("define %s\n%s\nendef\n", v
->name
, v
->value
);
996 printf ("%s %s= ", v
->name
, v
->recursive
? "" : ":");
998 /* Check if the value is just whitespace. */
999 p
= next_token (v
->value
);
1000 if (p
!= v
->value
&& *p
== '\0')
1001 /* All whitespace. */
1002 printf ("$(subst ,,%s)", v
->value
);
1003 else if (v
->recursive
)
1004 fputs (v
->value
, stdout
);
1006 /* Double up dollar signs. */
1007 for (p
= v
->value
; *p
!= '\0'; ++p
)
1018 /* Print all the variables in SET. PREFIX is printed before
1019 the actual variable definitions (everything else is comments). */
1022 print_variable_set (set
, prefix
)
1023 register struct variable_set
*set
;
1026 register unsigned int i
, nvariables
, per_bucket
;
1027 register struct variable
*v
;
1029 per_bucket
= nvariables
= 0;
1030 for (i
= 0; i
< set
->buckets
; ++i
)
1032 register unsigned int this_bucket
= 0;
1034 for (v
= set
->table
[i
]; v
!= 0; v
= v
->next
)
1037 print_variable (v
, prefix
);
1040 nvariables
+= this_bucket
;
1041 if (this_bucket
> per_bucket
)
1042 per_bucket
= this_bucket
;
1045 if (nvariables
== 0)
1046 puts ("# No variables.");
1049 printf ("# %u variables in %u hash buckets.\n",
1050 nvariables
, set
->buckets
);
1052 printf ("# average of %.1f variables per bucket, \
1053 max %u in one bucket.\n",
1054 (double) nvariables
/ (double) set
->buckets
,
1058 int f
= (nvariables
* 1000 + 5) / set
->buckets
;
1059 printf ("# average of %d.%d variables per bucket, \
1060 max %u in one bucket.\n",
1069 /* Print the data base of variables. */
1072 print_variable_data_base ()
1074 puts ("\n# Variables\n");
1076 print_variable_set (&global_variable_set
, "");
1080 /* Print all the local variables of FILE. */
1083 print_file_variables (file
)
1086 if (file
->variables
!= 0)
1087 print_variable_set (file
->variables
->set
, "# ");
1092 sync_Path_environment(void)
1094 char* path
= allocated_variable_expand("$(Path)");
1095 static char* environ_path
= NULL
;
1101 * If done this before, don't leak memory unnecessarily.
1102 * Free the previous entry before allocating new one.
1108 * Create something WINDOWS32 world can grok
1110 convert_Path_to_windows32(path
, ';');
1111 environ_path
= concat("Path", "=", path
);
1112 putenv(environ_path
);