- Fix Savannah bug #21824: don't loop through NULL cmds pointer
[make.git] / main.c
blob1c308846588c6d07242c929a40bae09b829a479e
1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
4 Foundation, Inc.
5 This file is part of GNU Make.
7 GNU Make is free software; you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation; either version 3 of the License, or (at your option) any later
10 version.
12 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along with
17 this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "make.h"
20 #include "dep.h"
21 #include "filedef.h"
22 #include "variable.h"
23 #include "job.h"
24 #include "commands.h"
25 #include "rule.h"
26 #include "debug.h"
27 #include "getopt.h"
29 #include <assert.h>
30 #ifdef _AMIGA
31 # include <dos/dos.h>
32 # include <proto/dos.h>
33 #endif
34 #ifdef WINDOWS32
35 #include <windows.h>
36 #include <io.h>
37 #include "pathstuff.h"
38 #endif
39 #ifdef __EMX__
40 # include <sys/types.h>
41 # include <sys/wait.h>
42 #endif
43 #ifdef HAVE_FCNTL_H
44 # include <fcntl.h>
45 #endif
47 #ifdef _AMIGA
48 int __stack = 20000; /* Make sure we have 20K of stack space */
49 #endif
51 void init_dir (void);
52 void remote_setup (void);
53 void remote_cleanup (void);
54 RETSIGTYPE fatal_error_signal (int sig);
56 void print_variable_data_base (void);
57 void print_dir_data_base (void);
58 void print_rule_data_base (void);
59 void print_file_data_base (void);
60 void print_vpath_data_base (void);
62 void verify_file_data_base (void);
64 #if defined HAVE_WAITPID || defined HAVE_WAIT3
65 # define HAVE_WAIT_NOHANG
66 #endif
68 #ifndef HAVE_UNISTD_H
69 int chdir ();
70 #endif
71 #ifndef STDC_HEADERS
72 # ifndef sun /* Sun has an incorrect decl in a header. */
73 void exit (int) __attribute__ ((noreturn));
74 # endif
75 double atof ();
76 #endif
78 static void clean_jobserver (int status);
79 static void print_data_base (void);
80 static void print_version (void);
81 static void decode_switches (int argc, char **argv, int env);
82 static void decode_env_switches (char *envar, unsigned int len);
83 static const char *define_makeflags (int all, int makefile);
84 static char *quote_for_env (char *out, const char *in);
85 static void initialize_global_hash_tables (void);
88 /* The structure that describes an accepted command switch. */
90 struct command_switch
92 int c; /* The switch character. */
94 enum /* Type of the value. */
96 flag, /* Turn int flag on. */
97 flag_off, /* Turn int flag off. */
98 string, /* One string per switch. */
99 filename, /* A string containing a file name. */
100 positive_int, /* A positive integer. */
101 floating, /* A floating-point number (double). */
102 ignore /* Ignored. */
103 } type;
105 void *value_ptr; /* Pointer to the value-holding variable. */
107 unsigned int env:1; /* Can come from MAKEFLAGS. */
108 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
109 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
111 const void *noarg_value; /* Pointer to value used if no arg given. */
112 const void *default_value; /* Pointer to default value. */
114 char *long_name; /* Long option name. */
117 /* True if C is a switch value that corresponds to a short option. */
119 #define short_option(c) ((c) <= CHAR_MAX)
121 /* The structure used to hold the list of strings given
122 in command switches of a type that takes string arguments. */
124 struct stringlist
126 const char **list; /* Nil-terminated list of strings. */
127 unsigned int idx; /* Index into above. */
128 unsigned int max; /* Number of pointers allocated. */
132 /* The recognized command switches. */
134 /* Nonzero means do not print commands to be executed (-s). */
136 int silent_flag;
138 /* Nonzero means just touch the files
139 that would appear to need remaking (-t) */
141 int touch_flag;
143 /* Nonzero means just print what commands would need to be executed,
144 don't actually execute them (-n). */
146 int just_print_flag;
148 /* Print debugging info (--debug). */
150 static struct stringlist *db_flags;
151 static int debug_flag = 0;
153 int db_level = 0;
155 /* Output level (--verbosity). */
157 static struct stringlist *verbosity_flags;
159 #ifdef WINDOWS32
160 /* Suspend make in main for a short time to allow debugger to attach */
162 int suspend_flag = 0;
163 #endif
165 /* Environment variables override makefile definitions. */
167 int env_overrides = 0;
169 /* Nonzero means ignore status codes returned by commands
170 executed to remake files. Just treat them all as successful (-i). */
172 int ignore_errors_flag = 0;
174 /* Nonzero means don't remake anything, just print the data base
175 that results from reading the makefile (-p). */
177 int print_data_base_flag = 0;
179 /* Nonzero means don't remake anything; just return a nonzero status
180 if the specified targets are not up to date (-q). */
182 int question_flag = 0;
184 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
186 int no_builtin_rules_flag = 0;
187 int no_builtin_variables_flag = 0;
189 /* Nonzero means keep going even if remaking some file fails (-k). */
191 int keep_going_flag;
192 int default_keep_going_flag = 0;
194 /* Nonzero means check symlink mtimes. */
196 int check_symlink_flag = 0;
198 /* Nonzero means print directory before starting and when done (-w). */
200 int print_directory_flag = 0;
202 /* Nonzero means ignore print_directory_flag and never print the directory.
203 This is necessary because print_directory_flag is set implicitly. */
205 int inhibit_print_directory_flag = 0;
207 /* Nonzero means print version information. */
209 int print_version_flag = 0;
211 /* List of makefiles given with -f switches. */
213 static struct stringlist *makefiles = 0;
215 /* Size of the stack when we started. */
217 #ifdef SET_STACK_SIZE
218 struct rlimit stack_limit;
219 #endif
222 /* Number of job slots (commands that can be run at once). */
224 unsigned int job_slots = 1;
225 unsigned int default_job_slots = 1;
226 static unsigned int master_job_slots = 0;
228 /* Value of job_slots that means no limit. */
230 static unsigned int inf_jobs = 0;
232 /* File descriptors for the jobs pipe. */
234 static struct stringlist *jobserver_fds = 0;
236 int job_fds[2] = { -1, -1 };
237 int job_rfd = -1;
239 /* Maximum load average at which multiple jobs will be run.
240 Negative values mean unlimited, while zero means limit to
241 zero load (which could be useful to start infinite jobs remotely
242 but one at a time locally). */
243 #ifndef NO_FLOAT
244 double max_load_average = -1.0;
245 double default_load_average = -1.0;
246 #else
247 int max_load_average = -1;
248 int default_load_average = -1;
249 #endif
251 /* List of directories given with -C switches. */
253 static struct stringlist *directories = 0;
255 /* List of include directories given with -I switches. */
257 static struct stringlist *include_directories = 0;
259 /* List of files given with -o switches. */
261 static struct stringlist *old_files = 0;
263 /* List of files given with -W switches. */
265 static struct stringlist *new_files = 0;
267 /* If nonzero, we should just print usage and exit. */
269 static int print_usage_flag = 0;
271 /* If nonzero, we should print a warning message
272 for each reference to an undefined variable. */
274 int warn_undefined_variables_flag;
276 /* If nonzero, always build all targets, regardless of whether
277 they appear out of date or not. */
279 static int always_make_set = 0;
280 int always_make_flag = 0;
282 /* If nonzero, we're in the "try to rebuild makefiles" phase. */
284 int rebuilding_makefiles = 0;
286 /* Remember the original value of the SHELL variable, from the environment. */
288 struct variable shell_var;
290 /* This character introduces a command: it's the first char on the line. */
292 char cmd_prefix = '\t';
295 /* The usage output. We write it this way to make life easier for the
296 translators, especially those trying to translate to right-to-left
297 languages like Hebrew. */
299 static const char *const usage[] =
301 N_("Options:\n"),
302 N_("\
303 -b, -m Ignored for compatibility.\n"),
304 N_("\
305 -B, --always-make Unconditionally make all targets.\n"),
306 N_("\
307 -C DIRECTORY, --directory=DIRECTORY\n\
308 Change to DIRECTORY before doing anything.\n"),
309 N_("\
310 -d Print lots of debugging information.\n"),
311 N_("\
312 --debug[=FLAGS] Print various types of debugging information.\n"),
313 N_("\
314 -e, --environment-overrides\n\
315 Environment variables override makefiles.\n"),
316 N_("\
317 -f FILE, --file=FILE, --makefile=FILE\n\
318 Read FILE as a makefile.\n"),
319 N_("\
320 -h, --help Print this message and exit.\n"),
321 N_("\
322 -i, --ignore-errors Ignore errors from recipes.\n"),
323 N_("\
324 -I DIRECTORY, --include-dir=DIRECTORY\n\
325 Search DIRECTORY for included makefiles.\n"),
326 N_("\
327 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
328 N_("\
329 -k, --keep-going Keep going when some targets can't be made.\n"),
330 N_("\
331 -l [N], --load-average[=N], --max-load[=N]\n\
332 Don't start multiple jobs unless load is below N.\n"),
333 N_("\
334 -L, --check-symlink-times Use the latest mtime between symlinks and target.\n"),
335 N_("\
336 -n, --just-print, --dry-run, --recon\n\
337 Don't actually run any recipe; just print them.\n"),
338 N_("\
339 -o FILE, --old-file=FILE, --assume-old=FILE\n\
340 Consider FILE to be very old and don't remake it.\n"),
341 N_("\
342 -p, --print-data-base Print make's internal database.\n"),
343 N_("\
344 -q, --question Run no recipe; exit status says if up to date.\n"),
345 N_("\
346 -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
347 N_("\
348 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
349 N_("\
350 -s, --silent, --quiet Don't echo recipes.\n"),
351 N_("\
352 -S, --no-keep-going, --stop\n\
353 Turns off -k.\n"),
354 N_("\
355 -t, --touch Touch targets instead of remaking them.\n"),
356 N_("\
357 -v, --version Print the version number of make and exit.\n"),
358 N_("\
359 -w, --print-directory Print the current directory.\n"),
360 N_("\
361 --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
362 N_("\
363 -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
364 Consider FILE to be infinitely new.\n"),
365 N_("\
366 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
367 NULL
370 /* The table of command switches. */
372 static const struct command_switch switches[] =
374 { 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
375 { 'B', flag, &always_make_set, 1, 1, 0, 0, 0, "always-make" },
376 { 'C', filename, &directories, 0, 0, 0, 0, 0, "directory" },
377 { 'd', flag, &debug_flag, 1, 1, 0, 0, 0, 0 },
378 { CHAR_MAX+1, string, &db_flags, 1, 1, 0, "basic", 0, "debug" },
379 #ifdef WINDOWS32
380 { 'D', flag, &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
381 #endif
382 { 'e', flag, &env_overrides, 1, 1, 0, 0, 0, "environment-overrides", },
383 { 'f', filename, &makefiles, 0, 0, 0, 0, 0, "file" },
384 { 'h', flag, &print_usage_flag, 0, 0, 0, 0, 0, "help" },
385 { 'i', flag, &ignore_errors_flag, 1, 1, 0, 0, 0, "ignore-errors" },
386 { 'I', filename, &include_directories, 1, 1, 0, 0, 0,
387 "include-dir" },
388 { 'j', positive_int, &job_slots, 1, 1, 0, &inf_jobs, &default_job_slots,
389 "jobs" },
390 { CHAR_MAX+2, string, &jobserver_fds, 1, 1, 0, 0, 0, "jobserver-fds" },
391 { 'k', flag, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
392 "keep-going" },
393 #ifndef NO_FLOAT
394 { 'l', floating, &max_load_average, 1, 1, 0, &default_load_average,
395 &default_load_average, "load-average" },
396 #else
397 { 'l', positive_int, &max_load_average, 1, 1, 0, &default_load_average,
398 &default_load_average, "load-average" },
399 #endif
400 { 'L', flag, &check_symlink_flag, 1, 1, 0, 0, 0, "check-symlink-times" },
401 { 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
402 { 'n', flag, &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
403 { 'o', filename, &old_files, 0, 0, 0, 0, 0, "old-file" },
404 { 'p', flag, &print_data_base_flag, 1, 1, 0, 0, 0, "print-data-base" },
405 { 'q', flag, &question_flag, 1, 1, 1, 0, 0, "question" },
406 { 'r', flag, &no_builtin_rules_flag, 1, 1, 0, 0, 0, "no-builtin-rules" },
407 { 'R', flag, &no_builtin_variables_flag, 1, 1, 0, 0, 0,
408 "no-builtin-variables" },
409 { 's', flag, &silent_flag, 1, 1, 0, 0, 0, "silent" },
410 { 'S', flag_off, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
411 "no-keep-going" },
412 { 't', flag, &touch_flag, 1, 1, 1, 0, 0, "touch" },
413 { 'v', flag, &print_version_flag, 1, 1, 0, 0, 0, "version" },
414 { CHAR_MAX+3, string, &verbosity_flags, 1, 1, 0, 0, 0,
415 "verbosity" },
416 { 'w', flag, &print_directory_flag, 1, 1, 0, 0, 0, "print-directory" },
417 { CHAR_MAX+4, flag, &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
418 "no-print-directory" },
419 { 'W', filename, &new_files, 0, 0, 0, 0, 0, "what-if" },
420 { CHAR_MAX+5, flag, &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
421 "warn-undefined-variables" },
422 { 0, 0, 0, 0, 0, 0, 0, 0, 0 }
425 /* Secondary long names for options. */
427 static struct option long_option_aliases[] =
429 { "quiet", no_argument, 0, 's' },
430 { "stop", no_argument, 0, 'S' },
431 { "new-file", required_argument, 0, 'W' },
432 { "assume-new", required_argument, 0, 'W' },
433 { "assume-old", required_argument, 0, 'o' },
434 { "max-load", optional_argument, 0, 'l' },
435 { "dry-run", no_argument, 0, 'n' },
436 { "recon", no_argument, 0, 'n' },
437 { "makefile", required_argument, 0, 'f' },
440 /* List of goal targets. */
442 static struct dep *goals, *lastgoal;
444 /* List of variables which were defined on the command line
445 (or, equivalently, in MAKEFLAGS). */
447 struct command_variable
449 struct command_variable *next;
450 struct variable *variable;
452 static struct command_variable *command_variables;
454 /* The name we were invoked with. */
456 char *program;
458 /* Our current directory before processing any -C options. */
460 char *directory_before_chdir;
462 /* Our current directory after processing all -C options. */
464 char *starting_directory;
466 /* Value of the MAKELEVEL variable at startup (or 0). */
468 unsigned int makelevel;
470 /* Pointer to the value of the .DEFAULT_GOAL special variable.
471 The value will be the name of the goal to remake if the command line
472 does not override it. It can be set by the makefile, or else it's
473 the first target defined in the makefile whose name does not start
474 with '.'. */
476 struct variable * default_goal_var;
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 '.SECONDEXPANSION' target.
490 This turns on secondary expansion of prerequisites. */
492 int second_expansion;
494 /* Nonzero if we have seen the `.NOTPARALLEL' target.
495 This turns off parallel builds for this invocation of make. */
497 int not_parallel;
499 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
500 print one warning about it during the run, and (b) we can print a final
501 warning at the end of the run. */
503 int clock_skew_detected;
505 /* Mask of signals that are being caught with fatal_error_signal. */
507 #ifdef POSIX
508 sigset_t fatal_signal_set;
509 #else
510 # ifdef HAVE_SIGSETMASK
511 int fatal_signal_mask;
512 # endif
513 #endif
515 #if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
516 # if !defined HAVE_SIGACTION
517 # define bsd_signal signal
518 # else
519 typedef RETSIGTYPE (*bsd_signal_ret_t) (int);
521 static bsd_signal_ret_t
522 bsd_signal (int sig, bsd_signal_ret_t func)
524 struct sigaction act, oact;
525 act.sa_handler = func;
526 act.sa_flags = SA_RESTART;
527 sigemptyset (&act.sa_mask);
528 sigaddset (&act.sa_mask, sig);
529 if (sigaction (sig, &act, &oact) != 0)
530 return SIG_ERR;
531 return oact.sa_handler;
533 # endif
534 #endif
536 static void
537 initialize_global_hash_tables (void)
539 init_hash_global_variable_set ();
540 strcache_init ();
541 init_hash_files ();
542 hash_init_directories ();
543 hash_init_function_table ();
546 static const char *
547 expand_command_line_file (char *name)
549 const char *cp;
550 char *expanded = 0;
552 if (name[0] == '\0')
553 fatal (NILF, _("empty string invalid as file name"));
555 if (name[0] == '~')
557 expanded = tilde_expand (name);
558 if (expanded != 0)
559 name = expanded;
562 /* This is also done in parse_file_seq, so this is redundant
563 for names read from makefiles. It is here for names passed
564 on the command line. */
565 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
567 name += 2;
568 while (*name == '/')
569 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
570 ++name;
573 if (*name == '\0')
575 /* It was all slashes! Move back to the dot and truncate
576 it after the first slash, so it becomes just "./". */
578 --name;
579 while (name[0] != '.');
580 name[2] = '\0';
583 cp = strcache_add (name);
585 if (expanded)
586 free (expanded);
588 return cp;
591 /* Toggle -d on receipt of SIGUSR1. */
593 #ifdef SIGUSR1
594 static RETSIGTYPE
595 debug_signal_handler (int sig UNUSED)
597 db_level = db_level ? DB_NONE : DB_BASIC;
599 #endif
601 static void
602 decode_debug_flags (void)
604 const char **pp;
606 if (debug_flag)
607 db_level = DB_ALL;
609 if (!db_flags)
610 return;
612 for (pp=db_flags->list; *pp; ++pp)
614 const char *p = *pp;
616 while (1)
618 switch (tolower (p[0]))
620 case 'a':
621 db_level |= DB_ALL;
622 break;
623 case 'b':
624 db_level |= DB_BASIC;
625 break;
626 case 'i':
627 db_level |= DB_BASIC | DB_IMPLICIT;
628 break;
629 case 'j':
630 db_level |= DB_JOBS;
631 break;
632 case 'm':
633 db_level |= DB_BASIC | DB_MAKEFILES;
634 break;
635 case 'v':
636 db_level |= DB_BASIC | DB_VERBOSE;
637 break;
638 default:
639 fatal (NILF, _("unknown debug level specification `%s'"), p);
642 while (*(++p) != '\0')
643 if (*p == ',' || *p == ' ')
644 break;
646 if (*p == '\0')
647 break;
649 ++p;
654 #ifdef WINDOWS32
656 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
657 * exception and print it to stderr instead.
659 * If ! DB_VERBOSE, just print a simple message and exit.
660 * If DB_VERBOSE, print a more verbose message.
661 * If compiled for DEBUG, let exception pass through to GUI so that
662 * debuggers can attach.
664 LONG WINAPI
665 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
667 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
668 LPSTR cmdline = GetCommandLine();
669 LPSTR prg = strtok(cmdline, " ");
670 CHAR errmsg[1024];
671 #ifdef USE_EVENT_LOG
672 HANDLE hEventSource;
673 LPTSTR lpszStrings[1];
674 #endif
676 if (! ISDB (DB_VERBOSE))
678 sprintf(errmsg,
679 _("%s: Interrupt/Exception caught (code = 0x%lx, addr = 0x%lx)\n"),
680 prg, exrec->ExceptionCode, (DWORD)exrec->ExceptionAddress);
681 fprintf(stderr, errmsg);
682 exit(255);
685 sprintf(errmsg,
686 _("\nUnhandled exception filter called from program %s\nExceptionCode = %lx\nExceptionFlags = %lx\nExceptionAddress = %lx\n"),
687 prg, exrec->ExceptionCode, exrec->ExceptionFlags,
688 (DWORD)exrec->ExceptionAddress);
690 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
691 && exrec->NumberParameters >= 2)
692 sprintf(&errmsg[strlen(errmsg)],
693 (exrec->ExceptionInformation[0]
694 ? _("Access violation: write operation at address %lx\n")
695 : _("Access violation: read operation at address %lx\n")),
696 exrec->ExceptionInformation[1]);
698 /* turn this on if we want to put stuff in the event log too */
699 #ifdef USE_EVENT_LOG
700 hEventSource = RegisterEventSource(NULL, "GNU Make");
701 lpszStrings[0] = errmsg;
703 if (hEventSource != NULL)
705 ReportEvent(hEventSource, /* handle of event source */
706 EVENTLOG_ERROR_TYPE, /* event type */
707 0, /* event category */
708 0, /* event ID */
709 NULL, /* current user's SID */
710 1, /* strings in lpszStrings */
711 0, /* no bytes of raw data */
712 lpszStrings, /* array of error strings */
713 NULL); /* no raw data */
715 (VOID) DeregisterEventSource(hEventSource);
717 #endif
719 /* Write the error to stderr too */
720 fprintf(stderr, errmsg);
722 #ifdef DEBUG
723 return EXCEPTION_CONTINUE_SEARCH;
724 #else
725 exit(255);
726 return (255); /* not reached */
727 #endif
731 * On WIN32 systems we don't have the luxury of a /bin directory that
732 * is mapped globally to every drive mounted to the system. Since make could
733 * be invoked from any drive, and we don't want to propogate /bin/sh
734 * to every single drive. Allow ourselves a chance to search for
735 * a value for default shell here (if the default path does not exist).
739 find_and_set_default_shell (const char *token)
741 int sh_found = 0;
742 char *atoken = 0;
743 char *search_token;
744 char *tokend;
745 PATH_VAR(sh_path);
746 extern char *default_shell;
748 if (!token)
749 search_token = default_shell;
750 else
751 atoken = search_token = xstrdup (token);
753 /* If the user explicitly requests the DOS cmd shell, obey that request.
754 However, make sure that's what they really want by requiring the value
755 of SHELL either equal, or have a final path element of, "cmd" or
756 "cmd.exe" case-insensitive. */
757 tokend = search_token + strlen (search_token) - 3;
758 if (((tokend == search_token
759 || (tokend > search_token
760 && (tokend[-1] == '/' || tokend[-1] == '\\')))
761 && !strcasecmp (tokend, "cmd"))
762 || ((tokend - 4 == search_token
763 || (tokend - 4 > search_token
764 && (tokend[-5] == '/' || tokend[-5] == '\\')))
765 && !strcasecmp (tokend - 4, "cmd.exe"))) {
766 batch_mode_shell = 1;
767 unixy_shell = 0;
768 sprintf (sh_path, "%s", search_token);
769 default_shell = xstrdup (w32ify (sh_path, 0));
770 DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
771 default_shell));
772 sh_found = 1;
773 } else if (!no_default_sh_exe &&
774 (token == NULL || !strcmp (search_token, default_shell))) {
775 /* no new information, path already set or known */
776 sh_found = 1;
777 } else if (file_exists_p (search_token)) {
778 /* search token path was found */
779 sprintf (sh_path, "%s", search_token);
780 default_shell = xstrdup (w32ify (sh_path, 0));
781 DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
782 default_shell));
783 sh_found = 1;
784 } else {
785 char *p;
786 struct variable *v = lookup_variable (STRING_SIZE_TUPLE ("PATH"));
788 /* Search Path for shell */
789 if (v && v->value) {
790 char *ep;
792 p = v->value;
793 ep = strchr (p, PATH_SEPARATOR_CHAR);
795 while (ep && *ep) {
796 *ep = '\0';
798 if (dir_file_exists_p (p, search_token)) {
799 sprintf (sh_path, "%s/%s", p, search_token);
800 default_shell = xstrdup (w32ify (sh_path, 0));
801 sh_found = 1;
802 *ep = PATH_SEPARATOR_CHAR;
804 /* terminate loop */
805 p += strlen (p);
806 } else {
807 *ep = PATH_SEPARATOR_CHAR;
808 p = ++ep;
811 ep = strchr (p, PATH_SEPARATOR_CHAR);
814 /* be sure to check last element of Path */
815 if (p && *p && dir_file_exists_p (p, search_token)) {
816 sprintf (sh_path, "%s/%s", p, search_token);
817 default_shell = xstrdup (w32ify (sh_path, 0));
818 sh_found = 1;
821 if (sh_found)
822 DB (DB_VERBOSE,
823 (_("find_and_set_shell() path search set default_shell = %s\n"),
824 default_shell));
828 /* naive test */
829 if (!unixy_shell && sh_found &&
830 (strstr (default_shell, "sh") || strstr (default_shell, "SH"))) {
831 unixy_shell = 1;
832 batch_mode_shell = 0;
835 #ifdef BATCH_MODE_ONLY_SHELL
836 batch_mode_shell = 1;
837 #endif
839 if (atoken)
840 free (atoken);
842 return (sh_found);
844 #endif /* WINDOWS32 */
846 #ifdef __MSDOS__
847 static void
848 msdos_return_to_initial_directory (void)
850 if (directory_before_chdir)
851 chdir (directory_before_chdir);
853 #endif /* __MSDOS__ */
855 char *mktemp (char *template);
856 int mkstemp (char *template);
858 FILE *
859 open_tmpfile(char **name, const char *template)
861 #ifdef HAVE_FDOPEN
862 int fd;
863 #endif
865 #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
866 # define TEMPLATE_LEN strlen (template)
867 #else
868 # define TEMPLATE_LEN L_tmpnam
869 #endif
870 *name = xmalloc (TEMPLATE_LEN + 1);
871 strcpy (*name, template);
873 #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
874 /* It's safest to use mkstemp(), if we can. */
875 fd = mkstemp (*name);
876 if (fd == -1)
877 return 0;
878 return fdopen (fd, "w");
879 #else
880 # ifdef HAVE_MKTEMP
881 (void) mktemp (*name);
882 # else
883 (void) tmpnam (*name);
884 # endif
886 # ifdef HAVE_FDOPEN
887 /* Can't use mkstemp(), but guard against a race condition. */
888 fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
889 if (fd == -1)
890 return 0;
891 return fdopen (fd, "w");
892 # else
893 /* Not secure, but what can we do? */
894 return fopen (*name, "w");
895 # endif
896 #endif
900 #ifdef _AMIGA
902 main (int argc, char **argv)
903 #else
905 main (int argc, char **argv, char **envp)
906 #endif
908 static char *stdin_nm = 0;
909 int makefile_status = MAKE_SUCCESS;
910 struct dep *read_makefiles;
911 PATH_VAR (current_directory);
912 unsigned int restarts = 0;
913 #ifdef WINDOWS32
914 char *unix_path = NULL;
915 char *windows32_path = NULL;
917 SetUnhandledExceptionFilter(handle_runtime_exceptions);
919 /* start off assuming we have no shell */
920 unixy_shell = 0;
921 no_default_sh_exe = 1;
922 #endif
924 #ifdef SET_STACK_SIZE
925 /* Get rid of any avoidable limit on stack size. */
927 struct rlimit rlim;
929 /* Set the stack limit huge so that alloca does not fail. */
930 if (getrlimit (RLIMIT_STACK, &rlim) == 0
931 && rlim.rlim_cur > 0 && rlim.rlim_cur < rlim.rlim_max)
933 stack_limit = rlim;
934 rlim.rlim_cur = rlim.rlim_max;
935 setrlimit (RLIMIT_STACK, &rlim);
937 else
938 stack_limit.rlim_cur = 0;
940 #endif
942 #ifdef HAVE_ATEXIT
943 atexit (close_stdout);
944 #endif
946 /* Needed for OS/2 */
947 initialize_main(&argc, &argv);
949 reading_file = 0;
951 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
952 /* Request the most powerful version of `system', to
953 make up for the dumb default shell. */
954 __system_flags = (__system_redirect
955 | __system_use_shell
956 | __system_allow_multiple_cmds
957 | __system_allow_long_cmds
958 | __system_handle_null_commands
959 | __system_emulate_chdir);
961 #endif
963 /* Set up gettext/internationalization support. */
964 setlocale (LC_ALL, "");
965 bindtextdomain (PACKAGE, LOCALEDIR);
966 textdomain (PACKAGE);
968 #ifdef POSIX
969 sigemptyset (&fatal_signal_set);
970 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
971 #else
972 #ifdef HAVE_SIGSETMASK
973 fatal_signal_mask = 0;
974 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
975 #else
976 #define ADD_SIG(sig)
977 #endif
978 #endif
980 #define FATAL_SIG(sig) \
981 if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
982 bsd_signal (sig, SIG_IGN); \
983 else \
984 ADD_SIG (sig);
986 #ifdef SIGHUP
987 FATAL_SIG (SIGHUP);
988 #endif
989 #ifdef SIGQUIT
990 FATAL_SIG (SIGQUIT);
991 #endif
992 FATAL_SIG (SIGINT);
993 FATAL_SIG (SIGTERM);
995 #ifdef __MSDOS__
996 /* Windows 9X delivers FP exceptions in child programs to their
997 parent! We don't want Make to die when a child divides by zero,
998 so we work around that lossage by catching SIGFPE. */
999 FATAL_SIG (SIGFPE);
1000 #endif
1002 #ifdef SIGDANGER
1003 FATAL_SIG (SIGDANGER);
1004 #endif
1005 #ifdef SIGXCPU
1006 FATAL_SIG (SIGXCPU);
1007 #endif
1008 #ifdef SIGXFSZ
1009 FATAL_SIG (SIGXFSZ);
1010 #endif
1012 #undef FATAL_SIG
1014 /* Do not ignore the child-death signal. This must be done before
1015 any children could possibly be created; otherwise, the wait
1016 functions won't work on systems with the SVR4 ECHILD brain
1017 damage, if our invoker is ignoring this signal. */
1019 #ifdef HAVE_WAIT_NOHANG
1020 # if defined SIGCHLD
1021 (void) bsd_signal (SIGCHLD, SIG_DFL);
1022 # endif
1023 # if defined SIGCLD && SIGCLD != SIGCHLD
1024 (void) bsd_signal (SIGCLD, SIG_DFL);
1025 # endif
1026 #endif
1028 /* Make sure stdout is line-buffered. */
1030 #ifdef HAVE_SETVBUF
1031 # ifdef SETVBUF_REVERSED
1032 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
1033 # else /* setvbuf not reversed. */
1034 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
1035 setvbuf (stdout, 0, _IOLBF, BUFSIZ);
1036 # endif /* setvbuf reversed. */
1037 #elif HAVE_SETLINEBUF
1038 setlinebuf (stdout);
1039 #endif /* setlinebuf missing. */
1041 /* Figure out where this program lives. */
1043 if (argv[0] == 0)
1044 argv[0] = "";
1045 if (argv[0][0] == '\0')
1046 program = "make";
1047 else
1049 #ifdef VMS
1050 program = strrchr (argv[0], ']');
1051 #else
1052 program = strrchr (argv[0], '/');
1053 #endif
1054 #if defined(__MSDOS__) || defined(__EMX__)
1055 if (program == 0)
1056 program = strrchr (argv[0], '\\');
1057 else
1059 /* Some weird environments might pass us argv[0] with
1060 both kinds of slashes; we must find the rightmost. */
1061 char *p = strrchr (argv[0], '\\');
1062 if (p && p > program)
1063 program = p;
1065 if (program == 0 && argv[0][1] == ':')
1066 program = argv[0] + 1;
1067 #endif
1068 #ifdef WINDOWS32
1069 if (program == 0)
1071 /* Extract program from full path */
1072 int argv0_len;
1073 program = strrchr (argv[0], '\\');
1074 if (program)
1076 argv0_len = strlen(program);
1077 if (argv0_len > 4 && streq (&program[argv0_len - 4], ".exe"))
1078 /* Remove .exe extension */
1079 program[argv0_len - 4] = '\0';
1082 #endif
1083 if (program == 0)
1084 program = argv[0];
1085 else
1086 ++program;
1089 /* Set up to access user data (files). */
1090 user_access ();
1092 initialize_global_hash_tables ();
1094 /* Figure out where we are. */
1096 #ifdef WINDOWS32
1097 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1098 #else
1099 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1100 #endif
1102 #ifdef HAVE_GETCWD
1103 perror_with_name ("getcwd", "");
1104 #else
1105 error (NILF, "getwd: %s", current_directory);
1106 #endif
1107 current_directory[0] = '\0';
1108 directory_before_chdir = 0;
1110 else
1111 directory_before_chdir = xstrdup (current_directory);
1112 #ifdef __MSDOS__
1113 /* Make sure we will return to the initial directory, come what may. */
1114 atexit (msdos_return_to_initial_directory);
1115 #endif
1117 /* Initialize the special variables. */
1118 define_variable (".VARIABLES", 10, "", o_default, 0)->special = 1;
1119 /* define_variable (".TARGETS", 8, "", o_default, 0)->special = 1; */
1120 define_variable (".RECIPEPREFIX", 13, "", o_default, 0)->special = 1;
1122 /* Set up .FEATURES */
1123 define_variable (".FEATURES", 9,
1124 "target-specific order-only second-expansion else-if",
1125 o_default, 0);
1126 #ifndef NO_ARCHIVES
1127 do_variable_definition (NILF, ".FEATURES", "archives",
1128 o_default, f_append, 0);
1129 #endif
1130 #ifdef MAKE_JOBSERVER
1131 do_variable_definition (NILF, ".FEATURES", "jobserver",
1132 o_default, f_append, 0);
1133 #endif
1134 #ifdef MAKE_SYMLINKS
1135 do_variable_definition (NILF, ".FEATURES", "check-symlink",
1136 o_default, f_append, 0);
1137 #endif
1139 /* Read in variables from the environment. It is important that this be
1140 done before $(MAKE) is figured out so its definitions will not be
1141 from the environment. */
1143 #ifndef _AMIGA
1145 unsigned int i;
1147 for (i = 0; envp[i] != 0; ++i)
1149 int do_not_define = 0;
1150 char *ep = envp[i];
1152 while (*ep != '\0' && *ep != '=')
1153 ++ep;
1154 #ifdef WINDOWS32
1155 if (!unix_path && strneq(envp[i], "PATH=", 5))
1156 unix_path = ep+1;
1157 else if (!strnicmp(envp[i], "Path=", 5)) {
1158 do_not_define = 1; /* it gets defined after loop exits */
1159 if (!windows32_path)
1160 windows32_path = ep+1;
1162 #endif
1163 /* The result of pointer arithmetic is cast to unsigned int for
1164 machines where ptrdiff_t is a different size that doesn't widen
1165 the same. */
1166 if (!do_not_define)
1168 struct variable *v;
1170 v = define_variable (envp[i], (unsigned int) (ep - envp[i]),
1171 ep + 1, o_env, 1);
1172 /* Force exportation of every variable culled from the
1173 environment. We used to rely on target_environment's
1174 v_default code to do this. But that does not work for the
1175 case where an environment variable is redefined in a makefile
1176 with `override'; it should then still be exported, because it
1177 was originally in the environment. */
1178 v->export = v_export;
1180 /* Another wrinkle is that POSIX says the value of SHELL set in
1181 the makefile won't change the value of SHELL given to
1182 subprocesses. */
1183 if (streq (v->name, "SHELL"))
1185 #ifndef __MSDOS__
1186 v->export = v_noexport;
1187 #endif
1188 shell_var.name = "SHELL";
1189 shell_var.length = 5;
1190 shell_var.value = xstrdup (ep + 1);
1193 /* If MAKE_RESTARTS is set, remember it but don't export it. */
1194 if (streq (v->name, "MAKE_RESTARTS"))
1196 v->export = v_noexport;
1197 restarts = (unsigned int) atoi (ep + 1);
1202 #ifdef WINDOWS32
1203 /* If we didn't find a correctly spelled PATH we define PATH as
1204 * either the first mispelled value or an empty string
1206 if (!unix_path)
1207 define_variable("PATH", 4,
1208 windows32_path ? windows32_path : "",
1209 o_env, 1)->export = v_export;
1210 #endif
1211 #else /* For Amiga, read the ENV: device, ignoring all dirs */
1213 BPTR env, file, old;
1214 char buffer[1024];
1215 int len;
1216 __aligned struct FileInfoBlock fib;
1218 env = Lock ("ENV:", ACCESS_READ);
1219 if (env)
1221 old = CurrentDir (DupLock(env));
1222 Examine (env, &fib);
1224 while (ExNext (env, &fib))
1226 if (fib.fib_DirEntryType < 0) /* File */
1228 /* Define an empty variable. It will be filled in
1229 variable_lookup(). Makes startup quite a bit
1230 faster. */
1231 define_variable (fib.fib_FileName,
1232 strlen (fib.fib_FileName),
1233 "", o_env, 1)->export = v_export;
1236 UnLock (env);
1237 UnLock(CurrentDir(old));
1240 #endif
1242 /* Decode the switches. */
1244 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1245 #if 0
1246 /* People write things like:
1247 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
1248 and we set the -p, -i and -e switches. Doesn't seem quite right. */
1249 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1250 #endif
1251 decode_switches (argc, argv, 0);
1252 #ifdef WINDOWS32
1253 if (suspend_flag) {
1254 fprintf(stderr, "%s (pid = %ld)\n", argv[0], GetCurrentProcessId());
1255 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
1256 Sleep(30 * 1000);
1257 fprintf(stderr, _("done sleep(30). Continuing.\n"));
1259 #endif
1261 decode_debug_flags ();
1263 /* Set always_make_flag if -B was given and we've not restarted already. */
1264 always_make_flag = always_make_set && (restarts == 0);
1266 /* Print version information. */
1267 if (print_version_flag || print_data_base_flag || db_level)
1269 print_version ();
1271 /* `make --version' is supposed to just print the version and exit. */
1272 if (print_version_flag)
1273 die (0);
1276 #ifndef VMS
1277 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
1278 (If it is a relative pathname with a slash, prepend our directory name
1279 so the result will run the same program regardless of the current dir.
1280 If it is a name with no slash, we can only hope that PATH did not
1281 find it in the current directory.) */
1282 #ifdef WINDOWS32
1284 * Convert from backslashes to forward slashes for
1285 * programs like sh which don't like them. Shouldn't
1286 * matter if the path is one way or the other for
1287 * CreateProcess().
1289 if (strpbrk(argv[0], "/:\\") ||
1290 strstr(argv[0], "..") ||
1291 strneq(argv[0], "//", 2))
1292 argv[0] = xstrdup(w32ify(argv[0],1));
1293 #else /* WINDOWS32 */
1294 #if defined (__MSDOS__) || defined (__EMX__)
1295 if (strchr (argv[0], '\\'))
1297 char *p;
1299 argv[0] = xstrdup (argv[0]);
1300 for (p = argv[0]; *p; p++)
1301 if (*p == '\\')
1302 *p = '/';
1304 /* If argv[0] is not in absolute form, prepend the current
1305 directory. This can happen when Make is invoked by another DJGPP
1306 program that uses a non-absolute name. */
1307 if (current_directory[0] != '\0'
1308 && argv[0] != 0
1309 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':'))
1310 # ifdef __EMX__
1311 /* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
1312 && (strchr (argv[0], '/') != 0 || strchr (argv[0], '\\') != 0)
1313 # endif
1315 argv[0] = xstrdup (concat (current_directory, "/", argv[0]));
1316 #else /* !__MSDOS__ */
1317 if (current_directory[0] != '\0'
1318 && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0
1319 #ifdef HAVE_DOS_PATHS
1320 && (argv[0][0] != '\\' && (!argv[0][0] || argv[0][1] != ':'))
1321 && strchr (argv[0], '\\') != 0
1322 #endif
1324 argv[0] = xstrdup (concat (current_directory, "/", argv[0]));
1325 #endif /* !__MSDOS__ */
1326 #endif /* WINDOWS32 */
1327 #endif
1329 /* The extra indirection through $(MAKE_COMMAND) is done
1330 for hysterical raisins. */
1331 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
1332 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
1334 if (command_variables != 0)
1336 struct command_variable *cv;
1337 struct variable *v;
1338 unsigned int len = 0;
1339 char *value, *p;
1341 /* Figure out how much space will be taken up by the command-line
1342 variable definitions. */
1343 for (cv = command_variables; cv != 0; cv = cv->next)
1345 v = cv->variable;
1346 len += 2 * strlen (v->name);
1347 if (! v->recursive)
1348 ++len;
1349 ++len;
1350 len += 2 * strlen (v->value);
1351 ++len;
1354 /* Now allocate a buffer big enough and fill it. */
1355 p = value = alloca (len);
1356 for (cv = command_variables; cv != 0; cv = cv->next)
1358 v = cv->variable;
1359 p = quote_for_env (p, v->name);
1360 if (! v->recursive)
1361 *p++ = ':';
1362 *p++ = '=';
1363 p = quote_for_env (p, v->value);
1364 *p++ = ' ';
1366 p[-1] = '\0'; /* Kill the final space and terminate. */
1368 /* Define an unchangeable variable with a name that no POSIX.2
1369 makefile could validly use for its own variable. */
1370 (void) define_variable ("-*-command-variables-*-", 23,
1371 value, o_automatic, 0);
1373 /* Define the variable; this will not override any user definition.
1374 Normally a reference to this variable is written into the value of
1375 MAKEFLAGS, allowing the user to override this value to affect the
1376 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1377 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1378 a reference to this hidden variable is written instead. */
1379 (void) define_variable ("MAKEOVERRIDES", 13,
1380 "${-*-command-variables-*-}", o_env, 1);
1383 /* If there were -C flags, move ourselves about. */
1384 if (directories != 0)
1386 unsigned int i;
1387 for (i = 0; directories->list[i] != 0; ++i)
1389 const char *dir = directories->list[i];
1390 #ifdef WINDOWS32
1391 /* WINDOWS32 chdir() doesn't work if the directory has a trailing '/'
1392 But allow -C/ just in case someone wants that. */
1394 char *p = dir + strlen (dir) - 1;
1395 while (p > dir && (p[0] == '/' || p[0] == '\\'))
1396 --p;
1397 p[1] = '\0';
1399 #endif
1400 if (chdir (dir) < 0)
1401 pfatal_with_name (dir);
1405 #ifdef WINDOWS32
1407 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1408 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1410 * The functions in dir.c can incorrectly cache information for "."
1411 * before we have changed directory and this can cause file
1412 * lookups to fail because the current directory (.) was pointing
1413 * at the wrong place when it was first evaluated.
1415 no_default_sh_exe = !find_and_set_default_shell(NULL);
1417 #endif /* WINDOWS32 */
1418 /* Figure out the level of recursion. */
1420 struct variable *v = lookup_variable (STRING_SIZE_TUPLE (MAKELEVEL_NAME));
1421 if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
1422 makelevel = (unsigned int) atoi (v->value);
1423 else
1424 makelevel = 0;
1427 /* Except under -s, always do -w in sub-makes and under -C. */
1428 if (!silent_flag && (directories != 0 || makelevel > 0))
1429 print_directory_flag = 1;
1431 /* Let the user disable that with --no-print-directory. */
1432 if (inhibit_print_directory_flag)
1433 print_directory_flag = 0;
1435 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1436 if (no_builtin_variables_flag)
1437 no_builtin_rules_flag = 1;
1439 /* Construct the list of include directories to search. */
1441 construct_include_path (include_directories == 0
1442 ? 0 : include_directories->list);
1444 /* Figure out where we are now, after chdir'ing. */
1445 if (directories == 0)
1446 /* We didn't move, so we're still in the same place. */
1447 starting_directory = current_directory;
1448 else
1450 #ifdef WINDOWS32
1451 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1452 #else
1453 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1454 #endif
1456 #ifdef HAVE_GETCWD
1457 perror_with_name ("getcwd", "");
1458 #else
1459 error (NILF, "getwd: %s", current_directory);
1460 #endif
1461 starting_directory = 0;
1463 else
1464 starting_directory = current_directory;
1467 (void) define_variable ("CURDIR", 6, current_directory, o_file, 0);
1469 /* Read any stdin makefiles into temporary files. */
1471 if (makefiles != 0)
1473 unsigned int i;
1474 for (i = 0; i < makefiles->idx; ++i)
1475 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1477 /* This makefile is standard input. Since we may re-exec
1478 and thus re-read the makefiles, we read standard input
1479 into a temporary file and read from that. */
1480 FILE *outfile;
1481 char *template, *tmpdir;
1483 if (stdin_nm)
1484 fatal (NILF, _("Makefile from standard input specified twice."));
1486 #ifdef VMS
1487 # define DEFAULT_TMPDIR "sys$scratch:"
1488 #else
1489 # ifdef P_tmpdir
1490 # define DEFAULT_TMPDIR P_tmpdir
1491 # else
1492 # define DEFAULT_TMPDIR "/tmp"
1493 # endif
1494 #endif
1495 #define DEFAULT_TMPFILE "GmXXXXXX"
1497 if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
1498 #if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
1499 /* These are also used commonly on these platforms. */
1500 && ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
1501 && ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
1502 #endif
1504 tmpdir = DEFAULT_TMPDIR;
1506 template = alloca (strlen (tmpdir) + sizeof (DEFAULT_TMPFILE) + 1);
1507 strcpy (template, tmpdir);
1509 #ifdef HAVE_DOS_PATHS
1510 if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
1511 strcat (template, "/");
1512 #else
1513 # ifndef VMS
1514 if (template[strlen (template) - 1] != '/')
1515 strcat (template, "/");
1516 # endif /* !VMS */
1517 #endif /* !HAVE_DOS_PATHS */
1519 strcat (template, DEFAULT_TMPFILE);
1520 outfile = open_tmpfile (&stdin_nm, template);
1521 if (outfile == 0)
1522 pfatal_with_name (_("fopen (temporary file)"));
1523 while (!feof (stdin) && ! ferror (stdin))
1525 char buf[2048];
1526 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1527 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1528 pfatal_with_name (_("fwrite (temporary file)"));
1530 fclose (outfile);
1532 /* Replace the name that read_all_makefiles will
1533 see with the name of the temporary file. */
1534 makefiles->list[i] = strcache_add (stdin_nm);
1536 /* Make sure the temporary file will not be remade. */
1538 struct file *f = enter_file (strcache_add (stdin_nm));
1539 f->updated = 1;
1540 f->update_status = 0;
1541 f->command_state = cs_finished;
1542 /* Can't be intermediate, or it'll be removed too early for
1543 make re-exec. */
1544 f->intermediate = 0;
1545 f->dontcare = 0;
1550 #ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
1551 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1552 /* Set up to handle children dying. This must be done before
1553 reading in the makefiles so that `shell' function calls will work.
1555 If we don't have a hanging wait we have to fall back to old, broken
1556 functionality here and rely on the signal handler and counting
1557 children.
1559 If we're using the jobs pipe we need a signal handler so that
1560 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1561 jobserver pipe in job.c if we're waiting for a token.
1563 If none of these are true, we don't need a signal handler at all. */
1565 RETSIGTYPE child_handler (int sig);
1566 # if defined SIGCHLD
1567 bsd_signal (SIGCHLD, child_handler);
1568 # endif
1569 # if defined SIGCLD && SIGCLD != SIGCHLD
1570 bsd_signal (SIGCLD, child_handler);
1571 # endif
1573 #endif
1574 #endif
1576 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1577 #ifdef SIGUSR1
1578 bsd_signal (SIGUSR1, debug_signal_handler);
1579 #endif
1581 /* Define the initial list of suffixes for old-style rules. */
1583 set_default_suffixes ();
1585 /* Define the file rules for the built-in suffix rules. These will later
1586 be converted into pattern rules. We used to do this in
1587 install_default_implicit_rules, but since that happens after reading
1588 makefiles, it results in the built-in pattern rules taking precedence
1589 over makefile-specified suffix rules, which is wrong. */
1591 install_default_suffix_rules ();
1593 /* Define some internal and special variables. */
1595 define_automatic_variables ();
1597 /* Set up the MAKEFLAGS and MFLAGS variables
1598 so makefiles can look at them. */
1600 define_makeflags (0, 0);
1602 /* Define the default variables. */
1603 define_default_variables ();
1605 default_file = enter_file (strcache_add (".DEFAULT"));
1607 default_goal_var = define_variable (".DEFAULT_GOAL", 13, "", o_file, 0);
1609 /* Read all the makefiles. */
1611 read_makefiles
1612 = read_all_makefiles (makefiles == 0 ? 0 : makefiles->list);
1614 #ifdef WINDOWS32
1615 /* look one last time after reading all Makefiles */
1616 if (no_default_sh_exe)
1617 no_default_sh_exe = !find_and_set_default_shell(NULL);
1618 #endif /* WINDOWS32 */
1620 #if defined (__MSDOS__) || defined (__EMX__)
1621 /* We need to know what kind of shell we will be using. */
1623 extern int _is_unixy_shell (const char *_path);
1624 struct variable *shv = lookup_variable (STRING_SIZE_TUPLE ("SHELL"));
1625 extern int unixy_shell;
1626 extern char *default_shell;
1628 if (shv && *shv->value)
1630 char *shell_path = recursively_expand(shv);
1632 if (shell_path && _is_unixy_shell (shell_path))
1633 unixy_shell = 1;
1634 else
1635 unixy_shell = 0;
1636 if (shell_path)
1637 default_shell = shell_path;
1640 #endif /* __MSDOS__ || __EMX__ */
1642 /* Decode switches again, in case the variables were set by the makefile. */
1643 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1644 #if 0
1645 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1646 #endif
1648 #if defined (__MSDOS__) || defined (__EMX__)
1649 if (job_slots != 1
1650 # ifdef __EMX__
1651 && _osmode != OS2_MODE /* turn off -j if we are in DOS mode */
1652 # endif
1655 error (NILF,
1656 _("Parallel jobs (-j) are not supported on this platform."));
1657 error (NILF, _("Resetting to single job (-j1) mode."));
1658 job_slots = 1;
1660 #endif
1662 #ifdef MAKE_JOBSERVER
1663 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1665 if (jobserver_fds)
1667 const char *cp;
1668 unsigned int ui;
1670 for (ui=1; ui < jobserver_fds->idx; ++ui)
1671 if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui]))
1672 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1674 /* Now parse the fds string and make sure it has the proper format. */
1676 cp = jobserver_fds->list[0];
1678 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1679 fatal (NILF,
1680 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1682 DB (DB_JOBS,
1683 (_("Jobserver client (fds %d,%d)\n"), job_fds[0], job_fds[1]));
1685 /* The combination of a pipe + !job_slots means we're using the
1686 jobserver. If !job_slots and we don't have a pipe, we can start
1687 infinite jobs. If we see both a pipe and job_slots >0 that means the
1688 user set -j explicitly. This is broken; in this case obey the user
1689 (ignore the jobserver pipe for this make) but print a message. */
1691 if (job_slots > 0)
1692 error (NILF,
1693 _("warning: -jN forced in submake: disabling jobserver mode."));
1695 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1696 handler. If this fails with EBADF, the parent has closed the pipe
1697 on us because it didn't think we were a submake. If so, print a
1698 warning then default to -j1. */
1700 else if ((job_rfd = dup (job_fds[0])) < 0)
1702 if (errno != EBADF)
1703 pfatal_with_name (_("dup jobserver"));
1705 error (NILF,
1706 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1707 job_slots = 1;
1710 if (job_slots > 0)
1712 close (job_fds[0]);
1713 close (job_fds[1]);
1714 job_fds[0] = job_fds[1] = -1;
1715 free (jobserver_fds->list);
1716 free (jobserver_fds);
1717 jobserver_fds = 0;
1721 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1722 Set up the pipe and install the fds option for our children. */
1724 if (job_slots > 1)
1726 char *cp;
1727 char c = '+';
1729 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1730 pfatal_with_name (_("creating jobs pipe"));
1732 /* Every make assumes that it always has one job it can run. For the
1733 submakes it's the token they were given by their parent. For the
1734 top make, we just subtract one from the number the user wants. We
1735 want job_slots to be 0 to indicate we're using the jobserver. */
1737 master_job_slots = job_slots;
1739 while (--job_slots)
1741 int r;
1743 EINTRLOOP (r, write (job_fds[1], &c, 1));
1744 if (r != 1)
1745 pfatal_with_name (_("init jobserver pipe"));
1748 /* Fill in the jobserver_fds struct for our children. */
1750 cp = xmalloc ((sizeof ("1024")*2)+1);
1751 sprintf (cp, "%d,%d", job_fds[0], job_fds[1]);
1753 jobserver_fds = (struct stringlist *)
1754 xmalloc (sizeof (struct stringlist));
1755 jobserver_fds->list = xmalloc (sizeof (char *));
1756 jobserver_fds->list[0] = cp;
1757 jobserver_fds->idx = 1;
1758 jobserver_fds->max = 1;
1760 #endif
1762 #ifndef MAKE_SYMLINKS
1763 if (check_symlink_flag)
1765 error (NILF, _("Symbolic links not supported: disabling -L."));
1766 check_symlink_flag = 0;
1768 #endif
1770 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1772 define_makeflags (1, 0);
1774 /* Make each `struct dep' point at the `struct file' for the file
1775 depended on. Also do magic for special targets. */
1777 snap_deps ();
1779 /* Convert old-style suffix rules to pattern rules. It is important to
1780 do this before installing the built-in pattern rules below, so that
1781 makefile-specified suffix rules take precedence over built-in pattern
1782 rules. */
1784 convert_to_pattern ();
1786 /* Install the default implicit pattern rules.
1787 This used to be done before reading the makefiles.
1788 But in that case, built-in pattern rules were in the chain
1789 before user-defined ones, so they matched first. */
1791 install_default_implicit_rules ();
1793 /* Compute implicit rule limits. */
1795 count_implicit_rule_limits ();
1797 /* Construct the listings of directories in VPATH lists. */
1799 build_vpath_lists ();
1801 /* Mark files given with -o flags as very old and as having been updated
1802 already, and files given with -W flags as brand new (time-stamp as far
1803 as possible into the future). If restarts is set we'll do -W later. */
1805 if (old_files != 0)
1807 const char **p;
1808 for (p = old_files->list; *p != 0; ++p)
1810 struct file *f = enter_file (*p);
1811 f->last_mtime = f->mtime_before_update = OLD_MTIME;
1812 f->updated = 1;
1813 f->update_status = 0;
1814 f->command_state = cs_finished;
1818 if (!restarts && new_files != 0)
1820 const char **p;
1821 for (p = new_files->list; *p != 0; ++p)
1823 struct file *f = enter_file (*p);
1824 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1828 /* Initialize the remote job module. */
1829 remote_setup ();
1831 if (read_makefiles != 0)
1833 /* Update any makefiles if necessary. */
1835 FILE_TIMESTAMP *makefile_mtimes = 0;
1836 unsigned int mm_idx = 0;
1837 char **nargv;
1838 int nargc;
1839 int orig_db_level = db_level;
1840 int status;
1842 if (! ISDB (DB_MAKEFILES))
1843 db_level = DB_NONE;
1845 DB (DB_BASIC, (_("Updating makefiles....\n")));
1847 /* Remove any makefiles we don't want to try to update.
1848 Also record the current modtimes so we can compare them later. */
1850 register struct dep *d, *last;
1851 last = 0;
1852 d = read_makefiles;
1853 while (d != 0)
1855 struct file *f = d->file;
1856 if (f->double_colon)
1857 for (f = f->double_colon; f != NULL; f = f->prev)
1859 if (f->deps == 0 && f->cmds != 0)
1861 /* This makefile is a :: target with commands, but
1862 no dependencies. So, it will always be remade.
1863 This might well cause an infinite loop, so don't
1864 try to remake it. (This will only happen if
1865 your makefiles are written exceptionally
1866 stupidly; but if you work for Athena, that's how
1867 you write your makefiles.) */
1869 DB (DB_VERBOSE,
1870 (_("Makefile `%s' might loop; not remaking it.\n"),
1871 f->name));
1873 if (last == 0)
1874 read_makefiles = d->next;
1875 else
1876 last->next = d->next;
1878 /* Free the storage. */
1879 free_dep (d);
1881 d = last == 0 ? read_makefiles : last->next;
1883 break;
1886 if (f == NULL || !f->double_colon)
1888 makefile_mtimes = xrealloc (makefile_mtimes,
1889 (mm_idx+1)
1890 * sizeof (FILE_TIMESTAMP));
1891 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1892 last = d;
1893 d = d->next;
1898 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1899 define_makeflags (1, 1);
1901 rebuilding_makefiles = 1;
1902 status = update_goal_chain (read_makefiles);
1903 rebuilding_makefiles = 0;
1905 switch (status)
1907 case 1:
1908 /* The only way this can happen is if the user specified -q and asked
1909 * for one of the makefiles to be remade as a target on the command
1910 * line. Since we're not actually updating anything with -q we can
1911 * treat this as "did nothing".
1914 case -1:
1915 /* Did nothing. */
1916 break;
1918 case 2:
1919 /* Failed to update. Figure out if we care. */
1921 /* Nonzero if any makefile was successfully remade. */
1922 int any_remade = 0;
1923 /* Nonzero if any makefile we care about failed
1924 in updating or could not be found at all. */
1925 int any_failed = 0;
1926 unsigned int i;
1927 struct dep *d;
1929 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1931 /* Reset the considered flag; we may need to look at the file
1932 again to print an error. */
1933 d->file->considered = 0;
1935 if (d->file->updated)
1937 /* This makefile was updated. */
1938 if (d->file->update_status == 0)
1940 /* It was successfully updated. */
1941 any_remade |= (file_mtime_no_search (d->file)
1942 != makefile_mtimes[i]);
1944 else if (! (d->changed & RM_DONTCARE))
1946 FILE_TIMESTAMP mtime;
1947 /* The update failed and this makefile was not
1948 from the MAKEFILES variable, so we care. */
1949 error (NILF, _("Failed to remake makefile `%s'."),
1950 d->file->name);
1951 mtime = file_mtime_no_search (d->file);
1952 any_remade |= (mtime != NONEXISTENT_MTIME
1953 && mtime != makefile_mtimes[i]);
1954 makefile_status = MAKE_FAILURE;
1957 else
1958 /* This makefile was not found at all. */
1959 if (! (d->changed & RM_DONTCARE))
1961 /* This is a makefile we care about. See how much. */
1962 if (d->changed & RM_INCLUDED)
1963 /* An included makefile. We don't need
1964 to die, but we do want to complain. */
1965 error (NILF,
1966 _("Included makefile `%s' was not found."),
1967 dep_name (d));
1968 else
1970 /* A normal makefile. We must die later. */
1971 error (NILF, _("Makefile `%s' was not found"),
1972 dep_name (d));
1973 any_failed = 1;
1977 /* Reset this to empty so we get the right error message below. */
1978 read_makefiles = 0;
1980 if (any_remade)
1981 goto re_exec;
1982 if (any_failed)
1983 die (2);
1984 break;
1987 case 0:
1988 re_exec:
1989 /* Updated successfully. Re-exec ourselves. */
1991 remove_intermediates (0);
1993 if (print_data_base_flag)
1994 print_data_base ();
1996 log_working_directory (0);
1998 clean_jobserver (0);
2000 if (makefiles != 0)
2002 /* These names might have changed. */
2003 int i, j = 0;
2004 for (i = 1; i < argc; ++i)
2005 if (strneq (argv[i], "-f", 2)) /* XXX */
2007 if (argv[i][2] == '\0')
2008 /* This cast is OK since we never modify argv. */
2009 argv[++i] = (char *) makefiles->list[j];
2010 else
2011 argv[i] = xstrdup (concat ("-f", makefiles->list[j], ""));
2012 ++j;
2016 /* Add -o option for the stdin temporary file, if necessary. */
2017 nargc = argc;
2018 if (stdin_nm)
2020 nargv = xmalloc ((nargc + 2) * sizeof (char *));
2021 memcpy (nargv, argv, argc * sizeof (char *));
2022 nargv[nargc++] = xstrdup (concat ("-o", stdin_nm, ""));
2023 nargv[nargc] = 0;
2025 else
2026 nargv = argv;
2028 if (directories != 0 && directories->idx > 0)
2030 int bad = 1;
2031 if (directory_before_chdir != 0)
2033 if (chdir (directory_before_chdir) < 0)
2034 perror_with_name ("chdir", "");
2035 else
2036 bad = 0;
2038 if (bad)
2039 fatal (NILF, _("Couldn't change back to original directory."));
2042 ++restarts;
2044 /* Reset makeflags in case they were changed. */
2046 const char *pv = define_makeflags (1, 1);
2047 char *p = alloca (sizeof ("MAKEFLAGS=") + strlen (pv) + 1);
2048 sprintf (p, "MAKEFLAGS=%s", pv);
2049 putenv (p);
2052 if (ISDB (DB_BASIC))
2054 char **p;
2055 printf (_("Re-executing[%u]:"), restarts);
2056 for (p = nargv; *p != 0; ++p)
2057 printf (" %s", *p);
2058 putchar ('\n');
2061 #ifndef _AMIGA
2063 char **p;
2064 for (p = environ; *p != 0; ++p)
2066 if (strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH)
2067 && (*p)[MAKELEVEL_LENGTH] == '=')
2069 *p = alloca (40);
2070 sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
2072 if (strneq (*p, "MAKE_RESTARTS=", 14))
2074 *p = alloca (40);
2075 sprintf (*p, "MAKE_RESTARTS=%u", restarts);
2076 restarts = 0;
2080 #else /* AMIGA */
2082 char buffer[256];
2084 sprintf (buffer, "%u", makelevel);
2085 SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
2087 sprintf (buffer, "%u", restarts);
2088 SetVar ("MAKE_RESTARTS", buffer, -1, GVF_GLOBAL_ONLY);
2089 restarts = 0;
2091 #endif
2093 /* If we didn't set the restarts variable yet, add it. */
2094 if (restarts)
2096 char *b = alloca (40);
2097 sprintf (b, "MAKE_RESTARTS=%u", restarts);
2098 putenv (b);
2101 fflush (stdout);
2102 fflush (stderr);
2104 /* Close the dup'd jobserver pipe if we opened one. */
2105 if (job_rfd >= 0)
2106 close (job_rfd);
2108 #ifdef _AMIGA
2109 exec_command (nargv);
2110 exit (0);
2111 #elif defined (__EMX__)
2113 /* It is not possible to use execve() here because this
2114 would cause the parent process to be terminated with
2115 exit code 0 before the child process has been terminated.
2116 Therefore it may be the best solution simply to spawn the
2117 child process including all file handles and to wait for its
2118 termination. */
2119 int pid;
2120 int status;
2121 pid = child_execute_job (0, 1, nargv, environ);
2123 /* is this loop really necessary? */
2124 do {
2125 pid = wait (&status);
2126 } while (pid <= 0);
2127 /* use the exit code of the child process */
2128 exit (WIFEXITED(status) ? WEXITSTATUS(status) : EXIT_FAILURE);
2130 #else
2131 exec_command (nargv, environ);
2132 #endif
2133 /* NOTREACHED */
2135 default:
2136 #define BOGUS_UPDATE_STATUS 0
2137 assert (BOGUS_UPDATE_STATUS);
2138 break;
2141 db_level = orig_db_level;
2143 /* Free the makefile mtimes (if we allocated any). */
2144 if (makefile_mtimes)
2145 free (makefile_mtimes);
2148 /* Set up `MAKEFLAGS' again for the normal targets. */
2149 define_makeflags (1, 0);
2151 /* Set always_make_flag if -B was given. */
2152 always_make_flag = always_make_set;
2154 /* If restarts is set we haven't set up -W files yet, so do that now. */
2155 if (restarts && new_files != 0)
2157 const char **p;
2158 for (p = new_files->list; *p != 0; ++p)
2160 struct file *f = enter_file (*p);
2161 f->last_mtime = f->mtime_before_update = NEW_MTIME;
2165 /* If there is a temp file from reading a makefile from stdin, get rid of
2166 it now. */
2167 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
2168 perror_with_name (_("unlink (temporary file): "), stdin_nm);
2170 /* If there were no command-line goals, use the default. */
2171 if (goals == 0)
2173 char *p;
2175 if (default_goal_var->recursive)
2176 p = variable_expand (default_goal_var->value);
2177 else
2179 p = variable_buffer_output (variable_buffer, default_goal_var->value,
2180 strlen (default_goal_var->value));
2181 *p = '\0';
2182 p = variable_buffer;
2185 if (*p != '\0')
2187 struct file *f = lookup_file (p);
2189 /* If .DEFAULT_GOAL is a non-existent target, enter it into the
2190 table and let the standard logic sort it out. */
2191 if (f == 0)
2193 struct nameseq *ns;
2195 ns = multi_glob (parse_file_seq (&p, '\0', sizeof (struct nameseq), 1),
2196 sizeof (struct nameseq), 0);
2197 if (ns)
2199 /* .DEFAULT_GOAL should contain one target. */
2200 if (ns->next != 0)
2201 fatal (NILF, _(".DEFAULT_GOAL contains more than one target"));
2203 f = enter_file (strcache_add (ns->name));
2205 ns->name = 0; /* It was reused by enter_file(). */
2206 free_ns_chain (ns);
2210 if (f)
2212 goals = alloc_dep ();
2213 goals->file = f;
2217 else
2218 lastgoal->next = 0;
2221 if (!goals)
2223 if (read_makefiles == 0)
2224 fatal (NILF, _("No targets specified and no makefile found"));
2226 fatal (NILF, _("No targets"));
2229 /* Update the goals. */
2231 DB (DB_BASIC, (_("Updating goal targets....\n")));
2234 int status;
2236 switch (update_goal_chain (goals))
2238 case -1:
2239 /* Nothing happened. */
2240 case 0:
2241 /* Updated successfully. */
2242 status = makefile_status;
2243 break;
2244 case 1:
2245 /* We are under -q and would run some commands. */
2246 status = MAKE_TROUBLE;
2247 break;
2248 case 2:
2249 /* Updating failed. POSIX.2 specifies exit status >1 for this;
2250 but in VMS, there is only success and failure. */
2251 status = MAKE_FAILURE;
2252 break;
2253 default:
2254 abort ();
2257 /* If we detected some clock skew, generate one last warning */
2258 if (clock_skew_detected)
2259 error (NILF,
2260 _("warning: Clock skew detected. Your build may be incomplete."));
2262 /* Exit. */
2263 die (status);
2266 /* NOTREACHED */
2267 return 0;
2270 /* Parsing of arguments, decoding of switches. */
2272 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
2273 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
2274 (sizeof (long_option_aliases) /
2275 sizeof (long_option_aliases[0]))];
2277 /* Fill in the string and vector for getopt. */
2278 static void
2279 init_switches (void)
2281 char *p;
2282 unsigned int c;
2283 unsigned int i;
2285 if (options[0] != '\0')
2286 /* Already done. */
2287 return;
2289 p = options;
2291 /* Return switch and non-switch args in order, regardless of
2292 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
2293 *p++ = '-';
2295 for (i = 0; switches[i].c != '\0'; ++i)
2297 long_options[i].name = (switches[i].long_name == 0 ? "" :
2298 switches[i].long_name);
2299 long_options[i].flag = 0;
2300 long_options[i].val = switches[i].c;
2301 if (short_option (switches[i].c))
2302 *p++ = switches[i].c;
2303 switch (switches[i].type)
2305 case flag:
2306 case flag_off:
2307 case ignore:
2308 long_options[i].has_arg = no_argument;
2309 break;
2311 case string:
2312 case filename:
2313 case positive_int:
2314 case floating:
2315 if (short_option (switches[i].c))
2316 *p++ = ':';
2317 if (switches[i].noarg_value != 0)
2319 if (short_option (switches[i].c))
2320 *p++ = ':';
2321 long_options[i].has_arg = optional_argument;
2323 else
2324 long_options[i].has_arg = required_argument;
2325 break;
2328 *p = '\0';
2329 for (c = 0; c < (sizeof (long_option_aliases) /
2330 sizeof (long_option_aliases[0]));
2331 ++c)
2332 long_options[i++] = long_option_aliases[c];
2333 long_options[i].name = 0;
2336 static void
2337 handle_non_switch_argument (char *arg, int env)
2339 /* Non-option argument. It might be a variable definition. */
2340 struct variable *v;
2341 if (arg[0] == '-' && arg[1] == '\0')
2342 /* Ignore plain `-' for compatibility. */
2343 return;
2344 v = try_variable_definition (0, arg, o_command, 0);
2345 if (v != 0)
2347 /* It is indeed a variable definition. If we don't already have this
2348 one, record a pointer to the variable for later use in
2349 define_makeflags. */
2350 struct command_variable *cv;
2352 for (cv = command_variables; cv != 0; cv = cv->next)
2353 if (cv->variable == v)
2354 break;
2356 if (! cv) {
2357 cv = xmalloc (sizeof (*cv));
2358 cv->variable = v;
2359 cv->next = command_variables;
2360 command_variables = cv;
2363 else if (! env)
2365 /* Not an option or variable definition; it must be a goal
2366 target! Enter it as a file and add it to the dep chain of
2367 goals. */
2368 struct file *f = enter_file (strcache_add (expand_command_line_file (arg)));
2369 f->cmd_target = 1;
2371 if (goals == 0)
2373 goals = alloc_dep ();
2374 lastgoal = goals;
2376 else
2378 lastgoal->next = alloc_dep ();
2379 lastgoal = lastgoal->next;
2382 lastgoal->file = f;
2385 /* Add this target name to the MAKECMDGOALS variable. */
2386 struct variable *gv;
2387 const char *value;
2389 gv = lookup_variable (STRING_SIZE_TUPLE ("MAKECMDGOALS"));
2390 if (gv == 0)
2391 value = f->name;
2392 else
2394 /* Paste the old and new values together */
2395 unsigned int oldlen, newlen;
2396 char *vp;
2398 oldlen = strlen (gv->value);
2399 newlen = strlen (f->name);
2400 vp = alloca (oldlen + 1 + newlen + 1);
2401 memcpy (vp, gv->value, oldlen);
2402 vp[oldlen] = ' ';
2403 memcpy (&vp[oldlen + 1], f->name, newlen + 1);
2404 value = vp;
2406 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
2411 /* Print a nice usage method. */
2413 static void
2414 print_usage (int bad)
2416 const char *const *cpp;
2417 FILE *usageto;
2419 if (print_version_flag)
2420 print_version ();
2422 usageto = bad ? stderr : stdout;
2424 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
2426 for (cpp = usage; *cpp; ++cpp)
2427 fputs (_(*cpp), usageto);
2429 if (!remote_description || *remote_description == '\0')
2430 fprintf (usageto, _("\nThis program built for %s\n"), make_host);
2431 else
2432 fprintf (usageto, _("\nThis program built for %s (%s)\n"),
2433 make_host, remote_description);
2435 fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
2438 /* Decode switches from ARGC and ARGV.
2439 They came from the environment if ENV is nonzero. */
2441 static void
2442 decode_switches (int argc, char **argv, int env)
2444 int bad = 0;
2445 register const struct command_switch *cs;
2446 register struct stringlist *sl;
2447 register int c;
2449 /* getopt does most of the parsing for us.
2450 First, get its vectors set up. */
2452 init_switches ();
2454 /* Let getopt produce error messages for the command line,
2455 but not for options from the environment. */
2456 opterr = !env;
2457 /* Reset getopt's state. */
2458 optind = 0;
2460 while (optind < argc)
2462 /* Parse the next argument. */
2463 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2464 if (c == EOF)
2465 /* End of arguments, or "--" marker seen. */
2466 break;
2467 else if (c == 1)
2468 /* An argument not starting with a dash. */
2469 handle_non_switch_argument (optarg, env);
2470 else if (c == '?')
2471 /* Bad option. We will print a usage message and die later.
2472 But continue to parse the other options so the user can
2473 see all he did wrong. */
2474 bad = 1;
2475 else
2476 for (cs = switches; cs->c != '\0'; ++cs)
2477 if (cs->c == c)
2479 /* Whether or not we will actually do anything with
2480 this switch. We test this individually inside the
2481 switch below rather than just once outside it, so that
2482 options which are to be ignored still consume args. */
2483 int doit = !env || cs->env;
2485 switch (cs->type)
2487 default:
2488 abort ();
2490 case ignore:
2491 break;
2493 case flag:
2494 case flag_off:
2495 if (doit)
2496 *(int *) cs->value_ptr = cs->type == flag;
2497 break;
2499 case string:
2500 case filename:
2501 if (!doit)
2502 break;
2504 if (optarg == 0)
2505 optarg = xstrdup (cs->noarg_value);
2506 else if (*optarg == '\0')
2508 error (NILF, _("the `-%c' option requires a non-empty string argument"),
2509 cs->c);
2510 bad = 1;
2513 sl = *(struct stringlist **) cs->value_ptr;
2514 if (sl == 0)
2516 sl = (struct stringlist *)
2517 xmalloc (sizeof (struct stringlist));
2518 sl->max = 5;
2519 sl->idx = 0;
2520 sl->list = xmalloc (5 * sizeof (char *));
2521 *(struct stringlist **) cs->value_ptr = sl;
2523 else if (sl->idx == sl->max - 1)
2525 sl->max += 5;
2526 sl->list = xrealloc (sl->list,
2527 sl->max * sizeof (char *));
2529 if (cs->type == filename)
2530 sl->list[sl->idx++] = expand_command_line_file (optarg);
2531 else
2532 sl->list[sl->idx++] = optarg;
2533 sl->list[sl->idx] = 0;
2534 break;
2536 case positive_int:
2537 /* See if we have an option argument; if we do require that
2538 it's all digits, not something like "10foo". */
2539 if (optarg == 0 && argc > optind)
2541 const char *cp;
2542 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
2544 if (cp[0] == '\0')
2545 optarg = argv[optind++];
2548 if (!doit)
2549 break;
2551 if (optarg != 0)
2553 int i = atoi (optarg);
2554 const char *cp;
2556 /* Yes, I realize we're repeating this in some cases. */
2557 for (cp = optarg; ISDIGIT (cp[0]); ++cp)
2560 if (i < 1 || cp[0] != '\0')
2562 error (NILF, _("the `-%c' option requires a positive integral argument"),
2563 cs->c);
2564 bad = 1;
2566 else
2567 *(unsigned int *) cs->value_ptr = i;
2569 else
2570 *(unsigned int *) cs->value_ptr
2571 = *(unsigned int *) cs->noarg_value;
2572 break;
2574 #ifndef NO_FLOAT
2575 case floating:
2576 if (optarg == 0 && optind < argc
2577 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2578 optarg = argv[optind++];
2580 if (doit)
2581 *(double *) cs->value_ptr
2582 = (optarg != 0 ? atof (optarg)
2583 : *(double *) cs->noarg_value);
2585 break;
2586 #endif
2589 /* We've found the switch. Stop looking. */
2590 break;
2594 /* There are no more options according to getting getopt, but there may
2595 be some arguments left. Since we have asked for non-option arguments
2596 to be returned in order, this only happens when there is a "--"
2597 argument to prevent later arguments from being options. */
2598 while (optind < argc)
2599 handle_non_switch_argument (argv[optind++], env);
2602 if (!env && (bad || print_usage_flag))
2604 print_usage (bad);
2605 die (bad ? 2 : 0);
2609 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2610 We do this by chopping the value into a vector of words, prepending a
2611 dash to the first word if it lacks one, and passing the vector to
2612 decode_switches. */
2614 static void
2615 decode_env_switches (char *envar, unsigned int len)
2617 char *varref = alloca (2 + len + 2);
2618 char *value, *p;
2619 int argc;
2620 char **argv;
2622 /* Get the variable's value. */
2623 varref[0] = '$';
2624 varref[1] = '(';
2625 memcpy (&varref[2], envar, len);
2626 varref[2 + len] = ')';
2627 varref[2 + len + 1] = '\0';
2628 value = variable_expand (varref);
2630 /* Skip whitespace, and check for an empty value. */
2631 value = next_token (value);
2632 len = strlen (value);
2633 if (len == 0)
2634 return;
2636 /* Allocate a vector that is definitely big enough. */
2637 argv = alloca ((1 + len + 1) * sizeof (char *));
2639 /* Allocate a buffer to copy the value into while we split it into words
2640 and unquote it. We must use permanent storage for this because
2641 decode_switches may store pointers into the passed argument words. */
2642 p = xmalloc (2 * len);
2644 /* getopt will look at the arguments starting at ARGV[1].
2645 Prepend a spacer word. */
2646 argv[0] = 0;
2647 argc = 1;
2648 argv[argc] = p;
2649 while (*value != '\0')
2651 if (*value == '\\' && value[1] != '\0')
2652 ++value; /* Skip the backslash. */
2653 else if (isblank ((unsigned char)*value))
2655 /* End of the word. */
2656 *p++ = '\0';
2657 argv[++argc] = p;
2659 ++value;
2660 while (isblank ((unsigned char)*value));
2661 continue;
2663 *p++ = *value++;
2665 *p = '\0';
2666 argv[++argc] = 0;
2668 if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
2669 /* The first word doesn't start with a dash and isn't a variable
2670 definition. Add a dash and pass it along to decode_switches. We
2671 need permanent storage for this in case decode_switches saves
2672 pointers into the value. */
2673 argv[1] = xstrdup (concat ("-", argv[1], ""));
2675 /* Parse those words. */
2676 decode_switches (argc, argv, 1);
2679 /* Quote the string IN so that it will be interpreted as a single word with
2680 no magic by decode_env_switches; also double dollar signs to avoid
2681 variable expansion in make itself. Write the result into OUT, returning
2682 the address of the next character to be written.
2683 Allocating space for OUT twice the length of IN is always sufficient. */
2685 static char *
2686 quote_for_env (char *out, const char *in)
2688 while (*in != '\0')
2690 if (*in == '$')
2691 *out++ = '$';
2692 else if (isblank ((unsigned char)*in) || *in == '\\')
2693 *out++ = '\\';
2694 *out++ = *in++;
2697 return out;
2700 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2701 command switches. Include options with args if ALL is nonzero.
2702 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2704 static const char *
2705 define_makeflags (int all, int makefile)
2707 static const char ref[] = "$(MAKEOVERRIDES)";
2708 static const char posixref[] = "$(-*-command-variables-*-)";
2709 register const struct command_switch *cs;
2710 char *flagstring;
2711 register char *p;
2712 unsigned int words;
2713 struct variable *v;
2715 /* We will construct a linked list of `struct flag's describing
2716 all the flags which need to go in MAKEFLAGS. Then, once we
2717 know how many there are and their lengths, we can put them all
2718 together in a string. */
2720 struct flag
2722 struct flag *next;
2723 const struct command_switch *cs;
2724 const char *arg;
2726 struct flag *flags = 0;
2727 unsigned int flagslen = 0;
2728 #define ADD_FLAG(ARG, LEN) \
2729 do { \
2730 struct flag *new = alloca (sizeof (struct flag)); \
2731 new->cs = cs; \
2732 new->arg = (ARG); \
2733 new->next = flags; \
2734 flags = new; \
2735 if (new->arg == 0) \
2736 ++flagslen; /* Just a single flag letter. */ \
2737 else \
2738 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2739 if (!short_option (cs->c)) \
2740 /* This switch has no single-letter version, so we use the long. */ \
2741 flagslen += 2 + strlen (cs->long_name); \
2742 } while (0)
2744 for (cs = switches; cs->c != '\0'; ++cs)
2745 if (cs->toenv && (!makefile || !cs->no_makefile))
2746 switch (cs->type)
2748 case ignore:
2749 break;
2751 case flag:
2752 case flag_off:
2753 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2754 && (cs->default_value == 0
2755 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2756 ADD_FLAG (0, 0);
2757 break;
2759 case positive_int:
2760 if (all)
2762 if ((cs->default_value != 0
2763 && (*(unsigned int *) cs->value_ptr
2764 == *(unsigned int *) cs->default_value)))
2765 break;
2766 else if (cs->noarg_value != 0
2767 && (*(unsigned int *) cs->value_ptr ==
2768 *(unsigned int *) cs->noarg_value))
2769 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2770 else if (cs->c == 'j')
2771 /* Special case for `-j'. */
2772 ADD_FLAG ("1", 1);
2773 else
2775 char *buf = alloca (30);
2776 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2777 ADD_FLAG (buf, strlen (buf));
2780 break;
2782 #ifndef NO_FLOAT
2783 case floating:
2784 if (all)
2786 if (cs->default_value != 0
2787 && (*(double *) cs->value_ptr
2788 == *(double *) cs->default_value))
2789 break;
2790 else if (cs->noarg_value != 0
2791 && (*(double *) cs->value_ptr
2792 == *(double *) cs->noarg_value))
2793 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2794 else
2796 char *buf = alloca (100);
2797 sprintf (buf, "%g", *(double *) cs->value_ptr);
2798 ADD_FLAG (buf, strlen (buf));
2801 break;
2802 #endif
2804 case filename:
2805 case string:
2806 if (all)
2808 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2809 if (sl != 0)
2811 /* Add the elements in reverse order, because all the flags
2812 get reversed below; and the order matters for some
2813 switches (like -I). */
2814 unsigned int i = sl->idx;
2815 while (i-- > 0)
2816 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2819 break;
2821 default:
2822 abort ();
2825 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2827 #undef ADD_FLAG
2829 /* Construct the value in FLAGSTRING.
2830 We allocate enough space for a preceding dash and trailing null. */
2831 flagstring = alloca (1 + flagslen + 1);
2832 memset (flagstring, '\0', 1 + flagslen + 1);
2833 p = flagstring;
2834 words = 1;
2835 *p++ = '-';
2836 while (flags != 0)
2838 /* Add the flag letter or name to the string. */
2839 if (short_option (flags->cs->c))
2840 *p++ = flags->cs->c;
2841 else
2843 if (*p != '-')
2845 *p++ = ' ';
2846 *p++ = '-';
2848 *p++ = '-';
2849 strcpy (p, flags->cs->long_name);
2850 p += strlen (p);
2852 if (flags->arg != 0)
2854 /* A flag that takes an optional argument which in this case is
2855 omitted is specified by ARG being "". We must distinguish
2856 because a following flag appended without an intervening " -"
2857 is considered the arg for the first. */
2858 if (flags->arg[0] != '\0')
2860 /* Add its argument too. */
2861 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2862 p = quote_for_env (p, flags->arg);
2864 ++words;
2865 /* Write a following space and dash, for the next flag. */
2866 *p++ = ' ';
2867 *p++ = '-';
2869 else if (!short_option (flags->cs->c))
2871 ++words;
2872 /* Long options must each go in their own word,
2873 so we write the following space and dash. */
2874 *p++ = ' ';
2875 *p++ = '-';
2877 flags = flags->next;
2880 /* Define MFLAGS before appending variable definitions. */
2882 if (p == &flagstring[1])
2883 /* No flags. */
2884 flagstring[0] = '\0';
2885 else if (p[-1] == '-')
2887 /* Kill the final space and dash. */
2888 p -= 2;
2889 *p = '\0';
2891 else
2892 /* Terminate the string. */
2893 *p = '\0';
2895 /* Since MFLAGS is not parsed for flags, there is no reason to
2896 override any makefile redefinition. */
2897 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2899 if (all && command_variables != 0)
2901 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2902 command-line variable definitions. */
2904 if (p == &flagstring[1])
2905 /* No flags written, so elide the leading dash already written. */
2906 p = flagstring;
2907 else
2909 /* Separate the variables from the switches with a "--" arg. */
2910 if (p[-1] != '-')
2912 /* We did not already write a trailing " -". */
2913 *p++ = ' ';
2914 *p++ = '-';
2916 /* There is a trailing " -"; fill it out to " -- ". */
2917 *p++ = '-';
2918 *p++ = ' ';
2921 /* Copy in the string. */
2922 if (posix_pedantic)
2924 memcpy (p, posixref, sizeof posixref - 1);
2925 p += sizeof posixref - 1;
2927 else
2929 memcpy (p, ref, sizeof ref - 1);
2930 p += sizeof ref - 1;
2933 else if (p == &flagstring[1])
2935 words = 0;
2936 --p;
2938 else if (p[-1] == '-')
2939 /* Kill the final space and dash. */
2940 p -= 2;
2941 /* Terminate the string. */
2942 *p = '\0';
2944 /* If there are switches, omit the leading dash unless it is a single long
2945 option with two leading dashes. */
2946 if (flagstring[0] == '-' && flagstring[1] != '-')
2947 ++flagstring;
2949 v = define_variable ("MAKEFLAGS", 9, flagstring,
2950 /* This used to use o_env, but that lost when a
2951 makefile defined MAKEFLAGS. Makefiles set
2952 MAKEFLAGS to add switches, but we still want
2953 to redefine its value with the full set of
2954 switches. Of course, an override or command
2955 definition will still take precedence. */
2956 o_file, 1);
2958 if (! all)
2959 /* The first time we are called, set MAKEFLAGS to always be exported.
2960 We should not do this again on the second call, because that is
2961 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2962 v->export = v_export;
2964 return v->value;
2967 /* Print version information. */
2969 static void
2970 print_version (void)
2972 static int printed_version = 0;
2974 char *precede = print_data_base_flag ? "# " : "";
2976 if (printed_version)
2977 /* Do it only once. */
2978 return;
2980 printf ("%sGNU Make %s\n", precede, version_string);
2982 if (!remote_description || *remote_description == '\0')
2983 printf (_("%sBuilt for %s\n"), precede, make_host);
2984 else
2985 printf (_("%sBuilt for %s (%s)\n"),
2986 precede, make_host, remote_description);
2988 /* Print this untranslated. The coding standards recommend translating the
2989 (C) to the copyright symbol, but this string is going to change every
2990 year, and none of the rest of it should be translated (including the
2991 word "Copyright", so it hardly seems worth it. */
2993 printf ("%sCopyright (C) 2009 Free Software Foundation, Inc.\n", precede);
2995 printf (_("%sLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
2996 %sThis is free software: you are free to change and redistribute it.\n\
2997 %sThere is NO WARRANTY, to the extent permitted by law.\n"),
2998 precede, precede, precede);
3000 printed_version = 1;
3002 /* Flush stdout so the user doesn't have to wait to see the
3003 version information while things are thought about. */
3004 fflush (stdout);
3007 /* Print a bunch of information about this and that. */
3009 static void
3010 print_data_base ()
3012 time_t when;
3014 when = time ((time_t *) 0);
3015 printf (_("\n# Make data base, printed on %s"), ctime (&when));
3017 print_variable_data_base ();
3018 print_dir_data_base ();
3019 print_rule_data_base ();
3020 print_file_data_base ();
3021 print_vpath_data_base ();
3022 strcache_print_stats ("#");
3024 when = time ((time_t *) 0);
3025 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
3028 static void
3029 clean_jobserver (int status)
3031 char token = '+';
3033 /* Sanity: have we written all our jobserver tokens back? If our
3034 exit status is 2 that means some kind of syntax error; we might not
3035 have written all our tokens so do that now. If tokens are left
3036 after any other error code, that's bad. */
3038 if (job_fds[0] != -1 && jobserver_tokens)
3040 if (status != 2)
3041 error (NILF,
3042 "INTERNAL: Exiting with %u jobserver tokens (should be 0)!",
3043 jobserver_tokens);
3044 else
3045 while (jobserver_tokens--)
3047 int r;
3049 EINTRLOOP (r, write (job_fds[1], &token, 1));
3050 if (r != 1)
3051 perror_with_name ("write", "");
3056 /* Sanity: If we're the master, were all the tokens written back? */
3058 if (master_job_slots)
3060 /* We didn't write one for ourself, so start at 1. */
3061 unsigned int tcnt = 1;
3063 /* Close the write side, so the read() won't hang. */
3064 close (job_fds[1]);
3066 while (read (job_fds[0], &token, 1) == 1)
3067 ++tcnt;
3069 if (tcnt != master_job_slots)
3070 error (NILF,
3071 "INTERNAL: Exiting with %u jobserver tokens available; should be %u!",
3072 tcnt, master_job_slots);
3074 close (job_fds[0]);
3076 /* Clean out jobserver_fds so we don't pass this information to any
3077 sub-makes. Also reset job_slots since it will be put on the command
3078 line, not in MAKEFLAGS. */
3079 job_slots = default_job_slots;
3080 if (jobserver_fds)
3082 free (jobserver_fds->list);
3083 free (jobserver_fds);
3084 jobserver_fds = 0;
3089 /* Exit with STATUS, cleaning up as necessary. */
3091 void
3092 die (int status)
3094 static char dying = 0;
3096 if (!dying)
3098 int err;
3100 dying = 1;
3102 if (print_version_flag)
3103 print_version ();
3105 /* Wait for children to die. */
3106 err = (status != 0);
3107 while (job_slots_used > 0)
3108 reap_children (1, err);
3110 /* Let the remote job module clean up its state. */
3111 remote_cleanup ();
3113 /* Remove the intermediate files. */
3114 remove_intermediates (0);
3116 if (print_data_base_flag)
3117 print_data_base ();
3119 verify_file_data_base ();
3121 clean_jobserver (status);
3123 /* Try to move back to the original directory. This is essential on
3124 MS-DOS (where there is really only one process), and on Unix it
3125 puts core files in the original directory instead of the -C
3126 directory. Must wait until after remove_intermediates(), or unlinks
3127 of relative pathnames fail. */
3128 if (directory_before_chdir != 0)
3129 chdir (directory_before_chdir);
3131 log_working_directory (0);
3134 exit (status);
3137 /* Write a message indicating that we've just entered or
3138 left (according to ENTERING) the current directory. */
3140 void
3141 log_working_directory (int entering)
3143 static int entered = 0;
3145 /* Print nothing without the flag. Don't print the entering message
3146 again if we already have. Don't print the leaving message if we
3147 haven't printed the entering message. */
3148 if (! print_directory_flag || entering == entered)
3149 return;
3151 entered = entering;
3153 if (print_data_base_flag)
3154 fputs ("# ", stdout);
3156 /* Use entire sentences to give the translators a fighting chance. */
3158 if (makelevel == 0)
3159 if (starting_directory == 0)
3160 if (entering)
3161 printf (_("%s: Entering an unknown directory\n"), program);
3162 else
3163 printf (_("%s: Leaving an unknown directory\n"), program);
3164 else
3165 if (entering)
3166 printf (_("%s: Entering directory `%s'\n"),
3167 program, starting_directory);
3168 else
3169 printf (_("%s: Leaving directory `%s'\n"),
3170 program, starting_directory);
3171 else
3172 if (starting_directory == 0)
3173 if (entering)
3174 printf (_("%s[%u]: Entering an unknown directory\n"),
3175 program, makelevel);
3176 else
3177 printf (_("%s[%u]: Leaving an unknown directory\n"),
3178 program, makelevel);
3179 else
3180 if (entering)
3181 printf (_("%s[%u]: Entering directory `%s'\n"),
3182 program, makelevel, starting_directory);
3183 else
3184 printf (_("%s[%u]: Leaving directory `%s'\n"),
3185 program, makelevel, starting_directory);
3187 /* Flush stdout to be sure this comes before any stderr output. */
3188 fflush (stdout);