Have the test driver check for the new format of the time skew error
[make.git] / main.c
bloba04671db193e48f30d4291a870194c372c487b71
1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1994, 1995, 1996, 1997, 1998, 1999,
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)
9 any later version.
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, Boston,
19 MA 02111-1307, USA. */
21 #include "make.h"
22 #include "dep.h"
23 #include "filedef.h"
24 #include "variable.h"
25 #include "job.h"
26 #include "commands.h"
27 #include "rule.h"
28 #include "debug.h"
29 #include "getopt.h"
31 #include <assert.h>
32 #ifdef _AMIGA
33 # include <dos/dos.h>
34 # include <proto/dos.h>
35 #endif
36 #ifdef WINDOWS32
37 #include <windows.h>
38 #include "pathstuff.h"
39 #endif
40 #if defined(MAKE_JOBSERVER) && defined(HAVE_FCNTL_H)
41 # include <fcntl.h>
42 #endif
44 #ifdef _AMIGA
45 int __stack = 20000; /* Make sure we have 20K of stack space */
46 #endif
48 extern void init_dir PARAMS ((void));
49 extern void remote_setup PARAMS ((void));
50 extern void remote_cleanup PARAMS ((void));
51 extern RETSIGTYPE fatal_error_signal PARAMS ((int sig));
53 extern void print_variable_data_base PARAMS ((void));
54 extern void print_dir_data_base PARAMS ((void));
55 extern void print_rule_data_base PARAMS ((void));
56 extern void print_file_data_base PARAMS ((void));
57 extern void print_vpath_data_base PARAMS ((void));
59 #if defined HAVE_WAITPID || defined HAVE_WAIT3
60 # define HAVE_WAIT_NOHANG
61 #endif
63 #ifndef HAVE_UNISTD_H
64 extern int chdir ();
65 #endif
66 #ifndef STDC_HEADERS
67 # ifndef sun /* Sun has an incorrect decl in a header. */
68 extern void exit PARAMS ((int)) __attribute__ ((noreturn));
69 # endif
70 extern double atof ();
71 #endif
73 static void print_data_base PARAMS ((void));
74 static void print_version PARAMS ((void));
75 static void decode_switches PARAMS ((int argc, char **argv, int env));
76 static void decode_env_switches PARAMS ((char *envar, unsigned int len));
77 static void define_makeflags PARAMS ((int all, int makefile));
78 static char *quote_for_env PARAMS ((char *out, char *in));
79 static void initialize_global_hash_tables PARAMS ((void));
82 /* The structure that describes an accepted command switch. */
84 struct command_switch
86 int c; /* The switch character. */
88 enum /* Type of the value. */
90 flag, /* Turn int flag on. */
91 flag_off, /* Turn int flag off. */
92 string, /* One string per switch. */
93 positive_int, /* A positive integer. */
94 floating, /* A floating-point number (double). */
95 ignore /* Ignored. */
96 } type;
98 char *value_ptr; /* Pointer to the value-holding variable. */
100 unsigned int env:1; /* Can come from MAKEFLAGS. */
101 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
102 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
104 char *noarg_value; /* Pointer to value used if no argument is given. */
105 char *default_value;/* Pointer to default value. */
107 char *long_name; /* Long option name. */
110 /* True if C is a switch value that corresponds to a short option. */
112 #define short_option(c) ((c) <= CHAR_MAX)
114 /* The structure used to hold the list of strings given
115 in command switches of a type that takes string arguments. */
117 struct stringlist
119 char **list; /* Nil-terminated list of strings. */
120 unsigned int idx; /* Index into above. */
121 unsigned int max; /* Number of pointers allocated. */
125 /* The recognized command switches. */
127 /* Nonzero means do not print commands to be executed (-s). */
129 int silent_flag;
131 /* Nonzero means just touch the files
132 that would appear to need remaking (-t) */
134 int touch_flag;
136 /* Nonzero means just print what commands would need to be executed,
137 don't actually execute them (-n). */
139 int just_print_flag;
141 /* Print debugging info (--debug). */
143 static struct stringlist *db_flags;
144 static int debug_flag = 0;
146 int db_level = 0;
148 #ifdef WINDOWS32
149 /* Suspend make in main for a short time to allow debugger to attach */
151 int suspend_flag = 0;
152 #endif
154 /* Environment variables override makefile definitions. */
156 int env_overrides = 0;
158 /* Nonzero means ignore status codes returned by commands
159 executed to remake files. Just treat them all as successful (-i). */
161 int ignore_errors_flag = 0;
163 /* Nonzero means don't remake anything, just print the data base
164 that results from reading the makefile (-p). */
166 int print_data_base_flag = 0;
168 /* Nonzero means don't remake anything; just return a nonzero status
169 if the specified targets are not up to date (-q). */
171 int question_flag = 0;
173 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
175 int no_builtin_rules_flag = 0;
176 int no_builtin_variables_flag = 0;
178 /* Nonzero means keep going even if remaking some file fails (-k). */
180 int keep_going_flag;
181 int default_keep_going_flag = 0;
183 /* Nonzero means print directory before starting and when done (-w). */
185 int print_directory_flag = 0;
187 /* Nonzero means ignore print_directory_flag and never print the directory.
188 This is necessary because print_directory_flag is set implicitly. */
190 int inhibit_print_directory_flag = 0;
192 /* Nonzero means print version information. */
194 int print_version_flag = 0;
196 /* List of makefiles given with -f switches. */
198 static struct stringlist *makefiles = 0;
200 /* Number of job slots (commands that can be run at once). */
202 unsigned int job_slots = 1;
203 unsigned int default_job_slots = 1;
205 /* Value of job_slots that means no limit. */
207 static unsigned int inf_jobs = 0;
209 /* File descriptors for the jobs pipe. */
211 static struct stringlist *jobserver_fds = 0;
213 int job_fds[2] = { -1, -1 };
214 int job_rfd = -1;
216 /* Maximum load average at which multiple jobs will be run.
217 Negative values mean unlimited, while zero means limit to
218 zero load (which could be useful to start infinite jobs remotely
219 but one at a time locally). */
220 #ifndef NO_FLOAT
221 double max_load_average = -1.0;
222 double default_load_average = -1.0;
223 #else
224 int max_load_average = -1;
225 int default_load_average = -1;
226 #endif
228 /* List of directories given with -C switches. */
230 static struct stringlist *directories = 0;
232 /* List of include directories given with -I switches. */
234 static struct stringlist *include_directories = 0;
236 /* List of files given with -o switches. */
238 static struct stringlist *old_files = 0;
240 /* List of files given with -W switches. */
242 static struct stringlist *new_files = 0;
244 /* If nonzero, we should just print usage and exit. */
246 static int print_usage_flag = 0;
248 /* If nonzero, we should print a warning message
249 for each reference to an undefined variable. */
251 int warn_undefined_variables_flag;
253 /* If nonzero, always build all targets, regardless of whether
254 they appear out of date or not. */
256 int always_make_flag = 0;
258 /* The usage output. We write it this way to make life easier for the
259 translators, especially those trying to translate to right-to-left
260 languages like Hebrew. */
262 static const char *const usage[] =
264 N_("Options:\n"),
265 N_("\
266 -b, -m Ignored for compatibility.\n"),
267 N_("\
268 -B, --always-make Unconditionally make all targets.\n"),
269 N_("\
270 -C DIRECTORY, --directory=DIRECTORY\n\
271 Change to DIRECTORY before doing anything.\n"),
272 N_("\
273 -d Print lots of debugging information.\n"),
274 N_("\
275 --debug[=FLAGS] Print various types of debugging information.\n"),
276 N_("\
277 -e, --environment-overrides\n\
278 Environment variables override makefiles.\n"),
279 N_("\
280 -f FILE, --file=FILE, --makefile=FILE\n\
281 Read FILE as a makefile.\n"),
282 N_("\
283 -h, --help Print this message and exit.\n"),
284 N_("\
285 -i, --ignore-errors Ignore errors from commands.\n"),
286 N_("\
287 -I DIRECTORY, --include-dir=DIRECTORY\n\
288 Search DIRECTORY for included makefiles.\n"),
289 N_("\
290 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
291 N_("\
292 -k, --keep-going Keep going when some targets can't be made.\n"),
293 N_("\
294 -l [N], --load-average[=N], --max-load[=N]\n\
295 Don't start multiple jobs unless load is below N.\n"),
296 N_("\
297 -n, --just-print, --dry-run, --recon\n\
298 Don't actually run any commands; just print them.\n"),
299 N_("\
300 -o FILE, --old-file=FILE, --assume-old=FILE\n\
301 Consider FILE to be very old and don't remake it.\n"),
302 N_("\
303 -p, --print-data-base Print make's internal database.\n"),
304 N_("\
305 -q, --question Run no commands; exit status says if up to date.\n"),
306 N_("\
307 -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
308 N_("\
309 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
310 N_("\
311 -s, --silent, --quiet Don't echo commands.\n"),
312 N_("\
313 -S, --no-keep-going, --stop\n\
314 Turns off -k.\n"),
315 N_("\
316 -t, --touch Touch targets instead of remaking them.\n"),
317 N_("\
318 -v, --version Print the version number of make and exit.\n"),
319 N_("\
320 -w, --print-directory Print the current directory.\n"),
321 N_("\
322 --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
323 N_("\
324 -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
325 Consider FILE to be infinitely new.\n"),
326 N_("\
327 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
328 NULL
331 /* The table of command switches. */
333 static const struct command_switch switches[] =
335 { 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
336 { 'B', flag, (char *) &always_make_flag, 1, 1, 0, 0, 0, "always-make" },
337 { 'C', string, (char *) &directories, 0, 0, 0, 0, 0, "directory" },
338 { 'd', flag, (char *) &debug_flag, 1, 1, 0, 0, 0, 0 },
339 { CHAR_MAX+1, string, (char *) &db_flags, 1, 1, 0, "basic", 0, "debug" },
340 #ifdef WINDOWS32
341 { 'D', flag, (char *) &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
342 #endif
343 { 'e', flag, (char *) &env_overrides, 1, 1, 0, 0, 0,
344 "environment-overrides", },
345 { 'f', string, (char *) &makefiles, 0, 0, 0, 0, 0, "file" },
346 { 'h', flag, (char *) &print_usage_flag, 0, 0, 0, 0, 0, "help" },
347 { 'i', flag, (char *) &ignore_errors_flag, 1, 1, 0, 0, 0,
348 "ignore-errors" },
349 { 'I', string, (char *) &include_directories, 1, 1, 0, 0, 0,
350 "include-dir" },
351 { 'j', positive_int, (char *) &job_slots, 1, 1, 0, (char *) &inf_jobs,
352 (char *) &default_job_slots, "jobs" },
353 { CHAR_MAX+2, string, (char *) &jobserver_fds, 1, 1, 0, 0, 0,
354 "jobserver-fds" },
355 { 'k', flag, (char *) &keep_going_flag, 1, 1, 0, 0,
356 (char *) &default_keep_going_flag, "keep-going" },
357 #ifndef NO_FLOAT
358 { 'l', floating, (char *) &max_load_average, 1, 1, 0,
359 (char *) &default_load_average, (char *) &default_load_average,
360 "load-average" },
361 #else
362 { 'l', positive_int, (char *) &max_load_average, 1, 1, 0,
363 (char *) &default_load_average, (char *) &default_load_average,
364 "load-average" },
365 #endif
366 { 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
367 { 'n', flag, (char *) &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
368 { 'o', string, (char *) &old_files, 0, 0, 0, 0, 0, "old-file" },
369 { 'p', flag, (char *) &print_data_base_flag, 1, 1, 0, 0, 0,
370 "print-data-base" },
371 { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0, "question" },
372 { 'r', flag, (char *) &no_builtin_rules_flag, 1, 1, 0, 0, 0,
373 "no-builtin-rules" },
374 { 'R', flag, (char *) &no_builtin_variables_flag, 1, 1, 0, 0, 0,
375 "no-builtin-variables" },
376 { 's', flag, (char *) &silent_flag, 1, 1, 0, 0, 0, "silent" },
377 { 'S', flag_off, (char *) &keep_going_flag, 1, 1, 0, 0,
378 (char *) &default_keep_going_flag, "no-keep-going" },
379 { 't', flag, (char *) &touch_flag, 1, 1, 1, 0, 0, "touch" },
380 { 'v', flag, (char *) &print_version_flag, 1, 1, 0, 0, 0, "version" },
381 { 'w', flag, (char *) &print_directory_flag, 1, 1, 0, 0, 0,
382 "print-directory" },
383 { CHAR_MAX+3, flag, (char *) &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
384 "no-print-directory" },
385 { 'W', string, (char *) &new_files, 0, 0, 0, 0, 0, "what-if" },
386 { CHAR_MAX+4, flag, (char *) &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
387 "warn-undefined-variables" },
388 { '\0', }
391 /* Secondary long names for options. */
393 static struct option long_option_aliases[] =
395 { "quiet", no_argument, 0, 's' },
396 { "stop", no_argument, 0, 'S' },
397 { "new-file", required_argument, 0, 'W' },
398 { "assume-new", required_argument, 0, 'W' },
399 { "assume-old", required_argument, 0, 'o' },
400 { "max-load", optional_argument, 0, 'l' },
401 { "dry-run", no_argument, 0, 'n' },
402 { "recon", no_argument, 0, 'n' },
403 { "makefile", required_argument, 0, 'f' },
406 /* List of goal targets. */
408 static struct dep *goals, *lastgoal;
410 /* List of variables which were defined on the command line
411 (or, equivalently, in MAKEFLAGS). */
413 struct command_variable
415 struct command_variable *next;
416 struct variable *variable;
418 static struct command_variable *command_variables;
420 /* The name we were invoked with. */
422 char *program;
424 /* Our current directory before processing any -C options. */
426 char *directory_before_chdir;
428 /* Our current directory after processing all -C options. */
430 char *starting_directory;
432 /* Value of the MAKELEVEL variable at startup (or 0). */
434 unsigned int makelevel;
436 /* First file defined in the makefile whose name does not
437 start with `.'. This is the default to remake if the
438 command line does not specify. */
440 struct file *default_goal_file;
442 /* Pointer to structure for the file .DEFAULT
443 whose commands are used for any file that has none of its own.
444 This is zero if the makefiles do not define .DEFAULT. */
446 struct file *default_file;
448 /* Nonzero if we have seen the magic `.POSIX' target.
449 This turns on pedantic compliance with POSIX.2. */
451 int posix_pedantic;
453 /* Nonzero if we have seen the `.NOTPARALLEL' target.
454 This turns off parallel builds for this invocation of make. */
456 int not_parallel;
458 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
459 print one warning about it during the run, and (b) we can print a final
460 warning at the end of the run. */
462 int clock_skew_detected;
464 /* Mask of signals that are being caught with fatal_error_signal. */
466 #ifdef POSIX
467 sigset_t fatal_signal_set;
468 #else
469 # ifdef HAVE_SIGSETMASK
470 int fatal_signal_mask;
471 # endif
472 #endif
474 #if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
475 # if !defined HAVE_SIGACTION
476 # define bsd_signal signal
477 # else
478 typedef RETSIGTYPE (*bsd_signal_ret_t) ();
480 static bsd_signal_ret_t
481 bsd_signal (sig, func)
482 int sig;
483 bsd_signal_ret_t func;
485 struct sigaction act, oact;
486 act.sa_handler = func;
487 act.sa_flags = SA_RESTART;
488 sigemptyset (&act.sa_mask);
489 sigaddset (&act.sa_mask, sig);
490 if (sigaction (sig, &act, &oact) != 0)
491 return SIG_ERR;
492 return oact.sa_handler;
494 # endif
495 #endif
497 static void
498 initialize_global_hash_tables ()
500 init_hash_global_variable_set ();
501 init_hash_files ();
502 hash_init_directories ();
503 hash_init_function_table ();
506 static struct file *
507 enter_command_line_file (name)
508 char *name;
510 if (name[0] == '\0')
511 fatal (NILF, _("empty string invalid as file name"));
513 if (name[0] == '~')
515 char *expanded = tilde_expand (name);
516 if (expanded != 0)
517 name = expanded; /* Memory leak; I don't care. */
520 /* This is also done in parse_file_seq, so this is redundant
521 for names read from makefiles. It is here for names passed
522 on the command line. */
523 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
525 name += 2;
526 while (*name == '/')
527 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
528 ++name;
531 if (*name == '\0')
533 /* It was all slashes! Move back to the dot and truncate
534 it after the first slash, so it becomes just "./". */
536 --name;
537 while (name[0] != '.');
538 name[2] = '\0';
541 return enter_file (xstrdup (name));
544 /* Toggle -d on receipt of SIGUSR1. */
546 static RETSIGTYPE
547 debug_signal_handler (sig)
548 int sig;
550 db_level = db_level ? DB_NONE : DB_BASIC;
553 static void
554 decode_debug_flags ()
556 char **pp;
558 if (debug_flag)
559 db_level = DB_ALL;
561 if (!db_flags)
562 return;
564 for (pp=db_flags->list; *pp; ++pp)
566 const char *p = *pp;
568 while (1)
570 switch (tolower (p[0]))
572 case 'a':
573 db_level |= DB_ALL;
574 break;
575 case 'b':
576 db_level |= DB_BASIC;
577 break;
578 case 'i':
579 db_level |= DB_BASIC | DB_IMPLICIT;
580 break;
581 case 'j':
582 db_level |= DB_JOBS;
583 break;
584 case 'm':
585 db_level |= DB_BASIC | DB_MAKEFILES;
586 break;
587 case 'v':
588 db_level |= DB_BASIC | DB_VERBOSE;
589 break;
590 default:
591 fatal (NILF, _("unknown debug level specification `%s'"), p);
594 while (*(++p) != '\0')
595 if (*p == ',' || *p == ' ')
596 break;
598 if (*p == '\0')
599 break;
601 ++p;
606 #ifdef WINDOWS32
608 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
609 * exception and print it to stderr instead.
611 * If ! DB_VERBOSE, just print a simple message and exit.
612 * If DB_VERBOSE, print a more verbose message.
613 * If compiled for DEBUG, let exception pass through to GUI so that
614 * debuggers can attach.
616 LONG WINAPI
617 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
619 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
620 LPSTR cmdline = GetCommandLine();
621 LPSTR prg = strtok(cmdline, " ");
622 CHAR errmsg[1024];
623 #ifdef USE_EVENT_LOG
624 HANDLE hEventSource;
625 LPTSTR lpszStrings[1];
626 #endif
628 if (! ISDB (DB_VERBOSE))
630 sprintf(errmsg,
631 _("%s: Interrupt/Exception caught (code = 0x%x, addr = 0x%x)\n"),
632 prg, exrec->ExceptionCode, exrec->ExceptionAddress);
633 fprintf(stderr, errmsg);
634 exit(255);
637 sprintf(errmsg,
638 _("\nUnhandled exception filter called from program %s\nExceptionCode = %x\nExceptionFlags = %x\nExceptionAddress = %x\n"),
639 prg, exrec->ExceptionCode, exrec->ExceptionFlags,
640 exrec->ExceptionAddress);
642 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
643 && exrec->NumberParameters >= 2)
644 sprintf(&errmsg[strlen(errmsg)],
645 (exrec->ExceptionInformation[0]
646 ? _("Access violation: write operation at address %x\n")
647 : _("Access violation: read operation at address %x\n")),
648 exrec->ExceptionInformation[1]);
650 /* turn this on if we want to put stuff in the event log too */
651 #ifdef USE_EVENT_LOG
652 hEventSource = RegisterEventSource(NULL, "GNU Make");
653 lpszStrings[0] = errmsg;
655 if (hEventSource != NULL)
657 ReportEvent(hEventSource, /* handle of event source */
658 EVENTLOG_ERROR_TYPE, /* event type */
659 0, /* event category */
660 0, /* event ID */
661 NULL, /* current user's SID */
662 1, /* strings in lpszStrings */
663 0, /* no bytes of raw data */
664 lpszStrings, /* array of error strings */
665 NULL); /* no raw data */
667 (VOID) DeregisterEventSource(hEventSource);
669 #endif
671 /* Write the error to stderr too */
672 fprintf(stderr, errmsg);
674 #ifdef DEBUG
675 return EXCEPTION_CONTINUE_SEARCH;
676 #else
677 exit(255);
678 return (255); /* not reached */
679 #endif
683 * On WIN32 systems we don't have the luxury of a /bin directory that
684 * is mapped globally to every drive mounted to the system. Since make could
685 * be invoked from any drive, and we don't want to propogate /bin/sh
686 * to every single drive. Allow ourselves a chance to search for
687 * a value for default shell here (if the default path does not exist).
691 find_and_set_default_shell(char *token)
693 int sh_found = 0;
694 char* search_token;
695 PATH_VAR(sh_path);
696 extern char *default_shell;
698 if (!token)
699 search_token = default_shell;
700 else
701 search_token = token;
703 if (!no_default_sh_exe &&
704 (token == NULL || !strcmp(search_token, default_shell))) {
705 /* no new information, path already set or known */
706 sh_found = 1;
707 } else if (file_exists_p(search_token)) {
708 /* search token path was found */
709 sprintf(sh_path, "%s", search_token);
710 default_shell = xstrdup(w32ify(sh_path,0));
711 DB (DB_VERBOSE,
712 (_("find_and_set_shell setting default_shell = %s\n"), default_shell));
713 sh_found = 1;
714 } else {
715 char *p;
716 struct variable *v = lookup_variable ("Path", 4);
719 * Search Path for shell
721 if (v && v->value) {
722 char *ep;
724 p = v->value;
725 ep = strchr(p, PATH_SEPARATOR_CHAR);
727 while (ep && *ep) {
728 *ep = '\0';
730 if (dir_file_exists_p(p, search_token)) {
731 sprintf(sh_path, "%s/%s", p, search_token);
732 default_shell = xstrdup(w32ify(sh_path,0));
733 sh_found = 1;
734 *ep = PATH_SEPARATOR_CHAR;
736 /* terminate loop */
737 p += strlen(p);
738 } else {
739 *ep = PATH_SEPARATOR_CHAR;
740 p = ++ep;
743 ep = strchr(p, PATH_SEPARATOR_CHAR);
746 /* be sure to check last element of Path */
747 if (p && *p && dir_file_exists_p(p, search_token)) {
748 sprintf(sh_path, "%s/%s", p, search_token);
749 default_shell = xstrdup(w32ify(sh_path,0));
750 sh_found = 1;
753 if (sh_found)
754 DB (DB_VERBOSE,
755 (_("find_and_set_shell path search set default_shell = %s\n"),
756 default_shell));
760 /* naive test */
761 if (!unixy_shell && sh_found &&
762 (strstr(default_shell, "sh") || strstr(default_shell, "SH"))) {
763 unixy_shell = 1;
764 batch_mode_shell = 0;
767 #ifdef BATCH_MODE_ONLY_SHELL
768 batch_mode_shell = 1;
769 #endif
771 return (sh_found);
773 #endif /* WINDOWS32 */
775 #ifdef __MSDOS__
777 static void
778 msdos_return_to_initial_directory ()
780 if (directory_before_chdir)
781 chdir (directory_before_chdir);
783 #endif
785 extern char *mktemp ();
786 extern int mkstemp ();
788 FILE *
789 open_tmpfile(name, template)
790 char **name;
791 const char *template;
793 int fd;
795 #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
796 # define TEMPLATE_LEN strlen (template)
797 #else
798 # define TEMPLATE_LEN L_tmpnam
799 #endif
800 *name = xmalloc (TEMPLATE_LEN + 1);
801 strcpy (*name, template);
803 #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
804 /* It's safest to use mkstemp(), if we can. */
805 fd = mkstemp (*name);
806 if (fd == -1)
807 return 0;
808 return fdopen (fd, "w");
809 #else
810 # ifdef HAVE_MKTEMP
811 (void) mktemp (*name);
812 # else
813 (void) tmpnam (*name);
814 # endif
816 # ifdef HAVE_FDOPEN
817 /* Can't use mkstemp(), but guard against a race condition. */
818 fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
819 if (fd == -1)
820 return 0;
821 return fdopen (fd, "w");
822 # else
823 /* Not secure, but what can we do? */
824 return fopen (*name, "w");
825 # endif
826 #endif
830 #ifndef _AMIGA
832 main (argc, argv, envp)
833 int argc;
834 char **argv;
835 char **envp;
836 #else
837 int main (int argc, char ** argv)
838 #endif
840 static char *stdin_nm = 0;
841 register struct file *f;
842 register unsigned int i;
843 char **p;
844 struct dep *read_makefiles;
845 PATH_VAR (current_directory);
846 #ifdef WINDOWS32
847 char *unix_path = NULL;
848 char *windows32_path = NULL;
850 SetUnhandledExceptionFilter(handle_runtime_exceptions);
852 /* start off assuming we have no shell */
853 unixy_shell = 0;
854 no_default_sh_exe = 1;
855 #endif
857 default_goal_file = 0;
858 reading_file = 0;
860 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
861 /* Request the most powerful version of `system', to
862 make up for the dumb default shell. */
863 __system_flags = (__system_redirect
864 | __system_use_shell
865 | __system_allow_multiple_cmds
866 | __system_allow_long_cmds
867 | __system_handle_null_commands
868 | __system_emulate_chdir);
870 #endif
872 /* Set up gettext/internationalization support. */
873 setlocale (LC_ALL, "");
874 bindtextdomain (PACKAGE, LOCALEDIR);
875 textdomain (PACKAGE);
877 #ifdef POSIX
878 sigemptyset (&fatal_signal_set);
879 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
880 #else
881 #ifdef HAVE_SIGSETMASK
882 fatal_signal_mask = 0;
883 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
884 #else
885 #define ADD_SIG(sig)
886 #endif
887 #endif
889 #define FATAL_SIG(sig) \
890 if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
891 bsd_signal (sig, SIG_IGN); \
892 else \
893 ADD_SIG (sig);
895 #ifdef SIGHUP
896 FATAL_SIG (SIGHUP);
897 #endif
898 #ifdef SIGQUIT
899 FATAL_SIG (SIGQUIT);
900 #endif
901 FATAL_SIG (SIGINT);
902 FATAL_SIG (SIGTERM);
904 #ifdef __MSDOS__
905 /* Windows 9X delivers FP exceptions in child programs to their
906 parent! We don't want Make to die when a child divides by zero,
907 so we work around that lossage by catching SIGFPE. */
908 FATAL_SIG (SIGFPE);
909 #endif
911 #ifdef SIGDANGER
912 FATAL_SIG (SIGDANGER);
913 #endif
914 #ifdef SIGXCPU
915 FATAL_SIG (SIGXCPU);
916 #endif
917 #ifdef SIGXFSZ
918 FATAL_SIG (SIGXFSZ);
919 #endif
921 #undef FATAL_SIG
923 /* Do not ignore the child-death signal. This must be done before
924 any children could possibly be created; otherwise, the wait
925 functions won't work on systems with the SVR4 ECHILD brain
926 damage, if our invoker is ignoring this signal. */
928 #ifdef HAVE_WAIT_NOHANG
929 # if defined SIGCHLD
930 (void) bsd_signal (SIGCHLD, SIG_DFL);
931 # endif
932 # if defined SIGCLD && SIGCLD != SIGCHLD
933 (void) bsd_signal (SIGCLD, SIG_DFL);
934 # endif
935 #endif
937 /* Make sure stdout is line-buffered. */
939 #ifdef HAVE_SETVBUF
940 # ifdef SETVBUF_REVERSED
941 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
942 # else /* setvbuf not reversed. */
943 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
944 setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
945 # endif /* setvbuf reversed. */
946 #elif HAVE_SETLINEBUF
947 setlinebuf (stdout);
948 #endif /* setlinebuf missing. */
950 /* Figure out where this program lives. */
952 if (argv[0] == 0)
953 argv[0] = "";
954 if (argv[0][0] == '\0')
955 program = "make";
956 else
958 #ifdef VMS
959 program = strrchr (argv[0], ']');
960 #else
961 program = strrchr (argv[0], '/');
962 #endif
963 #ifdef __MSDOS__
964 if (program == 0)
965 program = strrchr (argv[0], '\\');
966 else
968 /* Some weird environments might pass us argv[0] with
969 both kinds of slashes; we must find the rightmost. */
970 char *p = strrchr (argv[0], '\\');
971 if (p && p > program)
972 program = p;
974 if (program == 0 && argv[0][1] == ':')
975 program = argv[0] + 1;
976 #endif
977 if (program == 0)
978 program = argv[0];
979 else
980 ++program;
983 /* Set up to access user data (files). */
984 user_access ();
986 initialize_global_hash_tables ();
988 /* Figure out where we are. */
990 #ifdef WINDOWS32
991 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
992 #else
993 if (getcwd (current_directory, GET_PATH_MAX) == 0)
994 #endif
996 #ifdef HAVE_GETCWD
997 perror_with_name ("getcwd: ", "");
998 #else
999 error (NILF, "getwd: %s", current_directory);
1000 #endif
1001 current_directory[0] = '\0';
1002 directory_before_chdir = 0;
1004 else
1005 directory_before_chdir = xstrdup (current_directory);
1006 #ifdef __MSDOS__
1007 /* Make sure we will return to the initial directory, come what may. */
1008 atexit (msdos_return_to_initial_directory);
1009 #endif
1011 /* Initialize the special variables. */
1012 define_variable (".VARIABLES", 10, "", o_default, 0)->special = 1;
1013 /* define_variable (".TARGETS", 8, "", o_default, 0); */
1015 /* Read in variables from the environment. It is important that this be
1016 done before $(MAKE) is figured out so its definitions will not be
1017 from the environment. */
1019 #ifndef _AMIGA
1020 for (i = 0; envp[i] != 0; ++i)
1022 int do_not_define;
1023 register char *ep = envp[i];
1025 /* by default, everything gets defined and exported */
1026 do_not_define = 0;
1028 while (*ep != '=')
1029 ++ep;
1030 #ifdef WINDOWS32
1031 if (!unix_path && strneq(envp[i], "PATH=", 5))
1032 unix_path = ep+1;
1033 else if (!windows32_path && !strnicmp(envp[i], "Path=", 5)) {
1034 do_not_define = 1; /* it gets defined after loop exits */
1035 windows32_path = ep+1;
1037 #endif
1038 /* The result of pointer arithmetic is cast to unsigned int for
1039 machines where ptrdiff_t is a different size that doesn't widen
1040 the same. */
1041 if (!do_not_define)
1042 define_variable (envp[i], (unsigned int) (ep - envp[i]),
1043 ep + 1, o_env, 1)
1044 /* Force exportation of every variable culled from the environment.
1045 We used to rely on target_environment's v_default code to do this.
1046 But that does not work for the case where an environment variable
1047 is redefined in a makefile with `override'; it should then still
1048 be exported, because it was originally in the environment. */
1049 ->export = v_export;
1051 #ifdef WINDOWS32
1053 * Make sure that this particular spelling of 'Path' is available
1055 if (windows32_path)
1056 define_variable("Path", 4, windows32_path, o_env, 1)->export = v_export;
1057 else if (unix_path)
1058 define_variable("Path", 4, unix_path, o_env, 1)->export = v_export;
1059 else
1060 define_variable("Path", 4, "", o_env, 1)->export = v_export;
1063 * PATH defaults to Path iff PATH not found and Path is found.
1065 if (!unix_path && windows32_path)
1066 define_variable("PATH", 4, windows32_path, o_env, 1)->export = v_export;
1067 #endif
1068 #else /* For Amiga, read the ENV: device, ignoring all dirs */
1070 BPTR env, file, old;
1071 char buffer[1024];
1072 int len;
1073 __aligned struct FileInfoBlock fib;
1075 env = Lock ("ENV:", ACCESS_READ);
1076 if (env)
1078 old = CurrentDir (DupLock(env));
1079 Examine (env, &fib);
1081 while (ExNext (env, &fib))
1083 if (fib.fib_DirEntryType < 0) /* File */
1085 /* Define an empty variable. It will be filled in
1086 variable_lookup(). Makes startup quite a bit
1087 faster. */
1088 define_variable (fib.fib_FileName,
1089 strlen (fib.fib_FileName),
1090 "", o_env, 1)->export = v_export;
1093 UnLock (env);
1094 UnLock(CurrentDir(old));
1097 #endif
1099 /* Decode the switches. */
1101 decode_env_switches ("MAKEFLAGS", 9);
1102 #if 0
1103 /* People write things like:
1104 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
1105 and we set the -p, -i and -e switches. Doesn't seem quite right. */
1106 decode_env_switches ("MFLAGS", 6);
1107 #endif
1108 decode_switches (argc, argv, 0);
1109 #ifdef WINDOWS32
1110 if (suspend_flag) {
1111 fprintf(stderr, "%s (pid = %d)\n", argv[0], GetCurrentProcessId());
1112 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
1113 Sleep(30 * 1000);
1114 fprintf(stderr, _("done sleep(30). Continuing.\n"));
1116 #endif
1118 decode_debug_flags ();
1120 /* Print version information. */
1122 if (print_version_flag || print_data_base_flag || db_level)
1123 print_version ();
1125 /* `make --version' is supposed to just print the version and exit. */
1126 if (print_version_flag)
1127 die (0);
1129 #ifndef VMS
1130 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
1131 (If it is a relative pathname with a slash, prepend our directory name
1132 so the result will run the same program regardless of the current dir.
1133 If it is a name with no slash, we can only hope that PATH did not
1134 find it in the current directory.) */
1135 #ifdef WINDOWS32
1137 * Convert from backslashes to forward slashes for
1138 * programs like sh which don't like them. Shouldn't
1139 * matter if the path is one way or the other for
1140 * CreateProcess().
1142 if (strpbrk(argv[0], "/:\\") ||
1143 strstr(argv[0], "..") ||
1144 strneq(argv[0], "//", 2))
1145 argv[0] = xstrdup(w32ify(argv[0],1));
1146 #else /* WINDOWS32 */
1147 #ifdef __MSDOS__
1148 if (strchr (argv[0], '\\'))
1150 char *p;
1152 argv[0] = xstrdup (argv[0]);
1153 for (p = argv[0]; *p; p++)
1154 if (*p == '\\')
1155 *p = '/';
1157 /* If argv[0] is not in absolute form, prepend the current
1158 directory. This can happen when Make is invoked by another DJGPP
1159 program that uses a non-absolute name. */
1160 if (current_directory[0] != '\0'
1161 && argv[0] != 0
1162 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':')))
1163 argv[0] = concat (current_directory, "/", argv[0]);
1164 #else /* !__MSDOS__ */
1165 if (current_directory[0] != '\0'
1166 && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0)
1167 argv[0] = concat (current_directory, "/", argv[0]);
1168 #endif /* !__MSDOS__ */
1169 #endif /* WINDOWS32 */
1170 #endif
1172 /* The extra indirection through $(MAKE_COMMAND) is done
1173 for hysterical raisins. */
1174 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
1175 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
1177 if (command_variables != 0)
1179 struct command_variable *cv;
1180 struct variable *v;
1181 unsigned int len = 0;
1182 char *value, *p;
1184 /* Figure out how much space will be taken up by the command-line
1185 variable definitions. */
1186 for (cv = command_variables; cv != 0; cv = cv->next)
1188 v = cv->variable;
1189 len += 2 * strlen (v->name);
1190 if (! v->recursive)
1191 ++len;
1192 ++len;
1193 len += 2 * strlen (v->value);
1194 ++len;
1197 /* Now allocate a buffer big enough and fill it. */
1198 p = value = (char *) alloca (len);
1199 for (cv = command_variables; cv != 0; cv = cv->next)
1201 v = cv->variable;
1202 p = quote_for_env (p, v->name);
1203 if (! v->recursive)
1204 *p++ = ':';
1205 *p++ = '=';
1206 p = quote_for_env (p, v->value);
1207 *p++ = ' ';
1209 p[-1] = '\0'; /* Kill the final space and terminate. */
1211 /* Define an unchangeable variable with a name that no POSIX.2
1212 makefile could validly use for its own variable. */
1213 (void) define_variable ("-*-command-variables-*-", 23,
1214 value, o_automatic, 0);
1216 /* Define the variable; this will not override any user definition.
1217 Normally a reference to this variable is written into the value of
1218 MAKEFLAGS, allowing the user to override this value to affect the
1219 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1220 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1221 a reference to this hidden variable is written instead. */
1222 (void) define_variable ("MAKEOVERRIDES", 13,
1223 "${-*-command-variables-*-}", o_env, 1);
1226 /* If there were -C flags, move ourselves about. */
1227 if (directories != 0)
1228 for (i = 0; directories->list[i] != 0; ++i)
1230 char *dir = directories->list[i];
1231 if (dir[0] == '~')
1233 char *expanded = tilde_expand (dir);
1234 if (expanded != 0)
1235 dir = expanded;
1237 if (chdir (dir) < 0)
1238 pfatal_with_name (dir);
1239 if (dir != directories->list[i])
1240 free (dir);
1243 #ifdef WINDOWS32
1245 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1246 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1248 * The functions in dir.c can incorrectly cache information for "."
1249 * before we have changed directory and this can cause file
1250 * lookups to fail because the current directory (.) was pointing
1251 * at the wrong place when it was first evaluated.
1253 no_default_sh_exe = !find_and_set_default_shell(NULL);
1255 #endif /* WINDOWS32 */
1256 /* Figure out the level of recursion. */
1258 struct variable *v = lookup_variable (MAKELEVEL_NAME, MAKELEVEL_LENGTH);
1259 if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
1260 makelevel = (unsigned int) atoi (v->value);
1261 else
1262 makelevel = 0;
1265 /* Except under -s, always do -w in sub-makes and under -C. */
1266 if (!silent_flag && (directories != 0 || makelevel > 0))
1267 print_directory_flag = 1;
1269 /* Let the user disable that with --no-print-directory. */
1270 if (inhibit_print_directory_flag)
1271 print_directory_flag = 0;
1273 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1274 if (no_builtin_variables_flag)
1275 no_builtin_rules_flag = 1;
1277 /* Construct the list of include directories to search. */
1279 construct_include_path (include_directories == 0 ? (char **) 0
1280 : include_directories->list);
1282 /* Figure out where we are now, after chdir'ing. */
1283 if (directories == 0)
1284 /* We didn't move, so we're still in the same place. */
1285 starting_directory = current_directory;
1286 else
1288 #ifdef WINDOWS32
1289 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1290 #else
1291 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1292 #endif
1294 #ifdef HAVE_GETCWD
1295 perror_with_name ("getcwd: ", "");
1296 #else
1297 error (NILF, "getwd: %s", current_directory);
1298 #endif
1299 starting_directory = 0;
1301 else
1302 starting_directory = current_directory;
1305 (void) define_variable ("CURDIR", 6, current_directory, o_default, 0);
1307 /* Read any stdin makefiles into temporary files. */
1309 if (makefiles != 0)
1311 register unsigned int i;
1312 for (i = 0; i < makefiles->idx; ++i)
1313 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1315 /* This makefile is standard input. Since we may re-exec
1316 and thus re-read the makefiles, we read standard input
1317 into a temporary file and read from that. */
1318 FILE *outfile;
1319 char *template, *tmpdir;
1321 if (stdin_nm)
1322 fatal (NILF, _("Makefile from standard input specified twice."));
1324 #ifdef VMS
1325 # define DEFAULT_TMPDIR "sys$scratch:"
1326 #else
1327 # ifdef P_tmpdir
1328 # define DEFAULT_TMPDIR P_tmpdir
1329 # else
1330 # define DEFAULT_TMPDIR "/tmp"
1331 # endif
1332 #endif
1333 #define DEFAULT_TMPFILE "GmXXXXXX"
1335 if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
1336 #if defined __MSDOS__ || defined(WINDOWS32)
1337 /* These are also used commonly on these platforms. */
1338 && ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
1339 && ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
1340 #endif
1342 tmpdir = DEFAULT_TMPDIR;
1344 template = (char *) alloca (strlen (tmpdir)
1345 + sizeof (DEFAULT_TMPFILE) + 1);
1346 strcpy (template, tmpdir);
1348 #ifdef HAVE_DOS_PATHS
1349 if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
1350 strcat (template, "/");
1351 #else
1352 # ifndef VMS
1353 if (template[strlen (template) - 1] != '/')
1354 strcat (template, "/");
1355 # endif /* !VMS */
1356 #endif /* !HAVE_DOS_PATHS */
1358 strcat (template, DEFAULT_TMPFILE);
1359 outfile = open_tmpfile (&stdin_nm, template);
1360 if (outfile == 0)
1361 pfatal_with_name (_("fopen (temporary file)"));
1362 while (!feof (stdin))
1364 char buf[2048];
1365 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1366 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1367 pfatal_with_name (_("fwrite (temporary file)"));
1369 (void) fclose (outfile);
1371 /* Replace the name that read_all_makefiles will
1372 see with the name of the temporary file. */
1373 makefiles->list[i] = xstrdup (stdin_nm);
1375 /* Make sure the temporary file will not be remade. */
1376 f = enter_file (stdin_nm);
1377 f->updated = 1;
1378 f->update_status = 0;
1379 f->command_state = cs_finished;
1380 /* Can't be intermediate, or it'll be removed too early for
1381 make re-exec. */
1382 f->intermediate = 0;
1383 f->dontcare = 0;
1387 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1388 /* Set up to handle children dying. This must be done before
1389 reading in the makefiles so that `shell' function calls will work.
1391 If we don't have a hanging wait we have to fall back to old, broken
1392 functionality here and rely on the signal handler and counting
1393 children.
1395 If we're using the jobs pipe we need a signal handler so that
1396 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1397 jobserver pipe in job.c if we're waiting for a token.
1399 If none of these are true, we don't need a signal handler at all. */
1401 extern RETSIGTYPE child_handler PARAMS ((int sig));
1402 # if defined SIGCHLD
1403 bsd_signal (SIGCHLD, child_handler);
1404 # endif
1405 # if defined SIGCLD && SIGCLD != SIGCHLD
1406 bsd_signal (SIGCLD, child_handler);
1407 # endif
1409 #endif
1411 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1412 #ifdef SIGUSR1
1413 bsd_signal (SIGUSR1, debug_signal_handler);
1414 #endif
1416 /* Define the initial list of suffixes for old-style rules. */
1418 set_default_suffixes ();
1420 /* Define the file rules for the built-in suffix rules. These will later
1421 be converted into pattern rules. We used to do this in
1422 install_default_implicit_rules, but since that happens after reading
1423 makefiles, it results in the built-in pattern rules taking precedence
1424 over makefile-specified suffix rules, which is wrong. */
1426 install_default_suffix_rules ();
1428 /* Define some internal and special variables. */
1430 define_automatic_variables ();
1432 /* Set up the MAKEFLAGS and MFLAGS variables
1433 so makefiles can look at them. */
1435 define_makeflags (0, 0);
1437 /* Define the default variables. */
1438 define_default_variables ();
1440 /* Read all the makefiles. */
1442 default_file = enter_file (".DEFAULT");
1444 read_makefiles
1445 = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list);
1447 #ifdef WINDOWS32
1448 /* look one last time after reading all Makefiles */
1449 if (no_default_sh_exe)
1450 no_default_sh_exe = !find_and_set_default_shell(NULL);
1452 if (no_default_sh_exe && job_slots != 1) {
1453 error (NILF, _("Do not specify -j or --jobs if sh.exe is not available."));
1454 error (NILF, _("Resetting make for single job mode."));
1455 job_slots = 1;
1457 #endif /* WINDOWS32 */
1459 #ifdef __MSDOS__
1460 /* We need to know what kind of shell we will be using. */
1462 extern int _is_unixy_shell (const char *_path);
1463 struct variable *shv = lookup_variable ("SHELL", 5);
1464 extern int unixy_shell;
1465 extern char *default_shell;
1467 if (shv && *shv->value)
1469 char *shell_path = recursively_expand(shv);
1471 if (shell_path && _is_unixy_shell (shell_path))
1472 unixy_shell = 1;
1473 else
1474 unixy_shell = 0;
1475 if (shell_path)
1476 default_shell = shell_path;
1479 #endif /* __MSDOS__ */
1481 /* Decode switches again, in case the variables were set by the makefile. */
1482 decode_env_switches ("MAKEFLAGS", 9);
1483 #if 0
1484 decode_env_switches ("MFLAGS", 6);
1485 #endif
1487 #ifdef __MSDOS__
1488 if (job_slots != 1)
1490 error (NILF,
1491 _("Parallel jobs (-j) are not supported on this platform."));
1492 error (NILF, _("Resetting to single job (-j1) mode."));
1493 job_slots = 1;
1495 #endif
1497 #ifdef MAKE_JOBSERVER
1498 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1500 if (jobserver_fds)
1502 char *cp;
1504 for (i=1; i < jobserver_fds->idx; ++i)
1505 if (!streq (jobserver_fds->list[0], jobserver_fds->list[i]))
1506 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1508 /* Now parse the fds string and make sure it has the proper format. */
1510 cp = jobserver_fds->list[0];
1512 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1513 fatal (NILF,
1514 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1516 /* The combination of a pipe + !job_slots means we're using the
1517 jobserver. If !job_slots and we don't have a pipe, we can start
1518 infinite jobs. If we see both a pipe and job_slots >0 that means the
1519 user set -j explicitly. This is broken; in this case obey the user
1520 (ignore the jobserver pipe for this make) but print a message. */
1522 if (job_slots > 0)
1523 error (NILF,
1524 _("warning: -jN forced in submake: disabling jobserver mode."));
1526 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1527 handler. If this fails with EBADF, the parent has closed the pipe
1528 on us because it didn't think we were a submake. If so, print a
1529 warning then default to -j1. */
1531 else if ((job_rfd = dup (job_fds[0])) < 0)
1533 if (errno != EBADF)
1534 pfatal_with_name (_("dup jobserver"));
1536 error (NILF,
1537 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1538 job_slots = 1;
1541 if (job_slots > 0)
1543 close (job_fds[0]);
1544 close (job_fds[1]);
1545 job_fds[0] = job_fds[1] = -1;
1546 free (jobserver_fds->list);
1547 free (jobserver_fds);
1548 jobserver_fds = 0;
1552 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1553 Set up the pipe and install the fds option for our children. */
1555 if (job_slots > 1)
1557 char c = '+';
1559 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1560 pfatal_with_name (_("creating jobs pipe"));
1562 /* Every make assumes that it always has one job it can run. For the
1563 submakes it's the token they were given by their parent. For the
1564 top make, we just subtract one from the number the user wants. We
1565 want job_slots to be 0 to indicate we're using the jobserver. */
1567 while (--job_slots)
1568 if (write (job_fds[1], &c, 1) != 1)
1569 pfatal_with_name (_("init jobserver pipe"));
1571 /* Fill in the jobserver_fds struct for our children. */
1573 jobserver_fds = (struct stringlist *)
1574 xmalloc (sizeof (struct stringlist));
1575 jobserver_fds->list = (char **) xmalloc (sizeof (char *));
1576 jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
1578 sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
1579 jobserver_fds->idx = 1;
1580 jobserver_fds->max = 1;
1582 #endif
1584 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1586 define_makeflags (1, 0);
1588 /* Make each `struct dep' point at the `struct file' for the file
1589 depended on. Also do magic for special targets. */
1591 snap_deps ();
1593 /* Convert old-style suffix rules to pattern rules. It is important to
1594 do this before installing the built-in pattern rules below, so that
1595 makefile-specified suffix rules take precedence over built-in pattern
1596 rules. */
1598 convert_to_pattern ();
1600 /* Install the default implicit pattern rules.
1601 This used to be done before reading the makefiles.
1602 But in that case, built-in pattern rules were in the chain
1603 before user-defined ones, so they matched first. */
1605 install_default_implicit_rules ();
1607 /* Compute implicit rule limits. */
1609 count_implicit_rule_limits ();
1611 /* Construct the listings of directories in VPATH lists. */
1613 build_vpath_lists ();
1615 /* Mark files given with -o flags as very old
1616 and as having been updated already, and files given with -W flags as
1617 brand new (time-stamp as far as possible into the future). */
1619 if (old_files != 0)
1620 for (p = old_files->list; *p != 0; ++p)
1622 f = enter_command_line_file (*p);
1623 f->last_mtime = f->mtime_before_update = OLD_MTIME;
1624 f->updated = 1;
1625 f->update_status = 0;
1626 f->command_state = cs_finished;
1629 if (new_files != 0)
1631 for (p = new_files->list; *p != 0; ++p)
1633 f = enter_command_line_file (*p);
1634 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1638 /* Initialize the remote job module. */
1639 remote_setup ();
1641 if (read_makefiles != 0)
1643 /* Update any makefiles if necessary. */
1645 FILE_TIMESTAMP *makefile_mtimes = 0;
1646 unsigned int mm_idx = 0;
1647 char **nargv = argv;
1648 int nargc = argc;
1649 int orig_db_level = db_level;
1651 if (! ISDB (DB_MAKEFILES))
1652 db_level = DB_NONE;
1654 DB (DB_BASIC, (_("Updating makefiles....\n")));
1656 /* Remove any makefiles we don't want to try to update.
1657 Also record the current modtimes so we can compare them later. */
1659 register struct dep *d, *last;
1660 last = 0;
1661 d = read_makefiles;
1662 while (d != 0)
1664 register struct file *f = d->file;
1665 if (f->double_colon)
1666 for (f = f->double_colon; f != NULL; f = f->prev)
1668 if (f->deps == 0 && f->cmds != 0)
1670 /* This makefile is a :: target with commands, but
1671 no dependencies. So, it will always be remade.
1672 This might well cause an infinite loop, so don't
1673 try to remake it. (This will only happen if
1674 your makefiles are written exceptionally
1675 stupidly; but if you work for Athena, that's how
1676 you write your makefiles.) */
1678 DB (DB_VERBOSE,
1679 (_("Makefile `%s' might loop; not remaking it.\n"),
1680 f->name));
1682 if (last == 0)
1683 read_makefiles = d->next;
1684 else
1685 last->next = d->next;
1687 /* Free the storage. */
1688 free ((char *) d);
1690 d = last == 0 ? read_makefiles : last->next;
1692 break;
1695 if (f == NULL || !f->double_colon)
1697 makefile_mtimes = (FILE_TIMESTAMP *)
1698 xrealloc ((char *) makefile_mtimes,
1699 (mm_idx + 1) * sizeof (FILE_TIMESTAMP));
1700 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1701 last = d;
1702 d = d->next;
1707 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1708 define_makeflags (1, 1);
1710 switch (update_goal_chain (read_makefiles, 1))
1712 case 1:
1713 /* The only way this can happen is if the user specified -q and asked
1714 * for one of the makefiles to be remade as a target on the command
1715 * line. Since we're not actually updating anything with -q we can
1716 * treat this as "did nothing".
1719 case -1:
1720 /* Did nothing. */
1721 break;
1723 case 2:
1724 /* Failed to update. Figure out if we care. */
1726 /* Nonzero if any makefile was successfully remade. */
1727 int any_remade = 0;
1728 /* Nonzero if any makefile we care about failed
1729 in updating or could not be found at all. */
1730 int any_failed = 0;
1731 register unsigned int i;
1732 struct dep *d;
1734 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1736 /* Reset the considered flag; we may need to look at the file
1737 again to print an error. */
1738 d->file->considered = 0;
1740 if (d->file->updated)
1742 /* This makefile was updated. */
1743 if (d->file->update_status == 0)
1745 /* It was successfully updated. */
1746 any_remade |= (file_mtime_no_search (d->file)
1747 != makefile_mtimes[i]);
1749 else if (! (d->changed & RM_DONTCARE))
1751 FILE_TIMESTAMP mtime;
1752 /* The update failed and this makefile was not
1753 from the MAKEFILES variable, so we care. */
1754 error (NILF, _("Failed to remake makefile `%s'."),
1755 d->file->name);
1756 mtime = file_mtime_no_search (d->file);
1757 any_remade |= (mtime != NONEXISTENT_MTIME
1758 && mtime != makefile_mtimes[i]);
1761 else
1762 /* This makefile was not found at all. */
1763 if (! (d->changed & RM_DONTCARE))
1765 /* This is a makefile we care about. See how much. */
1766 if (d->changed & RM_INCLUDED)
1767 /* An included makefile. We don't need
1768 to die, but we do want to complain. */
1769 error (NILF,
1770 _("Included makefile `%s' was not found."),
1771 dep_name (d));
1772 else
1774 /* A normal makefile. We must die later. */
1775 error (NILF, _("Makefile `%s' was not found"),
1776 dep_name (d));
1777 any_failed = 1;
1781 /* Reset this to empty so we get the right error message below. */
1782 read_makefiles = 0;
1784 if (any_remade)
1785 goto re_exec;
1786 if (any_failed)
1787 die (2);
1788 break;
1791 case 0:
1792 re_exec:
1793 /* Updated successfully. Re-exec ourselves. */
1795 remove_intermediates (0);
1797 if (print_data_base_flag)
1798 print_data_base ();
1800 log_working_directory (0);
1802 if (makefiles != 0)
1804 /* These names might have changed. */
1805 register unsigned int i, j = 0;
1806 for (i = 1; i < argc; ++i)
1807 if (strneq (argv[i], "-f", 2)) /* XXX */
1809 char *p = &argv[i][2];
1810 if (*p == '\0')
1811 argv[++i] = makefiles->list[j];
1812 else
1813 argv[i] = concat ("-f", makefiles->list[j], "");
1814 ++j;
1818 /* Add -o option for the stdin temporary file, if necessary. */
1819 if (stdin_nm)
1821 nargv = (char **) xmalloc ((nargc + 2) * sizeof (char *));
1822 bcopy ((char *) argv, (char *) nargv, argc * sizeof (char *));
1823 nargv[nargc++] = concat ("-o", stdin_nm, "");
1824 nargv[nargc] = 0;
1827 if (directories != 0 && directories->idx > 0)
1829 char bad;
1830 if (directory_before_chdir != 0)
1832 if (chdir (directory_before_chdir) < 0)
1834 perror_with_name ("chdir", "");
1835 bad = 1;
1837 else
1838 bad = 0;
1840 else
1841 bad = 1;
1842 if (bad)
1843 fatal (NILF, _("Couldn't change back to original directory."));
1846 #ifndef _AMIGA
1847 for (p = environ; *p != 0; ++p)
1848 if ((*p)[MAKELEVEL_LENGTH] == '='
1849 && strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH))
1851 /* The SGI compiler apparently can't understand
1852 the concept of storing the result of a function
1853 in something other than a local variable. */
1854 char *sgi_loses;
1855 sgi_loses = (char *) alloca (40);
1856 *p = sgi_loses;
1857 sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
1858 break;
1860 #else /* AMIGA */
1862 char buffer[256];
1863 int len;
1865 len = GetVar (MAKELEVEL_NAME, buffer, sizeof (buffer), GVF_GLOBAL_ONLY);
1867 if (len != -1)
1869 sprintf (buffer, "%u", makelevel);
1870 SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
1873 #endif
1875 if (ISDB (DB_BASIC))
1877 char **p;
1878 fputs (_("Re-executing:"), stdout);
1879 for (p = nargv; *p != 0; ++p)
1880 printf (" %s", *p);
1881 putchar ('\n');
1884 fflush (stdout);
1885 fflush (stderr);
1887 /* Close the dup'd jobserver pipe if we opened one. */
1888 if (job_rfd >= 0)
1889 close (job_rfd);
1891 #ifndef _AMIGA
1892 exec_command (nargv, environ);
1893 #else
1894 exec_command (nargv);
1895 exit (0);
1896 #endif
1897 /* NOTREACHED */
1899 default:
1900 #define BOGUS_UPDATE_STATUS 0
1901 assert (BOGUS_UPDATE_STATUS);
1902 break;
1905 db_level = orig_db_level;
1908 /* Set up `MAKEFLAGS' again for the normal targets. */
1909 define_makeflags (1, 0);
1911 /* If there is a temp file from reading a makefile from stdin, get rid of
1912 it now. */
1913 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
1914 perror_with_name (_("unlink (temporary file): "), stdin_nm);
1917 int status;
1919 /* If there were no command-line goals, use the default. */
1920 if (goals == 0)
1922 if (default_goal_file != 0)
1924 goals = (struct dep *) xmalloc (sizeof (struct dep));
1925 goals->next = 0;
1926 goals->name = 0;
1927 goals->ignore_mtime = 0;
1928 goals->file = default_goal_file;
1931 else
1932 lastgoal->next = 0;
1934 if (!goals)
1936 if (read_makefiles == 0)
1937 fatal (NILF, _("No targets specified and no makefile found"));
1939 fatal (NILF, _("No targets"));
1942 /* Update the goals. */
1944 DB (DB_BASIC, (_("Updating goal targets....\n")));
1946 switch (update_goal_chain (goals, 0))
1948 case -1:
1949 /* Nothing happened. */
1950 case 0:
1951 /* Updated successfully. */
1952 status = MAKE_SUCCESS;
1953 break;
1954 case 1:
1955 /* We are under -q and would run some commands. */
1956 status = MAKE_TROUBLE;
1957 break;
1958 case 2:
1959 /* Updating failed. POSIX.2 specifies exit status >1 for this;
1960 but in VMS, there is only success and failure. */
1961 status = MAKE_FAILURE;
1962 break;
1963 default:
1964 abort ();
1967 /* If we detected some clock skew, generate one last warning */
1968 if (clock_skew_detected)
1969 error (NILF,
1970 _("warning: Clock skew detected. Your build may be incomplete."));
1972 /* Exit. */
1973 die (status);
1976 return 0;
1979 /* Parsing of arguments, decoding of switches. */
1981 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
1982 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
1983 (sizeof (long_option_aliases) /
1984 sizeof (long_option_aliases[0]))];
1986 /* Fill in the string and vector for getopt. */
1987 static void
1988 init_switches ()
1990 register char *p;
1991 register int c;
1992 register unsigned int i;
1994 if (options[0] != '\0')
1995 /* Already done. */
1996 return;
1998 p = options;
2000 /* Return switch and non-switch args in order, regardless of
2001 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
2002 *p++ = '-';
2004 for (i = 0; switches[i].c != '\0'; ++i)
2006 long_options[i].name = (switches[i].long_name == 0 ? "" :
2007 switches[i].long_name);
2008 long_options[i].flag = 0;
2009 long_options[i].val = switches[i].c;
2010 if (short_option (switches[i].c))
2011 *p++ = switches[i].c;
2012 switch (switches[i].type)
2014 case flag:
2015 case flag_off:
2016 case ignore:
2017 long_options[i].has_arg = no_argument;
2018 break;
2020 case string:
2021 case positive_int:
2022 case floating:
2023 if (short_option (switches[i].c))
2024 *p++ = ':';
2025 if (switches[i].noarg_value != 0)
2027 if (short_option (switches[i].c))
2028 *p++ = ':';
2029 long_options[i].has_arg = optional_argument;
2031 else
2032 long_options[i].has_arg = required_argument;
2033 break;
2036 *p = '\0';
2037 for (c = 0; c < (sizeof (long_option_aliases) /
2038 sizeof (long_option_aliases[0]));
2039 ++c)
2040 long_options[i++] = long_option_aliases[c];
2041 long_options[i].name = 0;
2044 static void
2045 handle_non_switch_argument (arg, env)
2046 char *arg;
2047 int env;
2049 /* Non-option argument. It might be a variable definition. */
2050 struct variable *v;
2051 if (arg[0] == '-' && arg[1] == '\0')
2052 /* Ignore plain `-' for compatibility. */
2053 return;
2054 v = try_variable_definition (0, arg, o_command, 0);
2055 if (v != 0)
2057 /* It is indeed a variable definition. Record a pointer to
2058 the variable for later use in define_makeflags. */
2059 struct command_variable *cv
2060 = (struct command_variable *) xmalloc (sizeof (*cv));
2061 cv->variable = v;
2062 cv->next = command_variables;
2063 command_variables = cv;
2065 else if (! env)
2067 /* Not an option or variable definition; it must be a goal
2068 target! Enter it as a file and add it to the dep chain of
2069 goals. */
2070 struct file *f = enter_command_line_file (arg);
2071 f->cmd_target = 1;
2073 if (goals == 0)
2075 goals = (struct dep *) xmalloc (sizeof (struct dep));
2076 lastgoal = goals;
2078 else
2080 lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
2081 lastgoal = lastgoal->next;
2083 lastgoal->name = 0;
2084 lastgoal->file = f;
2085 lastgoal->ignore_mtime = 0;
2088 /* Add this target name to the MAKECMDGOALS variable. */
2089 struct variable *v;
2090 char *value;
2092 v = lookup_variable ("MAKECMDGOALS", 12);
2093 if (v == 0)
2094 value = f->name;
2095 else
2097 /* Paste the old and new values together */
2098 unsigned int oldlen, newlen;
2100 oldlen = strlen (v->value);
2101 newlen = strlen (f->name);
2102 value = (char *) alloca (oldlen + 1 + newlen + 1);
2103 bcopy (v->value, value, oldlen);
2104 value[oldlen] = ' ';
2105 bcopy (f->name, &value[oldlen + 1], newlen + 1);
2107 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
2112 /* Print a nice usage method. */
2114 static void
2115 print_usage (bad)
2116 int bad;
2118 extern char *make_host;
2119 const char *const *cpp;
2120 FILE *usageto;
2122 if (print_version_flag)
2123 print_version ();
2125 usageto = bad ? stderr : stdout;
2127 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
2129 for (cpp = usage; *cpp; ++cpp)
2130 fputs (_(*cpp), usageto);
2132 if (!remote_description || *remote_description == '\0')
2133 fprintf (usageto, _("\nThis program built for %s\n"), make_host);
2134 else
2135 fprintf (usageto, _("\nThis program built for %s (%s)\n"),
2136 make_host, remote_description);
2138 fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
2141 /* Decode switches from ARGC and ARGV.
2142 They came from the environment if ENV is nonzero. */
2144 static void
2145 decode_switches (argc, argv, env)
2146 int argc;
2147 char **argv;
2148 int env;
2150 int bad = 0;
2151 register const struct command_switch *cs;
2152 register struct stringlist *sl;
2153 register int c;
2155 /* getopt does most of the parsing for us.
2156 First, get its vectors set up. */
2158 init_switches ();
2160 /* Let getopt produce error messages for the command line,
2161 but not for options from the environment. */
2162 opterr = !env;
2163 /* Reset getopt's state. */
2164 optind = 0;
2166 while (optind < argc)
2168 /* Parse the next argument. */
2169 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2170 if (c == EOF)
2171 /* End of arguments, or "--" marker seen. */
2172 break;
2173 else if (c == 1)
2174 /* An argument not starting with a dash. */
2175 handle_non_switch_argument (optarg, env);
2176 else if (c == '?')
2177 /* Bad option. We will print a usage message and die later.
2178 But continue to parse the other options so the user can
2179 see all he did wrong. */
2180 bad = 1;
2181 else
2182 for (cs = switches; cs->c != '\0'; ++cs)
2183 if (cs->c == c)
2185 /* Whether or not we will actually do anything with
2186 this switch. We test this individually inside the
2187 switch below rather than just once outside it, so that
2188 options which are to be ignored still consume args. */
2189 int doit = !env || cs->env;
2191 switch (cs->type)
2193 default:
2194 abort ();
2196 case ignore:
2197 break;
2199 case flag:
2200 case flag_off:
2201 if (doit)
2202 *(int *) cs->value_ptr = cs->type == flag;
2203 break;
2205 case string:
2206 if (!doit)
2207 break;
2209 if (optarg == 0)
2210 optarg = cs->noarg_value;
2212 sl = *(struct stringlist **) cs->value_ptr;
2213 if (sl == 0)
2215 sl = (struct stringlist *)
2216 xmalloc (sizeof (struct stringlist));
2217 sl->max = 5;
2218 sl->idx = 0;
2219 sl->list = (char **) xmalloc (5 * sizeof (char *));
2220 *(struct stringlist **) cs->value_ptr = sl;
2222 else if (sl->idx == sl->max - 1)
2224 sl->max += 5;
2225 sl->list = (char **)
2226 xrealloc ((char *) sl->list,
2227 sl->max * sizeof (char *));
2229 sl->list[sl->idx++] = optarg;
2230 sl->list[sl->idx] = 0;
2231 break;
2233 case positive_int:
2234 /* See if we have an option argument; if we do require that
2235 it's all digits, not something like "10foo". */
2236 if (optarg == 0 && argc > optind)
2238 const char *cp;
2239 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
2241 if (cp[0] == '\0')
2242 optarg = argv[optind++];
2245 if (!doit)
2246 break;
2248 if (optarg != 0)
2250 int i = atoi (optarg);
2251 const char *cp;
2253 /* Yes, I realize we're repeating this in some cases. */
2254 for (cp = optarg; ISDIGIT (cp[0]); ++cp)
2257 if (i < 1 || cp[0] != '\0')
2259 error (NILF, _("the `-%c' option requires a positive integral argument"),
2260 cs->c);
2261 bad = 1;
2263 else
2264 *(unsigned int *) cs->value_ptr = i;
2266 else
2267 *(unsigned int *) cs->value_ptr
2268 = *(unsigned int *) cs->noarg_value;
2269 break;
2271 #ifndef NO_FLOAT
2272 case floating:
2273 if (optarg == 0 && optind < argc
2274 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2275 optarg = argv[optind++];
2277 if (doit)
2278 *(double *) cs->value_ptr
2279 = (optarg != 0 ? atof (optarg)
2280 : *(double *) cs->noarg_value);
2282 break;
2283 #endif
2286 /* We've found the switch. Stop looking. */
2287 break;
2291 /* There are no more options according to getting getopt, but there may
2292 be some arguments left. Since we have asked for non-option arguments
2293 to be returned in order, this only happens when there is a "--"
2294 argument to prevent later arguments from being options. */
2295 while (optind < argc)
2296 handle_non_switch_argument (argv[optind++], env);
2299 if (!env && (bad || print_usage_flag))
2301 print_usage (bad);
2302 die (bad ? 2 : 0);
2306 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2307 We do this by chopping the value into a vector of words, prepending a
2308 dash to the first word if it lacks one, and passing the vector to
2309 decode_switches. */
2311 static void
2312 decode_env_switches (envar, len)
2313 char *envar;
2314 unsigned int len;
2316 char *varref = (char *) alloca (2 + len + 2);
2317 char *value, *p;
2318 int argc;
2319 char **argv;
2321 /* Get the variable's value. */
2322 varref[0] = '$';
2323 varref[1] = '(';
2324 bcopy (envar, &varref[2], len);
2325 varref[2 + len] = ')';
2326 varref[2 + len + 1] = '\0';
2327 value = variable_expand (varref);
2329 /* Skip whitespace, and check for an empty value. */
2330 value = next_token (value);
2331 len = strlen (value);
2332 if (len == 0)
2333 return;
2335 /* Allocate a vector that is definitely big enough. */
2336 argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
2338 /* Allocate a buffer to copy the value into while we split it into words
2339 and unquote it. We must use permanent storage for this because
2340 decode_switches may store pointers into the passed argument words. */
2341 p = (char *) xmalloc (2 * len);
2343 /* getopt will look at the arguments starting at ARGV[1].
2344 Prepend a spacer word. */
2345 argv[0] = 0;
2346 argc = 1;
2347 argv[argc] = p;
2348 while (*value != '\0')
2350 if (*value == '\\' && value[1] != '\0')
2351 ++value; /* Skip the backslash. */
2352 else if (isblank ((unsigned char)*value))
2354 /* End of the word. */
2355 *p++ = '\0';
2356 argv[++argc] = p;
2358 ++value;
2359 while (isblank ((unsigned char)*value));
2360 continue;
2362 *p++ = *value++;
2364 *p = '\0';
2365 argv[++argc] = 0;
2367 if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
2368 /* The first word doesn't start with a dash and isn't a variable
2369 definition. Add a dash and pass it along to decode_switches. We
2370 need permanent storage for this in case decode_switches saves
2371 pointers into the value. */
2372 argv[1] = concat ("-", argv[1], "");
2374 /* Parse those words. */
2375 decode_switches (argc, argv, 1);
2378 /* Quote the string IN so that it will be interpreted as a single word with
2379 no magic by decode_env_switches; also double dollar signs to avoid
2380 variable expansion in make itself. Write the result into OUT, returning
2381 the address of the next character to be written.
2382 Allocating space for OUT twice the length of IN is always sufficient. */
2384 static char *
2385 quote_for_env (out, in)
2386 char *out, *in;
2388 while (*in != '\0')
2390 if (*in == '$')
2391 *out++ = '$';
2392 else if (isblank ((unsigned char)*in) || *in == '\\')
2393 *out++ = '\\';
2394 *out++ = *in++;
2397 return out;
2400 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2401 command switches. Include options with args if ALL is nonzero.
2402 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2404 static void
2405 define_makeflags (all, makefile)
2406 int all, makefile;
2408 static const char ref[] = "$(MAKEOVERRIDES)";
2409 static const char posixref[] = "$(-*-command-variables-*-)";
2410 register const struct command_switch *cs;
2411 char *flagstring;
2412 register char *p;
2413 unsigned int words;
2414 struct variable *v;
2416 /* We will construct a linked list of `struct flag's describing
2417 all the flags which need to go in MAKEFLAGS. Then, once we
2418 know how many there are and their lengths, we can put them all
2419 together in a string. */
2421 struct flag
2423 struct flag *next;
2424 const struct command_switch *cs;
2425 char *arg;
2427 struct flag *flags = 0;
2428 unsigned int flagslen = 0;
2429 #define ADD_FLAG(ARG, LEN) \
2430 do { \
2431 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2432 new->cs = cs; \
2433 new->arg = (ARG); \
2434 new->next = flags; \
2435 flags = new; \
2436 if (new->arg == 0) \
2437 ++flagslen; /* Just a single flag letter. */ \
2438 else \
2439 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2440 if (!short_option (cs->c)) \
2441 /* This switch has no single-letter version, so we use the long. */ \
2442 flagslen += 2 + strlen (cs->long_name); \
2443 } while (0)
2445 for (cs = switches; cs->c != '\0'; ++cs)
2446 if (cs->toenv && (!makefile || !cs->no_makefile))
2447 switch (cs->type)
2449 default:
2450 abort ();
2452 case ignore:
2453 break;
2455 case flag:
2456 case flag_off:
2457 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2458 && (cs->default_value == 0
2459 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2460 ADD_FLAG (0, 0);
2461 break;
2463 case positive_int:
2464 if (all)
2466 if ((cs->default_value != 0
2467 && (*(unsigned int *) cs->value_ptr
2468 == *(unsigned int *) cs->default_value)))
2469 break;
2470 else if (cs->noarg_value != 0
2471 && (*(unsigned int *) cs->value_ptr ==
2472 *(unsigned int *) cs->noarg_value))
2473 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2474 else if (cs->c == 'j')
2475 /* Special case for `-j'. */
2476 ADD_FLAG ("1", 1);
2477 else
2479 char *buf = (char *) alloca (30);
2480 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2481 ADD_FLAG (buf, strlen (buf));
2484 break;
2486 #ifndef NO_FLOAT
2487 case floating:
2488 if (all)
2490 if (cs->default_value != 0
2491 && (*(double *) cs->value_ptr
2492 == *(double *) cs->default_value))
2493 break;
2494 else if (cs->noarg_value != 0
2495 && (*(double *) cs->value_ptr
2496 == *(double *) cs->noarg_value))
2497 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2498 else
2500 char *buf = (char *) alloca (100);
2501 sprintf (buf, "%g", *(double *) cs->value_ptr);
2502 ADD_FLAG (buf, strlen (buf));
2505 break;
2506 #endif
2508 case string:
2509 if (all)
2511 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2512 if (sl != 0)
2514 /* Add the elements in reverse order, because
2515 all the flags get reversed below; and the order
2516 matters for some switches (like -I). */
2517 register unsigned int i = sl->idx;
2518 while (i-- > 0)
2519 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2522 break;
2525 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2527 #undef ADD_FLAG
2529 /* Construct the value in FLAGSTRING.
2530 We allocate enough space for a preceding dash and trailing null. */
2531 flagstring = (char *) alloca (1 + flagslen + 1);
2532 bzero (flagstring, 1 + flagslen + 1);
2533 p = flagstring;
2534 words = 1;
2535 *p++ = '-';
2536 while (flags != 0)
2538 /* Add the flag letter or name to the string. */
2539 if (short_option (flags->cs->c))
2540 *p++ = flags->cs->c;
2541 else
2543 if (*p != '-')
2545 *p++ = ' ';
2546 *p++ = '-';
2548 *p++ = '-';
2549 strcpy (p, flags->cs->long_name);
2550 p += strlen (p);
2552 if (flags->arg != 0)
2554 /* A flag that takes an optional argument which in this case is
2555 omitted is specified by ARG being "". We must distinguish
2556 because a following flag appended without an intervening " -"
2557 is considered the arg for the first. */
2558 if (flags->arg[0] != '\0')
2560 /* Add its argument too. */
2561 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2562 p = quote_for_env (p, flags->arg);
2564 ++words;
2565 /* Write a following space and dash, for the next flag. */
2566 *p++ = ' ';
2567 *p++ = '-';
2569 else if (!short_option (flags->cs->c))
2571 ++words;
2572 /* Long options must each go in their own word,
2573 so we write the following space and dash. */
2574 *p++ = ' ';
2575 *p++ = '-';
2577 flags = flags->next;
2580 /* Define MFLAGS before appending variable definitions. */
2582 if (p == &flagstring[1])
2583 /* No flags. */
2584 flagstring[0] = '\0';
2585 else if (p[-1] == '-')
2587 /* Kill the final space and dash. */
2588 p -= 2;
2589 *p = '\0';
2591 else
2592 /* Terminate the string. */
2593 *p = '\0';
2595 /* Since MFLAGS is not parsed for flags, there is no reason to
2596 override any makefile redefinition. */
2597 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2599 if (all && command_variables != 0)
2601 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2602 command-line variable definitions. */
2604 if (p == &flagstring[1])
2605 /* No flags written, so elide the leading dash already written. */
2606 p = flagstring;
2607 else
2609 /* Separate the variables from the switches with a "--" arg. */
2610 if (p[-1] != '-')
2612 /* We did not already write a trailing " -". */
2613 *p++ = ' ';
2614 *p++ = '-';
2616 /* There is a trailing " -"; fill it out to " -- ". */
2617 *p++ = '-';
2618 *p++ = ' ';
2621 /* Copy in the string. */
2622 if (posix_pedantic)
2624 bcopy (posixref, p, sizeof posixref - 1);
2625 p += sizeof posixref - 1;
2627 else
2629 bcopy (ref, p, sizeof ref - 1);
2630 p += sizeof ref - 1;
2633 else if (p == &flagstring[1])
2635 words = 0;
2636 --p;
2638 else if (p[-1] == '-')
2639 /* Kill the final space and dash. */
2640 p -= 2;
2641 /* Terminate the string. */
2642 *p = '\0';
2644 v = define_variable ("MAKEFLAGS", 9,
2645 /* If there are switches, omit the leading dash
2646 unless it is a single long option with two
2647 leading dashes. */
2648 &flagstring[(flagstring[0] == '-'
2649 && flagstring[1] != '-')
2650 ? 1 : 0],
2651 /* This used to use o_env, but that lost when a
2652 makefile defined MAKEFLAGS. Makefiles set
2653 MAKEFLAGS to add switches, but we still want
2654 to redefine its value with the full set of
2655 switches. Of course, an override or command
2656 definition will still take precedence. */
2657 o_file, 1);
2658 if (! all)
2659 /* The first time we are called, set MAKEFLAGS to always be exported.
2660 We should not do this again on the second call, because that is
2661 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2662 v->export = v_export;
2665 /* Print version information. */
2667 static void
2668 print_version ()
2670 static int printed_version = 0;
2672 char *precede = print_data_base_flag ? "# " : "";
2674 if (printed_version)
2675 /* Do it only once. */
2676 return;
2678 /* Print this untranslated. The coding standards recommend translating the
2679 (C) to the copyright symbol, but this string is going to change every
2680 year, and none of the rest of it should be translated (including the
2681 word "Copyright", so it hardly seems worth it. */
2683 printf ("%sGNU Make %s\n\
2684 %sCopyright (C) 2002 Free Software Foundation, Inc.\n",
2685 precede, version_string, precede);
2687 printf (_("%sThis is free software; see the source for copying conditions.\n\
2688 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2689 %sPARTICULAR PURPOSE.\n"),
2690 precede, precede, precede);
2692 printed_version = 1;
2694 /* Flush stdout so the user doesn't have to wait to see the
2695 version information while things are thought about. */
2696 fflush (stdout);
2699 /* Print a bunch of information about this and that. */
2701 static void
2702 print_data_base ()
2704 time_t when;
2706 when = time ((time_t *) 0);
2707 printf (_("\n# Make data base, printed on %s"), ctime (&when));
2709 print_variable_data_base ();
2710 print_dir_data_base ();
2711 print_rule_data_base ();
2712 print_file_data_base ();
2713 print_vpath_data_base ();
2715 when = time ((time_t *) 0);
2716 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
2719 /* Exit with STATUS, cleaning up as necessary. */
2721 void
2722 die (status)
2723 int status;
2725 static char dying = 0;
2727 if (!dying)
2729 int err;
2731 dying = 1;
2733 if (print_version_flag)
2734 print_version ();
2736 /* Wait for children to die. */
2737 for (err = (status != 0); job_slots_used > 0; err = 0)
2738 reap_children (1, err);
2740 /* Let the remote job module clean up its state. */
2741 remote_cleanup ();
2743 /* Remove the intermediate files. */
2744 remove_intermediates (0);
2746 if (print_data_base_flag)
2747 print_data_base ();
2749 /* Try to move back to the original directory. This is essential on
2750 MS-DOS (where there is really only one process), and on Unix it
2751 puts core files in the original directory instead of the -C
2752 directory. Must wait until after remove_intermediates(), or unlinks
2753 of relative pathnames fail. */
2754 if (directory_before_chdir != 0)
2755 chdir (directory_before_chdir);
2757 log_working_directory (0);
2760 exit (status);
2763 /* Write a message indicating that we've just entered or
2764 left (according to ENTERING) the current directory. */
2766 void
2767 log_working_directory (entering)
2768 int entering;
2770 static int entered = 0;
2772 /* Print nothing without the flag. Don't print the entering message
2773 again if we already have. Don't print the leaving message if we
2774 haven't printed the entering message. */
2775 if (! print_directory_flag || entering == entered)
2776 return;
2778 entered = entering;
2780 if (print_data_base_flag)
2781 fputs ("# ", stdout);
2783 /* Use entire sentences to give the translators a fighting chance. */
2785 if (makelevel == 0)
2786 if (starting_directory == 0)
2787 if (entering)
2788 printf (_("%s: Entering an unknown directory"), program);
2789 else
2790 printf (_("%s: Leaving an unknown directory"), program);
2791 else
2792 if (entering)
2793 printf (_("%s: Entering directory `%s'\n"),
2794 program, starting_directory);
2795 else
2796 printf (_("%s: Leaving directory `%s'\n"),
2797 program, starting_directory);
2798 else
2799 if (starting_directory == 0)
2800 if (entering)
2801 printf (_("%s[%u]: Entering an unknown directory"),
2802 program, makelevel);
2803 else
2804 printf (_("%s[%u]: Leaving an unknown directory"),
2805 program, makelevel);
2806 else
2807 if (entering)
2808 printf (_("%s[%u]: Entering directory `%s'\n"),
2809 program, makelevel, starting_directory);
2810 else
2811 printf (_("%s[%u]: Leaving directory `%s'\n"),
2812 program, makelevel, starting_directory);