Fix -W foo yielding infinite recursion in some cases of re-exec.
[make.git] / main.c
blobcd58a49353805dbcd0c73c80739b5eb386061720
1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1994, 1995, 1996, 1997, 1998, 1999,
3 2002, 2003, 2005 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 <io.h>
39 #include "pathstuff.h"
40 #endif
41 #ifdef __EMX__
42 # include <sys/types.h>
43 # include <sys/wait.h>
44 #endif
45 #ifdef HAVE_FCNTL_H
46 # include <fcntl.h>
47 #endif
49 #if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT)
50 # define SET_STACK_SIZE
51 #endif
53 #ifdef SET_STACK_SIZE
54 # include <sys/resource.h>
55 #endif
57 #ifdef _AMIGA
58 int __stack = 20000; /* Make sure we have 20K of stack space */
59 #endif
61 extern void init_dir PARAMS ((void));
62 extern void remote_setup PARAMS ((void));
63 extern void remote_cleanup PARAMS ((void));
64 extern RETSIGTYPE fatal_error_signal PARAMS ((int sig));
66 extern void print_variable_data_base PARAMS ((void));
67 extern void print_dir_data_base PARAMS ((void));
68 extern void print_rule_data_base PARAMS ((void));
69 extern void print_file_data_base PARAMS ((void));
70 extern void print_vpath_data_base PARAMS ((void));
72 #if defined HAVE_WAITPID || defined HAVE_WAIT3
73 # define HAVE_WAIT_NOHANG
74 #endif
76 #ifndef HAVE_UNISTD_H
77 extern int chdir ();
78 #endif
79 #ifndef STDC_HEADERS
80 # ifndef sun /* Sun has an incorrect decl in a header. */
81 extern void exit PARAMS ((int)) __attribute__ ((noreturn));
82 # endif
83 extern double atof ();
84 #endif
86 static void print_data_base PARAMS ((void));
87 static void print_version PARAMS ((void));
88 static void decode_switches PARAMS ((int argc, char **argv, int env));
89 static void decode_env_switches PARAMS ((char *envar, unsigned int len));
90 static void define_makeflags PARAMS ((int all, int makefile));
91 static char *quote_for_env PARAMS ((char *out, char *in));
92 static void initialize_global_hash_tables PARAMS ((void));
95 /* The structure that describes an accepted command switch. */
97 struct command_switch
99 int c; /* The switch character. */
101 enum /* Type of the value. */
103 flag, /* Turn int flag on. */
104 flag_off, /* Turn int flag off. */
105 string, /* One string per switch. */
106 positive_int, /* A positive integer. */
107 floating, /* A floating-point number (double). */
108 ignore /* Ignored. */
109 } type;
111 char *value_ptr; /* Pointer to the value-holding variable. */
113 unsigned int env:1; /* Can come from MAKEFLAGS. */
114 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
115 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
117 char *noarg_value; /* Pointer to value used if no argument is given. */
118 char *default_value;/* Pointer to default value. */
120 char *long_name; /* Long option name. */
123 /* True if C is a switch value that corresponds to a short option. */
125 #define short_option(c) ((c) <= CHAR_MAX)
127 /* The structure used to hold the list of strings given
128 in command switches of a type that takes string arguments. */
130 struct stringlist
132 char **list; /* Nil-terminated list of strings. */
133 unsigned int idx; /* Index into above. */
134 unsigned int max; /* Number of pointers allocated. */
138 /* The recognized command switches. */
140 /* Nonzero means do not print commands to be executed (-s). */
142 int silent_flag;
144 /* Nonzero means just touch the files
145 that would appear to need remaking (-t) */
147 int touch_flag;
149 /* Nonzero means just print what commands would need to be executed,
150 don't actually execute them (-n). */
152 int just_print_flag;
154 /* Print debugging info (--debug). */
156 static struct stringlist *db_flags;
157 static int debug_flag = 0;
159 int db_level = 0;
161 #ifdef WINDOWS32
162 /* Suspend make in main for a short time to allow debugger to attach */
164 int suspend_flag = 0;
165 #endif
167 /* Environment variables override makefile definitions. */
169 int env_overrides = 0;
171 /* Nonzero means ignore status codes returned by commands
172 executed to remake files. Just treat them all as successful (-i). */
174 int ignore_errors_flag = 0;
176 /* Nonzero means don't remake anything, just print the data base
177 that results from reading the makefile (-p). */
179 int print_data_base_flag = 0;
181 /* Nonzero means don't remake anything; just return a nonzero status
182 if the specified targets are not up to date (-q). */
184 int question_flag = 0;
186 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
188 int no_builtin_rules_flag = 0;
189 int no_builtin_variables_flag = 0;
191 /* Nonzero means keep going even if remaking some file fails (-k). */
193 int keep_going_flag;
194 int default_keep_going_flag = 0;
196 /* Nonzero means check symlink mtimes. */
198 int check_symlink_flag = 0;
200 /* Nonzero means print directory before starting and when done (-w). */
202 int print_directory_flag = 0;
204 /* Nonzero means ignore print_directory_flag and never print the directory.
205 This is necessary because print_directory_flag is set implicitly. */
207 int inhibit_print_directory_flag = 0;
209 /* Nonzero means print version information. */
211 int print_version_flag = 0;
213 /* List of makefiles given with -f switches. */
215 static struct stringlist *makefiles = 0;
217 /* Number of job slots (commands that can be run at once). */
219 unsigned int job_slots = 1;
220 unsigned int default_job_slots = 1;
221 static unsigned int master_job_slots = 0;
223 /* Value of job_slots that means no limit. */
225 static unsigned int inf_jobs = 0;
227 /* File descriptors for the jobs pipe. */
229 static struct stringlist *jobserver_fds = 0;
231 int job_fds[2] = { -1, -1 };
232 int job_rfd = -1;
234 /* Maximum load average at which multiple jobs will be run.
235 Negative values mean unlimited, while zero means limit to
236 zero load (which could be useful to start infinite jobs remotely
237 but one at a time locally). */
238 #ifndef NO_FLOAT
239 double max_load_average = -1.0;
240 double default_load_average = -1.0;
241 #else
242 int max_load_average = -1;
243 int default_load_average = -1;
244 #endif
246 /* List of directories given with -C switches. */
248 static struct stringlist *directories = 0;
250 /* List of include directories given with -I switches. */
252 static struct stringlist *include_directories = 0;
254 /* List of files given with -o switches. */
256 static struct stringlist *old_files = 0;
258 /* List of files given with -W switches. */
260 static struct stringlist *new_files = 0;
262 /* If nonzero, we should just print usage and exit. */
264 static int print_usage_flag = 0;
266 /* If nonzero, we should print a warning message
267 for each reference to an undefined variable. */
269 int warn_undefined_variables_flag;
271 /* If nonzero, always build all targets, regardless of whether
272 they appear out of date or not. */
274 static int always_make_set = 0;
275 int always_make_flag = 0;
277 /* If nonzero, we're in the "try to rebuild makefiles" phase. */
279 int rebuilding_makefiles = 0;
281 /* Remember the original value of the SHELL variable, from the environment. */
283 struct variable shell_var;
286 /* The usage output. We write it this way to make life easier for the
287 translators, especially those trying to translate to right-to-left
288 languages like Hebrew. */
290 static const char *const usage[] =
292 N_("Options:\n"),
293 N_("\
294 -b, -m Ignored for compatibility.\n"),
295 N_("\
296 -B, --always-make Unconditionally make all targets.\n"),
297 N_("\
298 -C DIRECTORY, --directory=DIRECTORY\n\
299 Change to DIRECTORY before doing anything.\n"),
300 N_("\
301 -d Print lots of debugging information.\n"),
302 N_("\
303 --debug[=FLAGS] Print various types of debugging information.\n"),
304 N_("\
305 -e, --environment-overrides\n\
306 Environment variables override makefiles.\n"),
307 N_("\
308 -f FILE, --file=FILE, --makefile=FILE\n\
309 Read FILE as a makefile.\n"),
310 N_("\
311 -h, --help Print this message and exit.\n"),
312 N_("\
313 -i, --ignore-errors Ignore errors from commands.\n"),
314 N_("\
315 -I DIRECTORY, --include-dir=DIRECTORY\n\
316 Search DIRECTORY for included makefiles.\n"),
317 N_("\
318 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
319 N_("\
320 -k, --keep-going Keep going when some targets can't be made.\n"),
321 N_("\
322 -l [N], --load-average[=N], --max-load[=N]\n\
323 Don't start multiple jobs unless load is below N.\n"),
324 N_("\
325 -L, --check-symlink-times Use the latest mtime between symlinks and target.\n"),
326 N_("\
327 -n, --just-print, --dry-run, --recon\n\
328 Don't actually run any commands; just print them.\n"),
329 N_("\
330 -o FILE, --old-file=FILE, --assume-old=FILE\n\
331 Consider FILE to be very old and don't remake it.\n"),
332 N_("\
333 -p, --print-data-base Print make's internal database.\n"),
334 N_("\
335 -q, --question Run no commands; exit status says if up to date.\n"),
336 N_("\
337 -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
338 N_("\
339 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
340 N_("\
341 -s, --silent, --quiet Don't echo commands.\n"),
342 N_("\
343 -S, --no-keep-going, --stop\n\
344 Turns off -k.\n"),
345 N_("\
346 -t, --touch Touch targets instead of remaking them.\n"),
347 N_("\
348 -v, --version Print the version number of make and exit.\n"),
349 N_("\
350 -w, --print-directory Print the current directory.\n"),
351 N_("\
352 --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
353 N_("\
354 -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
355 Consider FILE to be infinitely new.\n"),
356 N_("\
357 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
358 NULL
361 /* The table of command switches. */
363 static const struct command_switch switches[] =
365 { 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
366 { 'B', flag, (char *) &always_make_set, 1, 1, 0, 0, 0, "always-make" },
367 { 'C', string, (char *) &directories, 0, 0, 0, 0, 0, "directory" },
368 { 'd', flag, (char *) &debug_flag, 1, 1, 0, 0, 0, 0 },
369 { CHAR_MAX+1, string, (char *) &db_flags, 1, 1, 0, "basic", 0, "debug" },
370 #ifdef WINDOWS32
371 { 'D', flag, (char *) &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
372 #endif
373 { 'e', flag, (char *) &env_overrides, 1, 1, 0, 0, 0,
374 "environment-overrides", },
375 { 'f', string, (char *) &makefiles, 0, 0, 0, 0, 0, "file" },
376 { 'h', flag, (char *) &print_usage_flag, 0, 0, 0, 0, 0, "help" },
377 { 'i', flag, (char *) &ignore_errors_flag, 1, 1, 0, 0, 0,
378 "ignore-errors" },
379 { 'I', string, (char *) &include_directories, 1, 1, 0, 0, 0,
380 "include-dir" },
381 { 'j', positive_int, (char *) &job_slots, 1, 1, 0, (char *) &inf_jobs,
382 (char *) &default_job_slots, "jobs" },
383 { CHAR_MAX+2, string, (char *) &jobserver_fds, 1, 1, 0, 0, 0,
384 "jobserver-fds" },
385 { 'k', flag, (char *) &keep_going_flag, 1, 1, 0, 0,
386 (char *) &default_keep_going_flag, "keep-going" },
387 #ifndef NO_FLOAT
388 { 'l', floating, (char *) &max_load_average, 1, 1, 0,
389 (char *) &default_load_average, (char *) &default_load_average,
390 "load-average" },
391 #else
392 { 'l', positive_int, (char *) &max_load_average, 1, 1, 0,
393 (char *) &default_load_average, (char *) &default_load_average,
394 "load-average" },
395 #endif
396 { 'L', flag, (char *) &check_symlink_flag, 1, 1, 0, 0, 0,
397 "check-symlink-times" },
398 { 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
399 { 'n', flag, (char *) &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
400 { 'o', string, (char *) &old_files, 0, 0, 0, 0, 0, "old-file" },
401 { 'p', flag, (char *) &print_data_base_flag, 1, 1, 0, 0, 0,
402 "print-data-base" },
403 { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0, "question" },
404 { 'r', flag, (char *) &no_builtin_rules_flag, 1, 1, 0, 0, 0,
405 "no-builtin-rules" },
406 { 'R', flag, (char *) &no_builtin_variables_flag, 1, 1, 0, 0, 0,
407 "no-builtin-variables" },
408 { 's', flag, (char *) &silent_flag, 1, 1, 0, 0, 0, "silent" },
409 { 'S', flag_off, (char *) &keep_going_flag, 1, 1, 0, 0,
410 (char *) &default_keep_going_flag, "no-keep-going" },
411 { 't', flag, (char *) &touch_flag, 1, 1, 1, 0, 0, "touch" },
412 { 'v', flag, (char *) &print_version_flag, 1, 1, 0, 0, 0, "version" },
413 { 'w', flag, (char *) &print_directory_flag, 1, 1, 0, 0, 0,
414 "print-directory" },
415 { CHAR_MAX+3, flag, (char *) &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
416 "no-print-directory" },
417 { 'W', string, (char *) &new_files, 0, 0, 0, 0, 0, "what-if" },
418 { CHAR_MAX+4, flag, (char *) &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
419 "warn-undefined-variables" },
420 { 0 }
423 /* Secondary long names for options. */
425 static struct option long_option_aliases[] =
427 { "quiet", no_argument, 0, 's' },
428 { "stop", no_argument, 0, 'S' },
429 { "new-file", required_argument, 0, 'W' },
430 { "assume-new", required_argument, 0, 'W' },
431 { "assume-old", required_argument, 0, 'o' },
432 { "max-load", optional_argument, 0, 'l' },
433 { "dry-run", no_argument, 0, 'n' },
434 { "recon", no_argument, 0, 'n' },
435 { "makefile", required_argument, 0, 'f' },
438 /* List of goal targets. */
440 static struct dep *goals, *lastgoal;
442 /* List of variables which were defined on the command line
443 (or, equivalently, in MAKEFLAGS). */
445 struct command_variable
447 struct command_variable *next;
448 struct variable *variable;
450 static struct command_variable *command_variables;
452 /* The name we were invoked with. */
454 char *program;
456 /* Our current directory before processing any -C options. */
458 char *directory_before_chdir;
460 /* Our current directory after processing all -C options. */
462 char *starting_directory;
464 /* Value of the MAKELEVEL variable at startup (or 0). */
466 unsigned int makelevel;
468 /* First file defined in the makefile whose name does not
469 start with `.'. This is the default to remake if the
470 command line does not specify. */
472 struct file *default_goal_file;
474 /* Pointer to the value of the .DEFAULT_GOAL special
475 variable. */
476 char ** default_goal_name;
478 /* Pointer to structure for the file .DEFAULT
479 whose commands are used for any file that has none of its own.
480 This is zero if the makefiles do not define .DEFAULT. */
482 struct file *default_file;
484 /* Nonzero if we have seen the magic `.POSIX' target.
485 This turns on pedantic compliance with POSIX.2. */
487 int posix_pedantic;
489 /* Nonzero if we have seen the `.NOTPARALLEL' target.
490 This turns off parallel builds for this invocation of make. */
492 int not_parallel;
494 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
495 print one warning about it during the run, and (b) we can print a final
496 warning at the end of the run. */
498 int clock_skew_detected;
500 /* Mask of signals that are being caught with fatal_error_signal. */
502 #ifdef POSIX
503 sigset_t fatal_signal_set;
504 #else
505 # ifdef HAVE_SIGSETMASK
506 int fatal_signal_mask;
507 # endif
508 #endif
510 #if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
511 # if !defined HAVE_SIGACTION
512 # define bsd_signal signal
513 # else
514 typedef RETSIGTYPE (*bsd_signal_ret_t) ();
516 static bsd_signal_ret_t
517 bsd_signal (int sig, bsd_signal_ret_t func)
519 struct sigaction act, oact;
520 act.sa_handler = func;
521 act.sa_flags = SA_RESTART;
522 sigemptyset (&act.sa_mask);
523 sigaddset (&act.sa_mask, sig);
524 if (sigaction (sig, &act, &oact) != 0)
525 return SIG_ERR;
526 return oact.sa_handler;
528 # endif
529 #endif
531 static void
532 initialize_global_hash_tables (void)
534 init_hash_global_variable_set ();
535 init_hash_files ();
536 hash_init_directories ();
537 hash_init_function_table ();
540 static struct file *
541 enter_command_line_file (char *name)
543 if (name[0] == '\0')
544 fatal (NILF, _("empty string invalid as file name"));
546 if (name[0] == '~')
548 char *expanded = tilde_expand (name);
549 if (expanded != 0)
550 name = expanded; /* Memory leak; I don't care. */
553 /* This is also done in parse_file_seq, so this is redundant
554 for names read from makefiles. It is here for names passed
555 on the command line. */
556 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
558 name += 2;
559 while (*name == '/')
560 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
561 ++name;
564 if (*name == '\0')
566 /* It was all slashes! Move back to the dot and truncate
567 it after the first slash, so it becomes just "./". */
569 --name;
570 while (name[0] != '.');
571 name[2] = '\0';
574 return enter_file (xstrdup (name));
577 /* Toggle -d on receipt of SIGUSR1. */
579 #ifdef SIGUSR1
580 static RETSIGTYPE
581 debug_signal_handler (int sig UNUSED)
583 db_level = db_level ? DB_NONE : DB_BASIC;
585 #endif
587 static void
588 decode_debug_flags (void)
590 char **pp;
592 if (debug_flag)
593 db_level = DB_ALL;
595 if (!db_flags)
596 return;
598 for (pp=db_flags->list; *pp; ++pp)
600 const char *p = *pp;
602 while (1)
604 switch (tolower (p[0]))
606 case 'a':
607 db_level |= DB_ALL;
608 break;
609 case 'b':
610 db_level |= DB_BASIC;
611 break;
612 case 'i':
613 db_level |= DB_BASIC | DB_IMPLICIT;
614 break;
615 case 'j':
616 db_level |= DB_JOBS;
617 break;
618 case 'm':
619 db_level |= DB_BASIC | DB_MAKEFILES;
620 break;
621 case 'v':
622 db_level |= DB_BASIC | DB_VERBOSE;
623 break;
624 default:
625 fatal (NILF, _("unknown debug level specification `%s'"), p);
628 while (*(++p) != '\0')
629 if (*p == ',' || *p == ' ')
630 break;
632 if (*p == '\0')
633 break;
635 ++p;
640 #ifdef WINDOWS32
642 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
643 * exception and print it to stderr instead.
645 * If ! DB_VERBOSE, just print a simple message and exit.
646 * If DB_VERBOSE, print a more verbose message.
647 * If compiled for DEBUG, let exception pass through to GUI so that
648 * debuggers can attach.
650 LONG WINAPI
651 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
653 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
654 LPSTR cmdline = GetCommandLine();
655 LPSTR prg = strtok(cmdline, " ");
656 CHAR errmsg[1024];
657 #ifdef USE_EVENT_LOG
658 HANDLE hEventSource;
659 LPTSTR lpszStrings[1];
660 #endif
662 if (! ISDB (DB_VERBOSE))
664 sprintf(errmsg,
665 _("%s: Interrupt/Exception caught (code = 0x%x, addr = 0x%x)\n"),
666 prg, exrec->ExceptionCode, exrec->ExceptionAddress);
667 fprintf(stderr, errmsg);
668 exit(255);
671 sprintf(errmsg,
672 _("\nUnhandled exception filter called from program %s\nExceptionCode = %x\nExceptionFlags = %x\nExceptionAddress = %x\n"),
673 prg, exrec->ExceptionCode, exrec->ExceptionFlags,
674 exrec->ExceptionAddress);
676 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
677 && exrec->NumberParameters >= 2)
678 sprintf(&errmsg[strlen(errmsg)],
679 (exrec->ExceptionInformation[0]
680 ? _("Access violation: write operation at address %x\n")
681 : _("Access violation: read operation at address %x\n")),
682 exrec->ExceptionInformation[1]);
684 /* turn this on if we want to put stuff in the event log too */
685 #ifdef USE_EVENT_LOG
686 hEventSource = RegisterEventSource(NULL, "GNU Make");
687 lpszStrings[0] = errmsg;
689 if (hEventSource != NULL)
691 ReportEvent(hEventSource, /* handle of event source */
692 EVENTLOG_ERROR_TYPE, /* event type */
693 0, /* event category */
694 0, /* event ID */
695 NULL, /* current user's SID */
696 1, /* strings in lpszStrings */
697 0, /* no bytes of raw data */
698 lpszStrings, /* array of error strings */
699 NULL); /* no raw data */
701 (VOID) DeregisterEventSource(hEventSource);
703 #endif
705 /* Write the error to stderr too */
706 fprintf(stderr, errmsg);
708 #ifdef DEBUG
709 return EXCEPTION_CONTINUE_SEARCH;
710 #else
711 exit(255);
712 return (255); /* not reached */
713 #endif
717 * On WIN32 systems we don't have the luxury of a /bin directory that
718 * is mapped globally to every drive mounted to the system. Since make could
719 * be invoked from any drive, and we don't want to propogate /bin/sh
720 * to every single drive. Allow ourselves a chance to search for
721 * a value for default shell here (if the default path does not exist).
725 find_and_set_default_shell (char *token)
727 int sh_found = 0;
728 char *search_token;
729 char *tokend;
730 PATH_VAR(sh_path);
731 extern char *default_shell;
733 if (!token)
734 search_token = default_shell;
735 else
736 search_token = token;
739 /* If the user explicitly requests the DOS cmd shell, obey that request.
740 However, make sure that's what they really want by requiring the value
741 of SHELL either equal, or have a final path element of, "cmd" or
742 "cmd.exe" case-insensitive. */
743 tokend = search_token + strlen (search_token) - 3;
744 if (((tokend == search_token
745 || (tokend > search_token
746 && (tokend[-1] == '/' || tokend[-1] == '\\')))
747 && !strcmpi (tokend, "cmd"))
748 || ((tokend - 4 == search_token
749 || (tokend - 4 > search_token
750 && (tokend[-5] == '/' || tokend[-5] == '\\')))
751 && !strcmpi (tokend - 4, "cmd.exe"))) {
752 batch_mode_shell = 1;
753 unixy_shell = 0;
754 sh_found = 0;
755 } else if (!no_default_sh_exe &&
756 (token == NULL || !strcmp (search_token, default_shell))) {
757 /* no new information, path already set or known */
758 sh_found = 1;
759 } else if (file_exists_p(search_token)) {
760 /* search token path was found */
761 sprintf(sh_path, "%s", search_token);
762 default_shell = xstrdup(w32ify(sh_path,0));
763 DB (DB_VERBOSE,
764 (_("find_and_set_shell setting default_shell = %s\n"), default_shell));
765 sh_found = 1;
766 } else {
767 char *p;
768 struct variable *v = lookup_variable (STRING_SIZE_TUPLE ("PATH"));
770 /* Search Path for shell */
771 if (v && v->value) {
772 char *ep;
774 p = v->value;
775 ep = strchr(p, PATH_SEPARATOR_CHAR);
777 while (ep && *ep) {
778 *ep = '\0';
780 if (dir_file_exists_p(p, search_token)) {
781 sprintf(sh_path, "%s/%s", p, search_token);
782 default_shell = xstrdup(w32ify(sh_path,0));
783 sh_found = 1;
784 *ep = PATH_SEPARATOR_CHAR;
786 /* terminate loop */
787 p += strlen(p);
788 } else {
789 *ep = PATH_SEPARATOR_CHAR;
790 p = ++ep;
793 ep = strchr(p, PATH_SEPARATOR_CHAR);
796 /* be sure to check last element of Path */
797 if (p && *p && dir_file_exists_p(p, search_token)) {
798 sprintf(sh_path, "%s/%s", p, search_token);
799 default_shell = xstrdup(w32ify(sh_path,0));
800 sh_found = 1;
803 if (sh_found)
804 DB (DB_VERBOSE,
805 (_("find_and_set_shell path search set default_shell = %s\n"),
806 default_shell));
810 /* naive test */
811 if (!unixy_shell && sh_found &&
812 (strstr(default_shell, "sh") || strstr(default_shell, "SH"))) {
813 unixy_shell = 1;
814 batch_mode_shell = 0;
817 #ifdef BATCH_MODE_ONLY_SHELL
818 batch_mode_shell = 1;
819 #endif
821 return (sh_found);
823 #endif /* WINDOWS32 */
825 #ifdef __MSDOS__
827 static void
828 msdos_return_to_initial_directory (void)
830 if (directory_before_chdir)
831 chdir (directory_before_chdir);
833 #endif
835 extern char *mktemp PARAMS ((char *template));
836 extern int mkstemp PARAMS ((char *template));
838 FILE *
839 open_tmpfile(char **name, const char *template)
841 int fd;
843 #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
844 # define TEMPLATE_LEN strlen (template)
845 #else
846 # define TEMPLATE_LEN L_tmpnam
847 #endif
848 *name = xmalloc (TEMPLATE_LEN + 1);
849 strcpy (*name, template);
851 #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
852 /* It's safest to use mkstemp(), if we can. */
853 fd = mkstemp (*name);
854 if (fd == -1)
855 return 0;
856 return fdopen (fd, "w");
857 #else
858 # ifdef HAVE_MKTEMP
859 (void) mktemp (*name);
860 # else
861 (void) tmpnam (*name);
862 # endif
864 # ifdef HAVE_FDOPEN
865 /* Can't use mkstemp(), but guard against a race condition. */
866 fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
867 if (fd == -1)
868 return 0;
869 return fdopen (fd, "w");
870 # else
871 /* Not secure, but what can we do? */
872 return fopen (*name, "w");
873 # endif
874 #endif
878 #ifdef _AMIGA
880 main (int argc, char **argv)
881 #else
883 main (int argc, char **argv, char **envp)
884 #endif
886 static char *stdin_nm = 0;
887 struct file *f;
888 int i;
889 int makefile_status = MAKE_SUCCESS;
890 char **p;
891 struct dep *read_makefiles;
892 PATH_VAR (current_directory);
893 unsigned int restarts = 0;
894 #ifdef WINDOWS32
895 char *unix_path = NULL;
896 char *windows32_path = NULL;
898 SetUnhandledExceptionFilter(handle_runtime_exceptions);
900 /* start off assuming we have no shell */
901 unixy_shell = 0;
902 no_default_sh_exe = 1;
903 #endif
905 #ifdef SET_STACK_SIZE
906 /* Get rid of any avoidable limit on stack size. */
908 struct rlimit rlim;
910 /* Set the stack limit huge so that alloca does not fail. */
911 if (getrlimit (RLIMIT_STACK, &rlim) == 0)
913 rlim.rlim_cur = rlim.rlim_max;
914 setrlimit (RLIMIT_STACK, &rlim);
917 #endif
919 #ifdef HAVE_ATEXIT
920 atexit (close_stdout);
921 #endif
923 /* Needed for OS/2 */
924 initialize_main(&argc, &argv);
926 default_goal_file = 0;
927 reading_file = 0;
929 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
930 /* Request the most powerful version of `system', to
931 make up for the dumb default shell. */
932 __system_flags = (__system_redirect
933 | __system_use_shell
934 | __system_allow_multiple_cmds
935 | __system_allow_long_cmds
936 | __system_handle_null_commands
937 | __system_emulate_chdir);
939 #endif
941 /* Set up gettext/internationalization support. */
942 setlocale (LC_ALL, "");
943 bindtextdomain (PACKAGE, LOCALEDIR);
944 textdomain (PACKAGE);
946 #ifdef POSIX
947 sigemptyset (&fatal_signal_set);
948 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
949 #else
950 #ifdef HAVE_SIGSETMASK
951 fatal_signal_mask = 0;
952 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
953 #else
954 #define ADD_SIG(sig)
955 #endif
956 #endif
958 #define FATAL_SIG(sig) \
959 if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
960 bsd_signal (sig, SIG_IGN); \
961 else \
962 ADD_SIG (sig);
964 #ifdef SIGHUP
965 FATAL_SIG (SIGHUP);
966 #endif
967 #ifdef SIGQUIT
968 FATAL_SIG (SIGQUIT);
969 #endif
970 FATAL_SIG (SIGINT);
971 FATAL_SIG (SIGTERM);
973 #ifdef __MSDOS__
974 /* Windows 9X delivers FP exceptions in child programs to their
975 parent! We don't want Make to die when a child divides by zero,
976 so we work around that lossage by catching SIGFPE. */
977 FATAL_SIG (SIGFPE);
978 #endif
980 #ifdef SIGDANGER
981 FATAL_SIG (SIGDANGER);
982 #endif
983 #ifdef SIGXCPU
984 FATAL_SIG (SIGXCPU);
985 #endif
986 #ifdef SIGXFSZ
987 FATAL_SIG (SIGXFSZ);
988 #endif
990 #undef FATAL_SIG
992 /* Do not ignore the child-death signal. This must be done before
993 any children could possibly be created; otherwise, the wait
994 functions won't work on systems with the SVR4 ECHILD brain
995 damage, if our invoker is ignoring this signal. */
997 #ifdef HAVE_WAIT_NOHANG
998 # if defined SIGCHLD
999 (void) bsd_signal (SIGCHLD, SIG_DFL);
1000 # endif
1001 # if defined SIGCLD && SIGCLD != SIGCHLD
1002 (void) bsd_signal (SIGCLD, SIG_DFL);
1003 # endif
1004 #endif
1006 /* Make sure stdout is line-buffered. */
1008 #ifdef HAVE_SETVBUF
1009 # ifdef SETVBUF_REVERSED
1010 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
1011 # else /* setvbuf not reversed. */
1012 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
1013 setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
1014 # endif /* setvbuf reversed. */
1015 #elif HAVE_SETLINEBUF
1016 setlinebuf (stdout);
1017 #endif /* setlinebuf missing. */
1019 /* Figure out where this program lives. */
1021 if (argv[0] == 0)
1022 argv[0] = "";
1023 if (argv[0][0] == '\0')
1024 program = "make";
1025 else
1027 #ifdef VMS
1028 program = strrchr (argv[0], ']');
1029 #else
1030 program = strrchr (argv[0], '/');
1031 #endif
1032 #if defined(__MSDOS__) || defined(__EMX__)
1033 if (program == 0)
1034 program = strrchr (argv[0], '\\');
1035 else
1037 /* Some weird environments might pass us argv[0] with
1038 both kinds of slashes; we must find the rightmost. */
1039 char *p = strrchr (argv[0], '\\');
1040 if (p && p > program)
1041 program = p;
1043 if (program == 0 && argv[0][1] == ':')
1044 program = argv[0] + 1;
1045 #endif
1046 #ifdef WINDOWS32
1047 if (program == 0)
1049 /* Extract program from full path */
1050 int argv0_len;
1051 char *p = strrchr (argv[0], '\\');
1052 if (!p)
1053 p = argv[0];
1054 argv0_len = strlen(p);
1055 if (argv0_len > 4
1056 && streq (&p[argv0_len - 4], ".exe"))
1058 /* Remove .exe extension */
1059 p[argv0_len - 4] = '\0';
1060 /* Increment past the initial '\' */
1061 program = p + 1;
1064 #endif
1065 if (program == 0)
1066 program = argv[0];
1067 else
1068 ++program;
1071 /* Set up to access user data (files). */
1072 user_access ();
1074 initialize_global_hash_tables ();
1076 /* Figure out where we are. */
1078 #ifdef WINDOWS32
1079 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1080 #else
1081 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1082 #endif
1084 #ifdef HAVE_GETCWD
1085 perror_with_name ("getcwd", "");
1086 #else
1087 error (NILF, "getwd: %s", current_directory);
1088 #endif
1089 current_directory[0] = '\0';
1090 directory_before_chdir = 0;
1092 else
1093 directory_before_chdir = xstrdup (current_directory);
1094 #ifdef __MSDOS__
1095 /* Make sure we will return to the initial directory, come what may. */
1096 atexit (msdos_return_to_initial_directory);
1097 #endif
1099 /* Initialize the special variables. */
1100 define_variable (".VARIABLES", 10, "", o_default, 0)->special = 1;
1101 /* define_variable (".TARGETS", 8, "", o_default, 0)->special = 1; */
1103 /* Set up .FEATURES */
1104 define_variable (".FEATURES", 9,
1105 "target-specific order-only second-expansion",
1106 o_default, 0);
1107 #ifdef MAKE_JOBSERVER
1108 do_variable_definition (NILF, ".FEATURES", "jobserver",
1109 o_default, f_append, 0);
1110 #endif
1111 #ifdef MAKE_SYMLINKS
1112 do_variable_definition (NILF, ".FEATURES", "check-symlink",
1113 o_default, f_append, 0);
1114 #endif
1116 /* Read in variables from the environment. It is important that this be
1117 done before $(MAKE) is figured out so its definitions will not be
1118 from the environment. */
1120 #ifndef _AMIGA
1121 for (i = 0; envp[i] != 0; ++i)
1123 int do_not_define = 0;
1124 char *ep = envp[i];
1126 while (*ep != '\0' && *ep != '=')
1127 ++ep;
1128 #ifdef WINDOWS32
1129 if (!unix_path && strneq(envp[i], "PATH=", 5))
1130 unix_path = ep+1;
1131 else if (!strnicmp(envp[i], "Path=", 5)) {
1132 do_not_define = 1; /* it gets defined after loop exits */
1133 if (!windows32_path)
1134 windows32_path = ep+1;
1136 #endif
1137 /* The result of pointer arithmetic is cast to unsigned int for
1138 machines where ptrdiff_t is a different size that doesn't widen
1139 the same. */
1140 if (!do_not_define)
1142 struct variable *v;
1144 v = define_variable (envp[i], (unsigned int) (ep - envp[i]),
1145 ep + 1, o_env, 1);
1146 /* Force exportation of every variable culled from the environment.
1147 We used to rely on target_environment's v_default code to do this.
1148 But that does not work for the case where an environment variable
1149 is redefined in a makefile with `override'; it should then still
1150 be exported, because it was originally in the environment. */
1151 v->export = v_export;
1153 /* Another wrinkle is that POSIX says the value of SHELL set in the
1154 makefile won't change the value of SHELL given to subprocesses */
1155 if (streq (v->name, "SHELL"))
1157 #ifndef __MSDOS__
1158 v->export = v_noexport;
1159 #endif
1160 shell_var.name = "SHELL";
1161 shell_var.value = xstrdup (ep + 1);
1164 /* If MAKE_RESTARTS is set, remember it but don't export it. */
1165 if (streq (v->name, "MAKE_RESTARTS"))
1167 v->export = v_noexport;
1168 restarts = (unsigned int) atoi (ep + 1);
1172 #ifdef WINDOWS32
1173 /* If we didn't find a correctly spelled PATH we define PATH as
1174 * either the first mispelled value or an empty string
1176 if (!unix_path)
1177 define_variable("PATH", 4,
1178 windows32_path ? windows32_path : "",
1179 o_env, 1)->export = v_export;
1180 #endif
1181 #else /* For Amiga, read the ENV: device, ignoring all dirs */
1183 BPTR env, file, old;
1184 char buffer[1024];
1185 int len;
1186 __aligned struct FileInfoBlock fib;
1188 env = Lock ("ENV:", ACCESS_READ);
1189 if (env)
1191 old = CurrentDir (DupLock(env));
1192 Examine (env, &fib);
1194 while (ExNext (env, &fib))
1196 if (fib.fib_DirEntryType < 0) /* File */
1198 /* Define an empty variable. It will be filled in
1199 variable_lookup(). Makes startup quite a bit
1200 faster. */
1201 define_variable (fib.fib_FileName,
1202 strlen (fib.fib_FileName),
1203 "", o_env, 1)->export = v_export;
1206 UnLock (env);
1207 UnLock(CurrentDir(old));
1210 #endif
1212 /* Decode the switches. */
1214 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1215 #if 0
1216 /* People write things like:
1217 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
1218 and we set the -p, -i and -e switches. Doesn't seem quite right. */
1219 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1220 #endif
1221 decode_switches (argc, argv, 0);
1222 #ifdef WINDOWS32
1223 if (suspend_flag) {
1224 fprintf(stderr, "%s (pid = %d)\n", argv[0], GetCurrentProcessId());
1225 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
1226 Sleep(30 * 1000);
1227 fprintf(stderr, _("done sleep(30). Continuing.\n"));
1229 #endif
1231 decode_debug_flags ();
1233 /* Set always_make_flag if -B was given and we've not restarted already. */
1234 always_make_flag = always_make_set && (restarts == 0);
1236 /* Print version information. */
1237 if (print_version_flag || print_data_base_flag || db_level)
1239 print_version ();
1241 /* `make --version' is supposed to just print the version and exit. */
1242 if (print_version_flag)
1243 die (0);
1246 #ifndef VMS
1247 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
1248 (If it is a relative pathname with a slash, prepend our directory name
1249 so the result will run the same program regardless of the current dir.
1250 If it is a name with no slash, we can only hope that PATH did not
1251 find it in the current directory.) */
1252 #ifdef WINDOWS32
1254 * Convert from backslashes to forward slashes for
1255 * programs like sh which don't like them. Shouldn't
1256 * matter if the path is one way or the other for
1257 * CreateProcess().
1259 if (strpbrk(argv[0], "/:\\") ||
1260 strstr(argv[0], "..") ||
1261 strneq(argv[0], "//", 2))
1262 argv[0] = xstrdup(w32ify(argv[0],1));
1263 #else /* WINDOWS32 */
1264 #if defined (__MSDOS__) || defined (__EMX__)
1265 if (strchr (argv[0], '\\'))
1267 char *p;
1269 argv[0] = xstrdup (argv[0]);
1270 for (p = argv[0]; *p; p++)
1271 if (*p == '\\')
1272 *p = '/';
1274 /* If argv[0] is not in absolute form, prepend the current
1275 directory. This can happen when Make is invoked by another DJGPP
1276 program that uses a non-absolute name. */
1277 if (current_directory[0] != '\0'
1278 && argv[0] != 0
1279 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':'))
1280 #ifdef __EMX__
1281 /* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
1282 && (strchr (argv[0], '/') != 0 || strchr (argv[0], '\\') != 0)
1283 # endif
1285 argv[0] = concat (current_directory, "/", argv[0]);
1286 #else /* !__MSDOS__ */
1287 if (current_directory[0] != '\0'
1288 && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0)
1289 argv[0] = concat (current_directory, "/", argv[0]);
1290 #endif /* !__MSDOS__ */
1291 #endif /* WINDOWS32 */
1292 #endif
1294 /* The extra indirection through $(MAKE_COMMAND) is done
1295 for hysterical raisins. */
1296 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
1297 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
1299 if (command_variables != 0)
1301 struct command_variable *cv;
1302 struct variable *v;
1303 unsigned int len = 0;
1304 char *value, *p;
1306 /* Figure out how much space will be taken up by the command-line
1307 variable definitions. */
1308 for (cv = command_variables; cv != 0; cv = cv->next)
1310 v = cv->variable;
1311 len += 2 * strlen (v->name);
1312 if (! v->recursive)
1313 ++len;
1314 ++len;
1315 len += 2 * strlen (v->value);
1316 ++len;
1319 /* Now allocate a buffer big enough and fill it. */
1320 p = value = (char *) alloca (len);
1321 for (cv = command_variables; cv != 0; cv = cv->next)
1323 v = cv->variable;
1324 p = quote_for_env (p, v->name);
1325 if (! v->recursive)
1326 *p++ = ':';
1327 *p++ = '=';
1328 p = quote_for_env (p, v->value);
1329 *p++ = ' ';
1331 p[-1] = '\0'; /* Kill the final space and terminate. */
1333 /* Define an unchangeable variable with a name that no POSIX.2
1334 makefile could validly use for its own variable. */
1335 (void) define_variable ("-*-command-variables-*-", 23,
1336 value, o_automatic, 0);
1338 /* Define the variable; this will not override any user definition.
1339 Normally a reference to this variable is written into the value of
1340 MAKEFLAGS, allowing the user to override this value to affect the
1341 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1342 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1343 a reference to this hidden variable is written instead. */
1344 (void) define_variable ("MAKEOVERRIDES", 13,
1345 "${-*-command-variables-*-}", o_env, 1);
1348 /* If there were -C flags, move ourselves about. */
1349 if (directories != 0)
1350 for (i = 0; directories->list[i] != 0; ++i)
1352 char *dir = directories->list[i];
1353 char *expanded = 0;
1354 if (dir[0] == '~')
1356 expanded = tilde_expand (dir);
1357 if (expanded != 0)
1358 dir = expanded;
1360 #ifdef WINDOWS32
1361 /* WINDOWS32 chdir() doesn't work if the directory has a trailing '/'
1362 But allow -C/ just in case someone wants that. */
1364 char *p = dir + strlen (dir) - 1;
1365 while (p > dir && (p[0] == '/' || p[0] == '\\'))
1366 --p;
1367 p[1] = '\0';
1369 #endif
1370 if (chdir (dir) < 0)
1371 pfatal_with_name (dir);
1372 if (expanded)
1373 free (expanded);
1376 #ifdef WINDOWS32
1378 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1379 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1381 * The functions in dir.c can incorrectly cache information for "."
1382 * before we have changed directory and this can cause file
1383 * lookups to fail because the current directory (.) was pointing
1384 * at the wrong place when it was first evaluated.
1386 no_default_sh_exe = !find_and_set_default_shell(NULL);
1388 #endif /* WINDOWS32 */
1389 /* Figure out the level of recursion. */
1391 struct variable *v = lookup_variable (STRING_SIZE_TUPLE (MAKELEVEL_NAME));
1392 if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
1393 makelevel = (unsigned int) atoi (v->value);
1394 else
1395 makelevel = 0;
1398 /* Except under -s, always do -w in sub-makes and under -C. */
1399 if (!silent_flag && (directories != 0 || makelevel > 0))
1400 print_directory_flag = 1;
1402 /* Let the user disable that with --no-print-directory. */
1403 if (inhibit_print_directory_flag)
1404 print_directory_flag = 0;
1406 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1407 if (no_builtin_variables_flag)
1408 no_builtin_rules_flag = 1;
1410 /* Construct the list of include directories to search. */
1412 construct_include_path (include_directories == 0 ? (char **) 0
1413 : include_directories->list);
1415 /* Figure out where we are now, after chdir'ing. */
1416 if (directories == 0)
1417 /* We didn't move, so we're still in the same place. */
1418 starting_directory = current_directory;
1419 else
1421 #ifdef WINDOWS32
1422 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1423 #else
1424 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1425 #endif
1427 #ifdef HAVE_GETCWD
1428 perror_with_name ("getcwd", "");
1429 #else
1430 error (NILF, "getwd: %s", current_directory);
1431 #endif
1432 starting_directory = 0;
1434 else
1435 starting_directory = current_directory;
1438 (void) define_variable ("CURDIR", 6, current_directory, o_default, 0);
1440 /* Read any stdin makefiles into temporary files. */
1442 if (makefiles != 0)
1444 register unsigned int i;
1445 for (i = 0; i < makefiles->idx; ++i)
1446 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1448 /* This makefile is standard input. Since we may re-exec
1449 and thus re-read the makefiles, we read standard input
1450 into a temporary file and read from that. */
1451 FILE *outfile;
1452 char *template, *tmpdir;
1454 if (stdin_nm)
1455 fatal (NILF, _("Makefile from standard input specified twice."));
1457 #ifdef VMS
1458 # define DEFAULT_TMPDIR "sys$scratch:"
1459 #else
1460 # ifdef P_tmpdir
1461 # define DEFAULT_TMPDIR P_tmpdir
1462 # else
1463 # define DEFAULT_TMPDIR "/tmp"
1464 # endif
1465 #endif
1466 #define DEFAULT_TMPFILE "GmXXXXXX"
1468 if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
1469 #if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
1470 /* These are also used commonly on these platforms. */
1471 && ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
1472 && ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
1473 #endif
1475 tmpdir = DEFAULT_TMPDIR;
1477 template = (char *) alloca (strlen (tmpdir)
1478 + sizeof (DEFAULT_TMPFILE) + 1);
1479 strcpy (template, tmpdir);
1481 #ifdef HAVE_DOS_PATHS
1482 if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
1483 strcat (template, "/");
1484 #else
1485 # ifndef VMS
1486 if (template[strlen (template) - 1] != '/')
1487 strcat (template, "/");
1488 # endif /* !VMS */
1489 #endif /* !HAVE_DOS_PATHS */
1491 strcat (template, DEFAULT_TMPFILE);
1492 outfile = open_tmpfile (&stdin_nm, template);
1493 if (outfile == 0)
1494 pfatal_with_name (_("fopen (temporary file)"));
1495 while (!feof (stdin) && ! ferror (stdin))
1497 char buf[2048];
1498 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1499 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1500 pfatal_with_name (_("fwrite (temporary file)"));
1502 (void) fclose (outfile);
1504 /* Replace the name that read_all_makefiles will
1505 see with the name of the temporary file. */
1506 makefiles->list[i] = xstrdup (stdin_nm);
1508 /* Make sure the temporary file will not be remade. */
1509 f = enter_file (stdin_nm);
1510 f->updated = 1;
1511 f->update_status = 0;
1512 f->command_state = cs_finished;
1513 /* Can't be intermediate, or it'll be removed too early for
1514 make re-exec. */
1515 f->intermediate = 0;
1516 f->dontcare = 0;
1520 #ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
1521 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1522 /* Set up to handle children dying. This must be done before
1523 reading in the makefiles so that `shell' function calls will work.
1525 If we don't have a hanging wait we have to fall back to old, broken
1526 functionality here and rely on the signal handler and counting
1527 children.
1529 If we're using the jobs pipe we need a signal handler so that
1530 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1531 jobserver pipe in job.c if we're waiting for a token.
1533 If none of these are true, we don't need a signal handler at all. */
1535 extern RETSIGTYPE child_handler PARAMS ((int sig));
1536 # if defined SIGCHLD
1537 bsd_signal (SIGCHLD, child_handler);
1538 # endif
1539 # if defined SIGCLD && SIGCLD != SIGCHLD
1540 bsd_signal (SIGCLD, child_handler);
1541 # endif
1543 #endif
1544 #endif
1546 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1547 #ifdef SIGUSR1
1548 bsd_signal (SIGUSR1, debug_signal_handler);
1549 #endif
1551 /* Define the initial list of suffixes for old-style rules. */
1553 set_default_suffixes ();
1555 /* Define the file rules for the built-in suffix rules. These will later
1556 be converted into pattern rules. We used to do this in
1557 install_default_implicit_rules, but since that happens after reading
1558 makefiles, it results in the built-in pattern rules taking precedence
1559 over makefile-specified suffix rules, which is wrong. */
1561 install_default_suffix_rules ();
1563 /* Define some internal and special variables. */
1565 define_automatic_variables ();
1567 /* Set up the MAKEFLAGS and MFLAGS variables
1568 so makefiles can look at them. */
1570 define_makeflags (0, 0);
1572 /* Define the default variables. */
1573 define_default_variables ();
1575 default_file = enter_file (".DEFAULT");
1578 struct variable *v = define_variable (".DEFAULT_GOAL", 13, "", o_file, 0);
1579 default_goal_name = &v->value;
1582 /* Read all the makefiles. */
1584 read_makefiles
1585 = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list);
1587 #ifdef WINDOWS32
1588 /* look one last time after reading all Makefiles */
1589 if (no_default_sh_exe)
1590 no_default_sh_exe = !find_and_set_default_shell(NULL);
1592 if (no_default_sh_exe && job_slots != 1) {
1593 error (NILF, _("Do not specify -j or --jobs if sh.exe is not available."));
1594 error (NILF, _("Resetting make for single job mode."));
1595 job_slots = 1;
1597 #endif /* WINDOWS32 */
1599 #if defined (__MSDOS__) || defined (__EMX__)
1600 /* We need to know what kind of shell we will be using. */
1602 extern int _is_unixy_shell (const char *_path);
1603 struct variable *shv = lookup_variable (STRING_SIZE_TUPLE ("SHELL"));
1604 extern int unixy_shell;
1605 extern char *default_shell;
1607 if (shv && *shv->value)
1609 char *shell_path = recursively_expand(shv);
1611 if (shell_path && _is_unixy_shell (shell_path))
1612 unixy_shell = 1;
1613 else
1614 unixy_shell = 0;
1615 if (shell_path)
1616 default_shell = shell_path;
1619 #endif /* __MSDOS__ || __EMX__ */
1621 /* Decode switches again, in case the variables were set by the makefile. */
1622 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1623 #if 0
1624 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1625 #endif
1627 #if defined (__MSDOS__) || defined (__EMX__)
1628 if (job_slots != 1
1629 # ifdef __EMX__
1630 && _osmode != OS2_MODE /* turn off -j if we are in DOS mode */
1631 # endif
1634 error (NILF,
1635 _("Parallel jobs (-j) are not supported on this platform."));
1636 error (NILF, _("Resetting to single job (-j1) mode."));
1637 job_slots = 1;
1639 #endif
1641 #ifdef MAKE_JOBSERVER
1642 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1644 if (jobserver_fds)
1646 char *cp;
1647 unsigned int ui;
1649 for (ui=1; ui < jobserver_fds->idx; ++ui)
1650 if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui]))
1651 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1653 /* Now parse the fds string and make sure it has the proper format. */
1655 cp = jobserver_fds->list[0];
1657 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1658 fatal (NILF,
1659 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1661 /* The combination of a pipe + !job_slots means we're using the
1662 jobserver. If !job_slots and we don't have a pipe, we can start
1663 infinite jobs. If we see both a pipe and job_slots >0 that means the
1664 user set -j explicitly. This is broken; in this case obey the user
1665 (ignore the jobserver pipe for this make) but print a message. */
1667 if (job_slots > 0)
1668 error (NILF,
1669 _("warning: -jN forced in submake: disabling jobserver mode."));
1671 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1672 handler. If this fails with EBADF, the parent has closed the pipe
1673 on us because it didn't think we were a submake. If so, print a
1674 warning then default to -j1. */
1676 else if ((job_rfd = dup (job_fds[0])) < 0)
1678 if (errno != EBADF)
1679 pfatal_with_name (_("dup jobserver"));
1681 error (NILF,
1682 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1683 job_slots = 1;
1686 if (job_slots > 0)
1688 close (job_fds[0]);
1689 close (job_fds[1]);
1690 job_fds[0] = job_fds[1] = -1;
1691 free (jobserver_fds->list);
1692 free (jobserver_fds);
1693 jobserver_fds = 0;
1697 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1698 Set up the pipe and install the fds option for our children. */
1700 if (job_slots > 1)
1702 char c = '+';
1704 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1705 pfatal_with_name (_("creating jobs pipe"));
1707 /* Every make assumes that it always has one job it can run. For the
1708 submakes it's the token they were given by their parent. For the
1709 top make, we just subtract one from the number the user wants. We
1710 want job_slots to be 0 to indicate we're using the jobserver. */
1712 master_job_slots = job_slots;
1714 while (--job_slots)
1716 int r;
1718 EINTRLOOP (r, write (job_fds[1], &c, 1));
1719 if (r != 1)
1720 pfatal_with_name (_("init jobserver pipe"));
1723 /* Fill in the jobserver_fds struct for our children. */
1725 jobserver_fds = (struct stringlist *)
1726 xmalloc (sizeof (struct stringlist));
1727 jobserver_fds->list = (char **) xmalloc (sizeof (char *));
1728 jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
1730 sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
1731 jobserver_fds->idx = 1;
1732 jobserver_fds->max = 1;
1734 #endif
1736 #ifndef MAKE_SYMLINKS
1737 if (check_symlink_flag)
1739 error (NILF, _("Symbolic links not supported: disabling -L."));
1740 check_symlink_flag = 0;
1742 #endif
1744 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1746 define_makeflags (1, 0);
1748 /* Make each `struct dep' point at the `struct file' for the file
1749 depended on. Also do magic for special targets. */
1751 snap_deps ();
1753 /* Convert old-style suffix rules to pattern rules. It is important to
1754 do this before installing the built-in pattern rules below, so that
1755 makefile-specified suffix rules take precedence over built-in pattern
1756 rules. */
1758 convert_to_pattern ();
1760 /* Install the default implicit pattern rules.
1761 This used to be done before reading the makefiles.
1762 But in that case, built-in pattern rules were in the chain
1763 before user-defined ones, so they matched first. */
1765 install_default_implicit_rules ();
1767 /* Compute implicit rule limits. */
1769 count_implicit_rule_limits ();
1771 /* Construct the listings of directories in VPATH lists. */
1773 build_vpath_lists ();
1775 /* Mark files given with -o flags as very old and as having been updated
1776 already, and files given with -W flags as brand new (time-stamp as far
1777 as possible into the future). If restarts is set we'll do -W later. */
1779 if (old_files != 0)
1780 for (p = old_files->list; *p != 0; ++p)
1782 f = enter_command_line_file (*p);
1783 f->last_mtime = f->mtime_before_update = OLD_MTIME;
1784 f->updated = 1;
1785 f->update_status = 0;
1786 f->command_state = cs_finished;
1789 if (!restarts && new_files != 0)
1791 for (p = new_files->list; *p != 0; ++p)
1793 f = enter_command_line_file (*p);
1794 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1798 /* Initialize the remote job module. */
1799 remote_setup ();
1801 if (read_makefiles != 0)
1803 /* Update any makefiles if necessary. */
1805 FILE_TIMESTAMP *makefile_mtimes = 0;
1806 unsigned int mm_idx = 0;
1807 char **nargv = argv;
1808 int nargc = argc;
1809 int orig_db_level = db_level;
1810 int status;
1812 if (! ISDB (DB_MAKEFILES))
1813 db_level = DB_NONE;
1815 DB (DB_BASIC, (_("Updating makefiles....\n")));
1817 /* Remove any makefiles we don't want to try to update.
1818 Also record the current modtimes so we can compare them later. */
1820 register struct dep *d, *last;
1821 last = 0;
1822 d = read_makefiles;
1823 while (d != 0)
1825 register struct file *f = d->file;
1826 if (f->double_colon)
1827 for (f = f->double_colon; f != NULL; f = f->prev)
1829 if (f->deps == 0 && f->cmds != 0)
1831 /* This makefile is a :: target with commands, but
1832 no dependencies. So, it will always be remade.
1833 This might well cause an infinite loop, so don't
1834 try to remake it. (This will only happen if
1835 your makefiles are written exceptionally
1836 stupidly; but if you work for Athena, that's how
1837 you write your makefiles.) */
1839 DB (DB_VERBOSE,
1840 (_("Makefile `%s' might loop; not remaking it.\n"),
1841 f->name));
1843 if (last == 0)
1844 read_makefiles = d->next;
1845 else
1846 last->next = d->next;
1848 /* Free the storage. */
1849 free ((char *) d);
1851 d = last == 0 ? read_makefiles : last->next;
1853 break;
1856 if (f == NULL || !f->double_colon)
1858 makefile_mtimes = (FILE_TIMESTAMP *)
1859 xrealloc ((char *) makefile_mtimes,
1860 (mm_idx + 1) * sizeof (FILE_TIMESTAMP));
1861 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1862 last = d;
1863 d = d->next;
1868 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1869 define_makeflags (1, 1);
1871 rebuilding_makefiles = 1;
1872 status = update_goal_chain (read_makefiles);
1873 rebuilding_makefiles = 0;
1875 switch (status)
1877 case 1:
1878 /* The only way this can happen is if the user specified -q and asked
1879 * for one of the makefiles to be remade as a target on the command
1880 * line. Since we're not actually updating anything with -q we can
1881 * treat this as "did nothing".
1884 case -1:
1885 /* Did nothing. */
1886 break;
1888 case 2:
1889 /* Failed to update. Figure out if we care. */
1891 /* Nonzero if any makefile was successfully remade. */
1892 int any_remade = 0;
1893 /* Nonzero if any makefile we care about failed
1894 in updating or could not be found at all. */
1895 int any_failed = 0;
1896 unsigned int i;
1897 struct dep *d;
1899 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1901 /* Reset the considered flag; we may need to look at the file
1902 again to print an error. */
1903 d->file->considered = 0;
1905 if (d->file->updated)
1907 /* This makefile was updated. */
1908 if (d->file->update_status == 0)
1910 /* It was successfully updated. */
1911 any_remade |= (file_mtime_no_search (d->file)
1912 != makefile_mtimes[i]);
1914 else if (! (d->changed & RM_DONTCARE))
1916 FILE_TIMESTAMP mtime;
1917 /* The update failed and this makefile was not
1918 from the MAKEFILES variable, so we care. */
1919 error (NILF, _("Failed to remake makefile `%s'."),
1920 d->file->name);
1921 mtime = file_mtime_no_search (d->file);
1922 any_remade |= (mtime != NONEXISTENT_MTIME
1923 && mtime != makefile_mtimes[i]);
1924 makefile_status = MAKE_FAILURE;
1927 else
1928 /* This makefile was not found at all. */
1929 if (! (d->changed & RM_DONTCARE))
1931 /* This is a makefile we care about. See how much. */
1932 if (d->changed & RM_INCLUDED)
1933 /* An included makefile. We don't need
1934 to die, but we do want to complain. */
1935 error (NILF,
1936 _("Included makefile `%s' was not found."),
1937 dep_name (d));
1938 else
1940 /* A normal makefile. We must die later. */
1941 error (NILF, _("Makefile `%s' was not found"),
1942 dep_name (d));
1943 any_failed = 1;
1947 /* Reset this to empty so we get the right error message below. */
1948 read_makefiles = 0;
1950 if (any_remade)
1951 goto re_exec;
1952 if (any_failed)
1953 die (2);
1954 break;
1957 case 0:
1958 re_exec:
1959 /* Updated successfully. Re-exec ourselves. */
1961 remove_intermediates (0);
1963 if (print_data_base_flag)
1964 print_data_base ();
1966 log_working_directory (0);
1968 if (makefiles != 0)
1970 /* These names might have changed. */
1971 int i, j = 0;
1972 for (i = 1; i < argc; ++i)
1973 if (strneq (argv[i], "-f", 2)) /* XXX */
1975 char *p = &argv[i][2];
1976 if (*p == '\0')
1977 argv[++i] = makefiles->list[j];
1978 else
1979 argv[i] = concat ("-f", makefiles->list[j], "");
1980 ++j;
1984 /* Add -o option for the stdin temporary file, if necessary. */
1985 if (stdin_nm)
1987 nargv = (char **) xmalloc ((nargc + 2) * sizeof (char *));
1988 bcopy ((char *) argv, (char *) nargv, argc * sizeof (char *));
1989 nargv[nargc++] = concat ("-o", stdin_nm, "");
1990 nargv[nargc] = 0;
1993 if (directories != 0 && directories->idx > 0)
1995 char bad;
1996 if (directory_before_chdir != 0)
1998 if (chdir (directory_before_chdir) < 0)
2000 perror_with_name ("chdir", "");
2001 bad = 1;
2003 else
2004 bad = 0;
2006 else
2007 bad = 1;
2008 if (bad)
2009 fatal (NILF, _("Couldn't change back to original directory."));
2012 ++restarts;
2014 if (ISDB (DB_BASIC))
2016 char **p;
2017 printf (_("Re-executing[%u]:"), restarts);
2018 for (p = nargv; *p != 0; ++p)
2019 printf (" %s", *p);
2020 putchar ('\n');
2023 #ifndef _AMIGA
2024 for (p = environ; *p != 0; ++p)
2026 if (strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH)
2027 && (*p)[MAKELEVEL_LENGTH] == '=')
2029 /* The SGI compiler apparently can't understand
2030 the concept of storing the result of a function
2031 in something other than a local variable. */
2032 char *sgi_loses;
2033 sgi_loses = (char *) alloca (40);
2034 *p = sgi_loses;
2035 sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
2037 if (strneq (*p, "MAKE_RESTARTS=", 14))
2039 char *sgi_loses;
2040 sgi_loses = (char *) alloca (40);
2041 *p = sgi_loses;
2042 sprintf (*p, "MAKE_RESTARTS=%u", restarts);
2043 restarts = 0;
2046 #else /* AMIGA */
2048 char buffer[256];
2050 sprintf (buffer, "%u", makelevel);
2051 SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
2053 sprintf (buffer, "%u", restarts);
2054 SetVar ("MAKE_RESTARTS", buffer, -1, GVF_GLOBAL_ONLY);
2055 restarts = 0;
2057 #endif
2059 /* If we didn't set the restarts variable yet, add it. */
2060 if (restarts)
2062 char *b = alloca (40);
2063 sprintf (b, "MAKE_RESTARTS=%u", restarts);
2064 putenv (b);
2067 fflush (stdout);
2068 fflush (stderr);
2070 /* Close the dup'd jobserver pipe if we opened one. */
2071 if (job_rfd >= 0)
2072 close (job_rfd);
2074 #ifdef _AMIGA
2075 exec_command (nargv);
2076 exit (0);
2077 #elif defined (__EMX__)
2079 /* It is not possible to use execve() here because this
2080 would cause the parent process to be terminated with
2081 exit code 0 before the child process has been terminated.
2082 Therefore it may be the best solution simply to spawn the
2083 child process including all file handles and to wait for its
2084 termination. */
2085 int pid;
2086 int status;
2087 pid = child_execute_job (0, 1, nargv, environ);
2089 /* is this loop really necessary? */
2090 do {
2091 pid = wait (&status);
2092 } while (pid <= 0);
2093 /* use the exit code of the child process */
2094 exit (WIFEXITED(status) ? WEXITSTATUS(status) : EXIT_FAILURE);
2096 #else
2097 exec_command (nargv, environ);
2098 #endif
2099 /* NOTREACHED */
2101 default:
2102 #define BOGUS_UPDATE_STATUS 0
2103 assert (BOGUS_UPDATE_STATUS);
2104 break;
2107 db_level = orig_db_level;
2109 /* Free the makefile mtimes (if we allocated any). */
2110 if (makefile_mtimes)
2111 free ((char *) makefile_mtimes);
2114 /* Set up `MAKEFLAGS' again for the normal targets. */
2115 define_makeflags (1, 0);
2117 /* Set always_make_flag if -B was given. */
2118 always_make_flag = always_make_set;
2120 /* If restarts is set we haven't set up -W files yet, so do that now. */
2121 if (restarts && new_files != 0)
2123 for (p = new_files->list; *p != 0; ++p)
2125 f = enter_command_line_file (*p);
2126 f->last_mtime = f->mtime_before_update = NEW_MTIME;
2130 /* If there is a temp file from reading a makefile from stdin, get rid of
2131 it now. */
2132 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
2133 perror_with_name (_("unlink (temporary file): "), stdin_nm);
2136 int status;
2138 /* If there were no command-line goals, use the default. */
2139 if (goals == 0)
2141 if (**default_goal_name != '\0')
2143 if (default_goal_file == 0 ||
2144 strcmp (*default_goal_name, default_goal_file->name) != 0)
2146 default_goal_file = lookup_file (*default_goal_name);
2148 /* In case user set .DEFAULT_GOAL to a non-existent target
2149 name let's just enter this name into the table and let
2150 the standard logic sort it out. */
2151 if (default_goal_file == 0)
2153 struct nameseq *ns;
2154 char *p = *default_goal_name;
2156 ns = multi_glob (
2157 parse_file_seq (&p, '\0', sizeof (struct nameseq), 1),
2158 sizeof (struct nameseq));
2160 /* .DEFAULT_GOAL should contain one target. */
2161 if (ns->next != 0)
2162 fatal (NILF, _(".DEFAULT_GOAL contains more than one target"));
2164 default_goal_file = enter_file (ns->name);
2166 ns->name = 0; /* It was reused by enter_file(). */
2167 free_ns_chain (ns);
2171 goals = (struct dep *) xmalloc (sizeof (struct dep));
2172 goals->next = 0;
2173 goals->name = 0;
2174 goals->ignore_mtime = 0;
2175 goals->need_2nd_expansion = 0;
2176 goals->file = default_goal_file;
2179 else
2180 lastgoal->next = 0;
2183 if (!goals)
2185 if (read_makefiles == 0)
2186 fatal (NILF, _("No targets specified and no makefile found"));
2188 fatal (NILF, _("No targets"));
2191 /* Update the goals. */
2193 DB (DB_BASIC, (_("Updating goal targets....\n")));
2195 switch (update_goal_chain (goals))
2197 case -1:
2198 /* Nothing happened. */
2199 case 0:
2200 /* Updated successfully. */
2201 status = makefile_status;
2202 break;
2203 case 1:
2204 /* We are under -q and would run some commands. */
2205 status = MAKE_TROUBLE;
2206 break;
2207 case 2:
2208 /* Updating failed. POSIX.2 specifies exit status >1 for this;
2209 but in VMS, there is only success and failure. */
2210 status = MAKE_FAILURE;
2211 break;
2212 default:
2213 abort ();
2216 /* If we detected some clock skew, generate one last warning */
2217 if (clock_skew_detected)
2218 error (NILF,
2219 _("warning: Clock skew detected. Your build may be incomplete."));
2221 /* Exit. */
2222 die (status);
2225 /* NOTREACHED */
2226 return 0;
2229 /* Parsing of arguments, decoding of switches. */
2231 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
2232 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
2233 (sizeof (long_option_aliases) /
2234 sizeof (long_option_aliases[0]))];
2236 /* Fill in the string and vector for getopt. */
2237 static void
2238 init_switches (void)
2240 char *p;
2241 unsigned int c;
2242 unsigned int i;
2244 if (options[0] != '\0')
2245 /* Already done. */
2246 return;
2248 p = options;
2250 /* Return switch and non-switch args in order, regardless of
2251 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
2252 *p++ = '-';
2254 for (i = 0; switches[i].c != '\0'; ++i)
2256 long_options[i].name = (switches[i].long_name == 0 ? "" :
2257 switches[i].long_name);
2258 long_options[i].flag = 0;
2259 long_options[i].val = switches[i].c;
2260 if (short_option (switches[i].c))
2261 *p++ = switches[i].c;
2262 switch (switches[i].type)
2264 case flag:
2265 case flag_off:
2266 case ignore:
2267 long_options[i].has_arg = no_argument;
2268 break;
2270 case string:
2271 case positive_int:
2272 case floating:
2273 if (short_option (switches[i].c))
2274 *p++ = ':';
2275 if (switches[i].noarg_value != 0)
2277 if (short_option (switches[i].c))
2278 *p++ = ':';
2279 long_options[i].has_arg = optional_argument;
2281 else
2282 long_options[i].has_arg = required_argument;
2283 break;
2286 *p = '\0';
2287 for (c = 0; c < (sizeof (long_option_aliases) /
2288 sizeof (long_option_aliases[0]));
2289 ++c)
2290 long_options[i++] = long_option_aliases[c];
2291 long_options[i].name = 0;
2294 static void
2295 handle_non_switch_argument (char *arg, int env)
2297 /* Non-option argument. It might be a variable definition. */
2298 struct variable *v;
2299 if (arg[0] == '-' && arg[1] == '\0')
2300 /* Ignore plain `-' for compatibility. */
2301 return;
2302 v = try_variable_definition (0, arg, o_command, 0);
2303 if (v != 0)
2305 /* It is indeed a variable definition. If we don't already have this
2306 one, record a pointer to the variable for later use in
2307 define_makeflags. */
2308 struct command_variable *cv;
2310 for (cv = command_variables; cv != 0; cv = cv->next)
2311 if (cv->variable == v)
2312 break;
2314 if (! cv) {
2315 cv = (struct command_variable *) xmalloc (sizeof (*cv));
2316 cv->variable = v;
2317 cv->next = command_variables;
2318 command_variables = cv;
2321 else if (! env)
2323 /* Not an option or variable definition; it must be a goal
2324 target! Enter it as a file and add it to the dep chain of
2325 goals. */
2326 struct file *f = enter_command_line_file (arg);
2327 f->cmd_target = 1;
2329 if (goals == 0)
2331 goals = (struct dep *) xmalloc (sizeof (struct dep));
2332 lastgoal = goals;
2334 else
2336 lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
2337 lastgoal = lastgoal->next;
2339 lastgoal->name = 0;
2340 lastgoal->file = f;
2341 lastgoal->ignore_mtime = 0;
2342 lastgoal->need_2nd_expansion = 0;
2345 /* Add this target name to the MAKECMDGOALS variable. */
2346 struct variable *v;
2347 char *value;
2349 v = lookup_variable (STRING_SIZE_TUPLE ("MAKECMDGOALS"));
2350 if (v == 0)
2351 value = f->name;
2352 else
2354 /* Paste the old and new values together */
2355 unsigned int oldlen, newlen;
2357 oldlen = strlen (v->value);
2358 newlen = strlen (f->name);
2359 value = (char *) alloca (oldlen + 1 + newlen + 1);
2360 bcopy (v->value, value, oldlen);
2361 value[oldlen] = ' ';
2362 bcopy (f->name, &value[oldlen + 1], newlen + 1);
2364 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
2369 /* Print a nice usage method. */
2371 static void
2372 print_usage (int bad)
2374 const char *const *cpp;
2375 FILE *usageto;
2377 if (print_version_flag)
2378 print_version ();
2380 usageto = bad ? stderr : stdout;
2382 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
2384 for (cpp = usage; *cpp; ++cpp)
2385 fputs (_(*cpp), usageto);
2387 if (!remote_description || *remote_description == '\0')
2388 fprintf (usageto, _("\nThis program built for %s\n"), make_host);
2389 else
2390 fprintf (usageto, _("\nThis program built for %s (%s)\n"),
2391 make_host, remote_description);
2393 fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
2396 /* Decode switches from ARGC and ARGV.
2397 They came from the environment if ENV is nonzero. */
2399 static void
2400 decode_switches (int argc, char **argv, int env)
2402 int bad = 0;
2403 register const struct command_switch *cs;
2404 register struct stringlist *sl;
2405 register int c;
2407 /* getopt does most of the parsing for us.
2408 First, get its vectors set up. */
2410 init_switches ();
2412 /* Let getopt produce error messages for the command line,
2413 but not for options from the environment. */
2414 opterr = !env;
2415 /* Reset getopt's state. */
2416 optind = 0;
2418 while (optind < argc)
2420 /* Parse the next argument. */
2421 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2422 if (c == EOF)
2423 /* End of arguments, or "--" marker seen. */
2424 break;
2425 else if (c == 1)
2426 /* An argument not starting with a dash. */
2427 handle_non_switch_argument (optarg, env);
2428 else if (c == '?')
2429 /* Bad option. We will print a usage message and die later.
2430 But continue to parse the other options so the user can
2431 see all he did wrong. */
2432 bad = 1;
2433 else
2434 for (cs = switches; cs->c != '\0'; ++cs)
2435 if (cs->c == c)
2437 /* Whether or not we will actually do anything with
2438 this switch. We test this individually inside the
2439 switch below rather than just once outside it, so that
2440 options which are to be ignored still consume args. */
2441 int doit = !env || cs->env;
2443 switch (cs->type)
2445 default:
2446 abort ();
2448 case ignore:
2449 break;
2451 case flag:
2452 case flag_off:
2453 if (doit)
2454 *(int *) cs->value_ptr = cs->type == flag;
2455 break;
2457 case string:
2458 if (!doit)
2459 break;
2461 if (optarg == 0)
2462 optarg = cs->noarg_value;
2463 else if (*optarg == '\0')
2465 error (NILF, _("the `-%c' option requires a non-empty string argument"),
2466 cs->c);
2467 bad = 1;
2470 sl = *(struct stringlist **) cs->value_ptr;
2471 if (sl == 0)
2473 sl = (struct stringlist *)
2474 xmalloc (sizeof (struct stringlist));
2475 sl->max = 5;
2476 sl->idx = 0;
2477 sl->list = (char **) xmalloc (5 * sizeof (char *));
2478 *(struct stringlist **) cs->value_ptr = sl;
2480 else if (sl->idx == sl->max - 1)
2482 sl->max += 5;
2483 sl->list = (char **)
2484 xrealloc ((char *) sl->list,
2485 sl->max * sizeof (char *));
2487 sl->list[sl->idx++] = optarg;
2488 sl->list[sl->idx] = 0;
2489 break;
2491 case positive_int:
2492 /* See if we have an option argument; if we do require that
2493 it's all digits, not something like "10foo". */
2494 if (optarg == 0 && argc > optind)
2496 const char *cp;
2497 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
2499 if (cp[0] == '\0')
2500 optarg = argv[optind++];
2503 if (!doit)
2504 break;
2506 if (optarg != 0)
2508 int i = atoi (optarg);
2509 const char *cp;
2511 /* Yes, I realize we're repeating this in some cases. */
2512 for (cp = optarg; ISDIGIT (cp[0]); ++cp)
2515 if (i < 1 || cp[0] != '\0')
2517 error (NILF, _("the `-%c' option requires a positive integral argument"),
2518 cs->c);
2519 bad = 1;
2521 else
2522 *(unsigned int *) cs->value_ptr = i;
2524 else
2525 *(unsigned int *) cs->value_ptr
2526 = *(unsigned int *) cs->noarg_value;
2527 break;
2529 #ifndef NO_FLOAT
2530 case floating:
2531 if (optarg == 0 && optind < argc
2532 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2533 optarg = argv[optind++];
2535 if (doit)
2536 *(double *) cs->value_ptr
2537 = (optarg != 0 ? atof (optarg)
2538 : *(double *) cs->noarg_value);
2540 break;
2541 #endif
2544 /* We've found the switch. Stop looking. */
2545 break;
2549 /* There are no more options according to getting getopt, but there may
2550 be some arguments left. Since we have asked for non-option arguments
2551 to be returned in order, this only happens when there is a "--"
2552 argument to prevent later arguments from being options. */
2553 while (optind < argc)
2554 handle_non_switch_argument (argv[optind++], env);
2557 if (!env && (bad || print_usage_flag))
2559 print_usage (bad);
2560 die (bad ? 2 : 0);
2564 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2565 We do this by chopping the value into a vector of words, prepending a
2566 dash to the first word if it lacks one, and passing the vector to
2567 decode_switches. */
2569 static void
2570 decode_env_switches (char *envar, unsigned int len)
2572 char *varref = (char *) alloca (2 + len + 2);
2573 char *value, *p;
2574 int argc;
2575 char **argv;
2577 /* Get the variable's value. */
2578 varref[0] = '$';
2579 varref[1] = '(';
2580 bcopy (envar, &varref[2], len);
2581 varref[2 + len] = ')';
2582 varref[2 + len + 1] = '\0';
2583 value = variable_expand (varref);
2585 /* Skip whitespace, and check for an empty value. */
2586 value = next_token (value);
2587 len = strlen (value);
2588 if (len == 0)
2589 return;
2591 /* Allocate a vector that is definitely big enough. */
2592 argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
2594 /* Allocate a buffer to copy the value into while we split it into words
2595 and unquote it. We must use permanent storage for this because
2596 decode_switches may store pointers into the passed argument words. */
2597 p = (char *) xmalloc (2 * len);
2599 /* getopt will look at the arguments starting at ARGV[1].
2600 Prepend a spacer word. */
2601 argv[0] = 0;
2602 argc = 1;
2603 argv[argc] = p;
2604 while (*value != '\0')
2606 if (*value == '\\' && value[1] != '\0')
2607 ++value; /* Skip the backslash. */
2608 else if (isblank ((unsigned char)*value))
2610 /* End of the word. */
2611 *p++ = '\0';
2612 argv[++argc] = p;
2614 ++value;
2615 while (isblank ((unsigned char)*value));
2616 continue;
2618 *p++ = *value++;
2620 *p = '\0';
2621 argv[++argc] = 0;
2623 if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
2624 /* The first word doesn't start with a dash and isn't a variable
2625 definition. Add a dash and pass it along to decode_switches. We
2626 need permanent storage for this in case decode_switches saves
2627 pointers into the value. */
2628 argv[1] = concat ("-", argv[1], "");
2630 /* Parse those words. */
2631 decode_switches (argc, argv, 1);
2634 /* Quote the string IN so that it will be interpreted as a single word with
2635 no magic by decode_env_switches; also double dollar signs to avoid
2636 variable expansion in make itself. Write the result into OUT, returning
2637 the address of the next character to be written.
2638 Allocating space for OUT twice the length of IN is always sufficient. */
2640 static char *
2641 quote_for_env (char *out, char *in)
2643 while (*in != '\0')
2645 if (*in == '$')
2646 *out++ = '$';
2647 else if (isblank ((unsigned char)*in) || *in == '\\')
2648 *out++ = '\\';
2649 *out++ = *in++;
2652 return out;
2655 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2656 command switches. Include options with args if ALL is nonzero.
2657 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2659 static void
2660 define_makeflags (int all, int makefile)
2662 static const char ref[] = "$(MAKEOVERRIDES)";
2663 static const char posixref[] = "$(-*-command-variables-*-)";
2664 register const struct command_switch *cs;
2665 char *flagstring;
2666 register char *p;
2667 unsigned int words;
2668 struct variable *v;
2670 /* We will construct a linked list of `struct flag's describing
2671 all the flags which need to go in MAKEFLAGS. Then, once we
2672 know how many there are and their lengths, we can put them all
2673 together in a string. */
2675 struct flag
2677 struct flag *next;
2678 const struct command_switch *cs;
2679 char *arg;
2681 struct flag *flags = 0;
2682 unsigned int flagslen = 0;
2683 #define ADD_FLAG(ARG, LEN) \
2684 do { \
2685 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2686 new->cs = cs; \
2687 new->arg = (ARG); \
2688 new->next = flags; \
2689 flags = new; \
2690 if (new->arg == 0) \
2691 ++flagslen; /* Just a single flag letter. */ \
2692 else \
2693 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2694 if (!short_option (cs->c)) \
2695 /* This switch has no single-letter version, so we use the long. */ \
2696 flagslen += 2 + strlen (cs->long_name); \
2697 } while (0)
2699 for (cs = switches; cs->c != '\0'; ++cs)
2700 if (cs->toenv && (!makefile || !cs->no_makefile))
2701 switch (cs->type)
2703 default:
2704 abort ();
2706 case ignore:
2707 break;
2709 case flag:
2710 case flag_off:
2711 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2712 && (cs->default_value == 0
2713 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2714 ADD_FLAG (0, 0);
2715 break;
2717 case positive_int:
2718 if (all)
2720 if ((cs->default_value != 0
2721 && (*(unsigned int *) cs->value_ptr
2722 == *(unsigned int *) cs->default_value)))
2723 break;
2724 else if (cs->noarg_value != 0
2725 && (*(unsigned int *) cs->value_ptr ==
2726 *(unsigned int *) cs->noarg_value))
2727 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2728 else if (cs->c == 'j')
2729 /* Special case for `-j'. */
2730 ADD_FLAG ("1", 1);
2731 else
2733 char *buf = (char *) alloca (30);
2734 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2735 ADD_FLAG (buf, strlen (buf));
2738 break;
2740 #ifndef NO_FLOAT
2741 case floating:
2742 if (all)
2744 if (cs->default_value != 0
2745 && (*(double *) cs->value_ptr
2746 == *(double *) cs->default_value))
2747 break;
2748 else if (cs->noarg_value != 0
2749 && (*(double *) cs->value_ptr
2750 == *(double *) cs->noarg_value))
2751 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2752 else
2754 char *buf = (char *) alloca (100);
2755 sprintf (buf, "%g", *(double *) cs->value_ptr);
2756 ADD_FLAG (buf, strlen (buf));
2759 break;
2760 #endif
2762 case string:
2763 if (all)
2765 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2766 if (sl != 0)
2768 /* Add the elements in reverse order, because
2769 all the flags get reversed below; and the order
2770 matters for some switches (like -I). */
2771 register unsigned int i = sl->idx;
2772 while (i-- > 0)
2773 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2776 break;
2779 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2781 #undef ADD_FLAG
2783 /* Construct the value in FLAGSTRING.
2784 We allocate enough space for a preceding dash and trailing null. */
2785 flagstring = (char *) alloca (1 + flagslen + 1);
2786 bzero (flagstring, 1 + flagslen + 1);
2787 p = flagstring;
2788 words = 1;
2789 *p++ = '-';
2790 while (flags != 0)
2792 /* Add the flag letter or name to the string. */
2793 if (short_option (flags->cs->c))
2794 *p++ = flags->cs->c;
2795 else
2797 if (*p != '-')
2799 *p++ = ' ';
2800 *p++ = '-';
2802 *p++ = '-';
2803 strcpy (p, flags->cs->long_name);
2804 p += strlen (p);
2806 if (flags->arg != 0)
2808 /* A flag that takes an optional argument which in this case is
2809 omitted is specified by ARG being "". We must distinguish
2810 because a following flag appended without an intervening " -"
2811 is considered the arg for the first. */
2812 if (flags->arg[0] != '\0')
2814 /* Add its argument too. */
2815 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2816 p = quote_for_env (p, flags->arg);
2818 ++words;
2819 /* Write a following space and dash, for the next flag. */
2820 *p++ = ' ';
2821 *p++ = '-';
2823 else if (!short_option (flags->cs->c))
2825 ++words;
2826 /* Long options must each go in their own word,
2827 so we write the following space and dash. */
2828 *p++ = ' ';
2829 *p++ = '-';
2831 flags = flags->next;
2834 /* Define MFLAGS before appending variable definitions. */
2836 if (p == &flagstring[1])
2837 /* No flags. */
2838 flagstring[0] = '\0';
2839 else if (p[-1] == '-')
2841 /* Kill the final space and dash. */
2842 p -= 2;
2843 *p = '\0';
2845 else
2846 /* Terminate the string. */
2847 *p = '\0';
2849 /* Since MFLAGS is not parsed for flags, there is no reason to
2850 override any makefile redefinition. */
2851 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2853 if (all && command_variables != 0)
2855 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2856 command-line variable definitions. */
2858 if (p == &flagstring[1])
2859 /* No flags written, so elide the leading dash already written. */
2860 p = flagstring;
2861 else
2863 /* Separate the variables from the switches with a "--" arg. */
2864 if (p[-1] != '-')
2866 /* We did not already write a trailing " -". */
2867 *p++ = ' ';
2868 *p++ = '-';
2870 /* There is a trailing " -"; fill it out to " -- ". */
2871 *p++ = '-';
2872 *p++ = ' ';
2875 /* Copy in the string. */
2876 if (posix_pedantic)
2878 bcopy (posixref, p, sizeof posixref - 1);
2879 p += sizeof posixref - 1;
2881 else
2883 bcopy (ref, p, sizeof ref - 1);
2884 p += sizeof ref - 1;
2887 else if (p == &flagstring[1])
2889 words = 0;
2890 --p;
2892 else if (p[-1] == '-')
2893 /* Kill the final space and dash. */
2894 p -= 2;
2895 /* Terminate the string. */
2896 *p = '\0';
2898 v = define_variable ("MAKEFLAGS", 9,
2899 /* If there are switches, omit the leading dash
2900 unless it is a single long option with two
2901 leading dashes. */
2902 &flagstring[(flagstring[0] == '-'
2903 && flagstring[1] != '-')
2904 ? 1 : 0],
2905 /* This used to use o_env, but that lost when a
2906 makefile defined MAKEFLAGS. Makefiles set
2907 MAKEFLAGS to add switches, but we still want
2908 to redefine its value with the full set of
2909 switches. Of course, an override or command
2910 definition will still take precedence. */
2911 o_file, 1);
2912 if (! all)
2913 /* The first time we are called, set MAKEFLAGS to always be exported.
2914 We should not do this again on the second call, because that is
2915 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2916 v->export = v_export;
2919 /* Print version information. */
2921 static void
2922 print_version (void)
2924 static int printed_version = 0;
2926 char *precede = print_data_base_flag ? "# " : "";
2928 if (printed_version)
2929 /* Do it only once. */
2930 return;
2932 /* Print this untranslated. The coding standards recommend translating the
2933 (C) to the copyright symbol, but this string is going to change every
2934 year, and none of the rest of it should be translated (including the
2935 word "Copyright", so it hardly seems worth it. */
2937 printf ("%sGNU Make %s\n\
2938 %sCopyright (C) 2003 Free Software Foundation, Inc.\n",
2939 precede, version_string, precede);
2941 printf (_("%sThis is free software; see the source for copying conditions.\n\
2942 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2943 %sPARTICULAR PURPOSE.\n"),
2944 precede, precede, precede);
2946 if (!remote_description || *remote_description == '\0')
2947 printf (_("\n%sThis program built for %s\n"), precede, make_host);
2948 else
2949 printf (_("\n%sThis program built for %s (%s)\n"),
2950 precede, make_host, remote_description);
2952 printed_version = 1;
2954 /* Flush stdout so the user doesn't have to wait to see the
2955 version information while things are thought about. */
2956 fflush (stdout);
2959 /* Print a bunch of information about this and that. */
2961 static void
2962 print_data_base (void)
2964 time_t when;
2966 when = time ((time_t *) 0);
2967 printf (_("\n# Make data base, printed on %s"), ctime (&when));
2969 print_variable_data_base ();
2970 print_dir_data_base ();
2971 print_rule_data_base ();
2972 print_file_data_base ();
2973 print_vpath_data_base ();
2975 when = time ((time_t *) 0);
2976 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
2979 /* Exit with STATUS, cleaning up as necessary. */
2981 void
2982 die (int status)
2984 static char dying = 0;
2986 if (!dying)
2988 char token = '+';
2989 int err;
2991 dying = 1;
2993 if (print_version_flag)
2994 print_version ();
2996 /* Wait for children to die. */
2997 for (err = (status != 0); job_slots_used > 0; err = 0)
2998 reap_children (1, err);
3000 /* Let the remote job module clean up its state. */
3001 remote_cleanup ();
3003 /* Remove the intermediate files. */
3004 remove_intermediates (0);
3006 if (print_data_base_flag)
3007 print_data_base ();
3009 /* Sanity: have we written all our jobserver tokens back? If our
3010 exit status is 2 that means some kind of syntax error; we might not
3011 have written all our tokens so do that now. If tokens are left
3012 after any other error code, that's bad. */
3014 if (job_fds[0] != -1 && jobserver_tokens)
3016 if (status != 2)
3017 error (NILF,
3018 "INTERNAL: Exiting with %u jobserver tokens (should be 0)!",
3019 jobserver_tokens);
3020 else
3021 while (jobserver_tokens--)
3023 int r;
3025 EINTRLOOP (r, write (job_fds[1], &token, 1));
3026 if (r != 1)
3027 perror_with_name ("write", "");
3032 /* Sanity: If we're the master, were all the tokens written back? */
3034 if (master_job_slots)
3036 /* We didn't write one for ourself, so start at 1. */
3037 unsigned int tcnt = 1;
3039 /* Close the write side, so the read() won't hang. */
3040 close (job_fds[1]);
3042 while ((err = read (job_fds[0], &token, 1)) == 1)
3043 ++tcnt;
3045 if (tcnt != master_job_slots)
3046 error (NILF,
3047 "INTERNAL: Exiting with %u jobserver tokens available; should be %u!",
3048 tcnt, master_job_slots);
3051 /* Try to move back to the original directory. This is essential on
3052 MS-DOS (where there is really only one process), and on Unix it
3053 puts core files in the original directory instead of the -C
3054 directory. Must wait until after remove_intermediates(), or unlinks
3055 of relative pathnames fail. */
3056 if (directory_before_chdir != 0)
3057 chdir (directory_before_chdir);
3059 log_working_directory (0);
3062 exit (status);
3065 /* Write a message indicating that we've just entered or
3066 left (according to ENTERING) the current directory. */
3068 void
3069 log_working_directory (int entering)
3071 static int entered = 0;
3073 /* Print nothing without the flag. Don't print the entering message
3074 again if we already have. Don't print the leaving message if we
3075 haven't printed the entering message. */
3076 if (! print_directory_flag || entering == entered)
3077 return;
3079 entered = entering;
3081 if (print_data_base_flag)
3082 fputs ("# ", stdout);
3084 /* Use entire sentences to give the translators a fighting chance. */
3086 if (makelevel == 0)
3087 if (starting_directory == 0)
3088 if (entering)
3089 printf (_("%s: Entering an unknown directory\n"), program);
3090 else
3091 printf (_("%s: Leaving an unknown directory\n"), program);
3092 else
3093 if (entering)
3094 printf (_("%s: Entering directory `%s'\n"),
3095 program, starting_directory);
3096 else
3097 printf (_("%s: Leaving directory `%s'\n"),
3098 program, starting_directory);
3099 else
3100 if (starting_directory == 0)
3101 if (entering)
3102 printf (_("%s[%u]: Entering an unknown directory\n"),
3103 program, makelevel);
3104 else
3105 printf (_("%s[%u]: Leaving an unknown directory\n"),
3106 program, makelevel);
3107 else
3108 if (entering)
3109 printf (_("%s[%u]: Entering directory `%s'\n"),
3110 program, makelevel, starting_directory);
3111 else
3112 printf (_("%s[%u]: Leaving directory `%s'\n"),
3113 program, makelevel, starting_directory);
3115 /* Flush stdout to be sure this comes before any stderr output. */
3116 fflush (stdout);