Lines Matching +defs:make +defs:value
107 #include "make.h"
122 time_t now; /* Time at start of make */
185 " [-V variable] [-v variable] [variable=value] [target ...]\n",
847 FStr value = Var_Value(SCOPE_GLOBAL, varname);
848 printf("%s\n", value.str != NULL ? value.str : "");
849 FStr_Done(&value);
863 char *value;
866 value = Var_Subst(expr, SCOPE_GLOBAL, VARE_EVAL);
868 res = ParseBoolean(value, fallback);
869 free(value);
900 * Have now read the entire graph and need to make a list of
935 * If none specified, make the variable empty for now, the parser will fill
1014 * since the value of curdir can vary depending on how we got
1051 * in the environment, try only that value and fall back to .CURDIR if it
1126 const char *make = argv0;
1133 stat(make, &st) == 0)
1134 make = abspath;
1137 Global_Set("MAKE", make);
1138 Global_Set(".MAKE", make);
1210 char *value;
1217 value = Var_Subst("${.MAKE.JOBS}", SCOPE_GLOBAL, VARE_EVAL);
1219 n = (int)strtol(value, NULL, 0);
1222 "%s: illegal value for .MAKE.JOBS "
1230 Global_Append(MAKEFLAGS, value);
1236 free(value);
1242 * variable's value is in the same format as the PATH environment
1692 * makefile specified, as it is set by SysV make.
2018 free(he->value);
2051 * For example our failing child was a sub-make or failure happened elsewhere.
2125 /* we generally want to keep quiet if a sub-make died */
2229 * Convert a string representation of a boolean into a boolean value.