- Modify access of config and gnulib Savannah modules to use GIT
[make.git] / main.c
blobbad1902ea25ce9fe78f22d2724abfad7484b5239
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 #if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT)
48 # define SET_STACK_SIZE
49 #endif
51 #ifdef SET_STACK_SIZE
52 # include <sys/resource.h>
53 #endif
55 #ifdef _AMIGA
56 int __stack = 20000; /* Make sure we have 20K of stack space */
57 #endif
59 void init_dir (void);
60 void remote_setup (void);
61 void remote_cleanup (void);
62 RETSIGTYPE fatal_error_signal (int sig);
64 void print_variable_data_base (void);
65 void print_dir_data_base (void);
66 void print_rule_data_base (void);
67 void print_file_data_base (void);
68 void print_vpath_data_base (void);
70 void verify_file_data_base (void);
72 #if defined HAVE_WAITPID || defined HAVE_WAIT3
73 # define HAVE_WAIT_NOHANG
74 #endif
76 #ifndef HAVE_UNISTD_H
77 int chdir ();
78 #endif
79 #ifndef STDC_HEADERS
80 # ifndef sun /* Sun has an incorrect decl in a header. */
81 void exit (int) __attribute__ ((noreturn));
82 # endif
83 double atof ();
84 #endif
86 static void clean_jobserver (int status);
87 static void print_data_base (void);
88 static void print_version (void);
89 static void decode_switches (int argc, char **argv, int env);
90 static void decode_env_switches (char *envar, unsigned int len);
91 static void define_makeflags (int all, int makefile);
92 static char *quote_for_env (char *out, const char *in);
93 static void initialize_global_hash_tables (void);
96 /* The structure that describes an accepted command switch. */
98 struct command_switch
100 int c; /* The switch character. */
102 enum /* Type of the value. */
104 flag, /* Turn int flag on. */
105 flag_off, /* Turn int flag off. */
106 string, /* One string per switch. */
107 filename, /* A string containing a file name. */
108 positive_int, /* A positive integer. */
109 floating, /* A floating-point number (double). */
110 ignore /* Ignored. */
111 } type;
113 void *value_ptr; /* Pointer to the value-holding variable. */
115 unsigned int env:1; /* Can come from MAKEFLAGS. */
116 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
117 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
119 const void *noarg_value; /* Pointer to value used if no arg given. */
120 const void *default_value; /* Pointer to default value. */
122 char *long_name; /* Long option name. */
125 /* True if C is a switch value that corresponds to a short option. */
127 #define short_option(c) ((c) <= CHAR_MAX)
129 /* The structure used to hold the list of strings given
130 in command switches of a type that takes string arguments. */
132 struct stringlist
134 const char **list; /* Nil-terminated list of strings. */
135 unsigned int idx; /* Index into above. */
136 unsigned int max; /* Number of pointers allocated. */
140 /* The recognized command switches. */
142 /* Nonzero means do not print commands to be executed (-s). */
144 int silent_flag;
146 /* Nonzero means just touch the files
147 that would appear to need remaking (-t) */
149 int touch_flag;
151 /* Nonzero means just print what commands would need to be executed,
152 don't actually execute them (-n). */
154 int just_print_flag;
156 /* Print debugging info (--debug). */
158 static struct stringlist *db_flags;
159 static int debug_flag = 0;
161 int db_level = 0;
163 /* Output level (--verbosity). */
165 static struct stringlist *verbosity_flags;
167 #ifdef WINDOWS32
168 /* Suspend make in main for a short time to allow debugger to attach */
170 int suspend_flag = 0;
171 #endif
173 /* Environment variables override makefile definitions. */
175 int env_overrides = 0;
177 /* Nonzero means ignore status codes returned by commands
178 executed to remake files. Just treat them all as successful (-i). */
180 int ignore_errors_flag = 0;
182 /* Nonzero means don't remake anything, just print the data base
183 that results from reading the makefile (-p). */
185 int print_data_base_flag = 0;
187 /* Nonzero means don't remake anything; just return a nonzero status
188 if the specified targets are not up to date (-q). */
190 int question_flag = 0;
192 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
194 int no_builtin_rules_flag = 0;
195 int no_builtin_variables_flag = 0;
197 /* Nonzero means keep going even if remaking some file fails (-k). */
199 int keep_going_flag;
200 int default_keep_going_flag = 0;
202 /* Nonzero means check symlink mtimes. */
204 int check_symlink_flag = 0;
206 /* Nonzero means print directory before starting and when done (-w). */
208 int print_directory_flag = 0;
210 /* Nonzero means ignore print_directory_flag and never print the directory.
211 This is necessary because print_directory_flag is set implicitly. */
213 int inhibit_print_directory_flag = 0;
215 /* Nonzero means print version information. */
217 int print_version_flag = 0;
219 /* List of makefiles given with -f switches. */
221 static struct stringlist *makefiles = 0;
223 /* Number of job slots (commands that can be run at once). */
225 unsigned int job_slots = 1;
226 unsigned int default_job_slots = 1;
227 static unsigned int master_job_slots = 0;
229 /* Value of job_slots that means no limit. */
231 static unsigned int inf_jobs = 0;
233 /* File descriptors for the jobs pipe. */
235 static struct stringlist *jobserver_fds = 0;
237 int job_fds[2] = { -1, -1 };
238 int job_rfd = -1;
240 /* Maximum load average at which multiple jobs will be run.
241 Negative values mean unlimited, while zero means limit to
242 zero load (which could be useful to start infinite jobs remotely
243 but one at a time locally). */
244 #ifndef NO_FLOAT
245 double max_load_average = -1.0;
246 double default_load_average = -1.0;
247 #else
248 int max_load_average = -1;
249 int default_load_average = -1;
250 #endif
252 /* List of directories given with -C switches. */
254 static struct stringlist *directories = 0;
256 /* List of include directories given with -I switches. */
258 static struct stringlist *include_directories = 0;
260 /* List of files given with -o switches. */
262 static struct stringlist *old_files = 0;
264 /* List of files given with -W switches. */
266 static struct stringlist *new_files = 0;
268 /* If nonzero, we should just print usage and exit. */
270 static int print_usage_flag = 0;
272 /* If nonzero, we should print a warning message
273 for each reference to an undefined variable. */
275 int warn_undefined_variables_flag;
277 /* If nonzero, always build all targets, regardless of whether
278 they appear out of date or not. */
280 static int always_make_set = 0;
281 int always_make_flag = 0;
283 /* If nonzero, we're in the "try to rebuild makefiles" phase. */
285 int rebuilding_makefiles = 0;
287 /* Remember the original value of the SHELL variable, from the environment. */
289 struct variable shell_var;
291 /* This character introduces a command: it's the first char on the line. */
293 char cmd_prefix = '\t';
296 /* The usage output. We write it this way to make life easier for the
297 translators, especially those trying to translate to right-to-left
298 languages like Hebrew. */
300 static const char *const usage[] =
302 N_("Options:\n"),
303 N_("\
304 -b, -m Ignored for compatibility.\n"),
305 N_("\
306 -B, --always-make Unconditionally make all targets.\n"),
307 N_("\
308 -C DIRECTORY, --directory=DIRECTORY\n\
309 Change to DIRECTORY before doing anything.\n"),
310 N_("\
311 -d Print lots of debugging information.\n"),
312 N_("\
313 --debug[=FLAGS] Print various types of debugging information.\n"),
314 N_("\
315 -e, --environment-overrides\n\
316 Environment variables override makefiles.\n"),
317 N_("\
318 -f FILE, --file=FILE, --makefile=FILE\n\
319 Read FILE as a makefile.\n"),
320 N_("\
321 -h, --help Print this message and exit.\n"),
322 N_("\
323 -i, --ignore-errors Ignore errors from recipes.\n"),
324 N_("\
325 -I DIRECTORY, --include-dir=DIRECTORY\n\
326 Search DIRECTORY for included makefiles.\n"),
327 N_("\
328 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
329 N_("\
330 -k, --keep-going Keep going when some targets can't be made.\n"),
331 N_("\
332 -l [N], --load-average[=N], --max-load[=N]\n\
333 Don't start multiple jobs unless load is below N.\n"),
334 N_("\
335 -L, --check-symlink-times Use the latest mtime between symlinks and target.\n"),
336 N_("\
337 -n, --just-print, --dry-run, --recon\n\
338 Don't actually run any recipe; just print them.\n"),
339 N_("\
340 -o FILE, --old-file=FILE, --assume-old=FILE\n\
341 Consider FILE to be very old and don't remake it.\n"),
342 N_("\
343 -p, --print-data-base Print make's internal database.\n"),
344 N_("\
345 -q, --question Run no recipe; exit status says if up to date.\n"),
346 N_("\
347 -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
348 N_("\
349 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
350 N_("\
351 -s, --silent, --quiet Don't echo recipes.\n"),
352 N_("\
353 -S, --no-keep-going, --stop\n\
354 Turns off -k.\n"),
355 N_("\
356 -t, --touch Touch targets instead of remaking them.\n"),
357 N_("\
358 -v, --version Print the version number of make and exit.\n"),
359 N_("\
360 -w, --print-directory Print the current directory.\n"),
361 N_("\
362 --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
363 N_("\
364 -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
365 Consider FILE to be infinitely new.\n"),
366 N_("\
367 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
368 NULL
371 /* The table of command switches. */
373 static const struct command_switch switches[] =
375 { 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
376 { 'B', flag, &always_make_set, 1, 1, 0, 0, 0, "always-make" },
377 { 'C', filename, &directories, 0, 0, 0, 0, 0, "directory" },
378 { 'd', flag, &debug_flag, 1, 1, 0, 0, 0, 0 },
379 { CHAR_MAX+1, string, &db_flags, 1, 1, 0, "basic", 0, "debug" },
380 #ifdef WINDOWS32
381 { 'D', flag, &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
382 #endif
383 { 'e', flag, &env_overrides, 1, 1, 0, 0, 0, "environment-overrides", },
384 { 'f', filename, &makefiles, 0, 0, 0, 0, 0, "file" },
385 { 'h', flag, &print_usage_flag, 0, 0, 0, 0, 0, "help" },
386 { 'i', flag, &ignore_errors_flag, 1, 1, 0, 0, 0, "ignore-errors" },
387 { 'I', filename, &include_directories, 1, 1, 0, 0, 0,
388 "include-dir" },
389 { 'j', positive_int, &job_slots, 1, 1, 0, &inf_jobs, &default_job_slots,
390 "jobs" },
391 { CHAR_MAX+2, string, &jobserver_fds, 1, 1, 0, 0, 0, "jobserver-fds" },
392 { 'k', flag, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
393 "keep-going" },
394 #ifndef NO_FLOAT
395 { 'l', floating, &max_load_average, 1, 1, 0, &default_load_average,
396 &default_load_average, "load-average" },
397 #else
398 { 'l', positive_int, &max_load_average, 1, 1, 0, &default_load_average,
399 &default_load_average, "load-average" },
400 #endif
401 { 'L', flag, &check_symlink_flag, 1, 1, 0, 0, 0, "check-symlink-times" },
402 { 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
403 { 'n', flag, &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
404 { 'o', filename, &old_files, 0, 0, 0, 0, 0, "old-file" },
405 { 'p', flag, &print_data_base_flag, 1, 1, 0, 0, 0, "print-data-base" },
406 { 'q', flag, &question_flag, 1, 1, 1, 0, 0, "question" },
407 { 'r', flag, &no_builtin_rules_flag, 1, 1, 0, 0, 0, "no-builtin-rules" },
408 { 'R', flag, &no_builtin_variables_flag, 1, 1, 0, 0, 0,
409 "no-builtin-variables" },
410 { 's', flag, &silent_flag, 1, 1, 0, 0, 0, "silent" },
411 { 'S', flag_off, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
412 "no-keep-going" },
413 { 't', flag, &touch_flag, 1, 1, 1, 0, 0, "touch" },
414 { 'v', flag, &print_version_flag, 1, 1, 0, 0, 0, "version" },
415 { CHAR_MAX+3, string, &verbosity_flags, 1, 1, 0, 0, 0,
416 "verbosity" },
417 { 'w', flag, &print_directory_flag, 1, 1, 0, 0, 0, "print-directory" },
418 { CHAR_MAX+4, flag, &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
419 "no-print-directory" },
420 { 'W', filename, &new_files, 0, 0, 0, 0, 0, "what-if" },
421 { CHAR_MAX+5, flag, &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
422 "warn-undefined-variables" },
423 { 0, 0, 0, 0, 0, 0, 0, 0, 0 }
426 /* Secondary long names for options. */
428 static struct option long_option_aliases[] =
430 { "quiet", no_argument, 0, 's' },
431 { "stop", no_argument, 0, 'S' },
432 { "new-file", required_argument, 0, 'W' },
433 { "assume-new", required_argument, 0, 'W' },
434 { "assume-old", required_argument, 0, 'o' },
435 { "max-load", optional_argument, 0, 'l' },
436 { "dry-run", no_argument, 0, 'n' },
437 { "recon", no_argument, 0, 'n' },
438 { "makefile", required_argument, 0, 'f' },
441 /* List of goal targets. */
443 static struct dep *goals, *lastgoal;
445 /* List of variables which were defined on the command line
446 (or, equivalently, in MAKEFLAGS). */
448 struct command_variable
450 struct command_variable *next;
451 struct variable *variable;
453 static struct command_variable *command_variables;
455 /* The name we were invoked with. */
457 char *program;
459 /* Our current directory before processing any -C options. */
461 char *directory_before_chdir;
463 /* Our current directory after processing all -C options. */
465 char *starting_directory;
467 /* Value of the MAKELEVEL variable at startup (or 0). */
469 unsigned int makelevel;
471 /* Pointer to the value of the .DEFAULT_GOAL special variable.
472 The value will be the name of the goal to remake if the command line
473 does not override it. It can be set by the makefile, or else it's
474 the first target defined in the makefile whose name does not start
475 with '.'. */
477 struct variable * default_goal_var;
479 /* Pointer to structure for the file .DEFAULT
480 whose commands are used for any file that has none of its own.
481 This is zero if the makefiles do not define .DEFAULT. */
483 struct file *default_file;
485 /* Nonzero if we have seen the magic `.POSIX' target.
486 This turns on pedantic compliance with POSIX.2. */
488 int posix_pedantic;
490 /* Nonzero if we have seen the '.SECONDEXPANSION' target.
491 This turns on secondary expansion of prerequisites. */
493 int second_expansion;
495 /* Nonzero if we have seen the `.NOTPARALLEL' target.
496 This turns off parallel builds for this invocation of make. */
498 int not_parallel;
500 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
501 print one warning about it during the run, and (b) we can print a final
502 warning at the end of the run. */
504 int clock_skew_detected;
506 /* Mask of signals that are being caught with fatal_error_signal. */
508 #ifdef POSIX
509 sigset_t fatal_signal_set;
510 #else
511 # ifdef HAVE_SIGSETMASK
512 int fatal_signal_mask;
513 # endif
514 #endif
516 #if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
517 # if !defined HAVE_SIGACTION
518 # define bsd_signal signal
519 # else
520 typedef RETSIGTYPE (*bsd_signal_ret_t) ();
522 static bsd_signal_ret_t
523 bsd_signal (int sig, bsd_signal_ret_t func)
525 struct sigaction act, oact;
526 act.sa_handler = func;
527 act.sa_flags = SA_RESTART;
528 sigemptyset (&act.sa_mask);
529 sigaddset (&act.sa_mask, sig);
530 if (sigaction (sig, &act, &oact) != 0)
531 return SIG_ERR;
532 return oact.sa_handler;
534 # endif
535 #endif
537 static void
538 initialize_global_hash_tables (void)
540 init_hash_global_variable_set ();
541 strcache_init ();
542 init_hash_files ();
543 hash_init_directories ();
544 hash_init_function_table ();
547 static const char *
548 expand_command_line_file (char *name)
550 const char *cp;
551 char *expanded = 0;
553 if (name[0] == '\0')
554 fatal (NILF, _("empty string invalid as file name"));
556 if (name[0] == '~')
558 expanded = tilde_expand (name);
559 if (expanded != 0)
560 name = expanded;
563 /* This is also done in parse_file_seq, so this is redundant
564 for names read from makefiles. It is here for names passed
565 on the command line. */
566 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
568 name += 2;
569 while (*name == '/')
570 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
571 ++name;
574 if (*name == '\0')
576 /* It was all slashes! Move back to the dot and truncate
577 it after the first slash, so it becomes just "./". */
579 --name;
580 while (name[0] != '.');
581 name[2] = '\0';
584 cp = strcache_add (name);
586 if (expanded)
587 free (expanded);
589 return cp;
592 /* Toggle -d on receipt of SIGUSR1. */
594 #ifdef SIGUSR1
595 static RETSIGTYPE
596 debug_signal_handler (int sig UNUSED)
598 db_level = db_level ? DB_NONE : DB_BASIC;
600 #endif
602 static void
603 decode_debug_flags (void)
605 const char **pp;
607 if (debug_flag)
608 db_level = DB_ALL;
610 if (!db_flags)
611 return;
613 for (pp=db_flags->list; *pp; ++pp)
615 const char *p = *pp;
617 while (1)
619 switch (tolower (p[0]))
621 case 'a':
622 db_level |= DB_ALL;
623 break;
624 case 'b':
625 db_level |= DB_BASIC;
626 break;
627 case 'i':
628 db_level |= DB_BASIC | DB_IMPLICIT;
629 break;
630 case 'j':
631 db_level |= DB_JOBS;
632 break;
633 case 'm':
634 db_level |= DB_BASIC | DB_MAKEFILES;
635 break;
636 case 'v':
637 db_level |= DB_BASIC | DB_VERBOSE;
638 break;
639 default:
640 fatal (NILF, _("unknown debug level specification `%s'"), p);
643 while (*(++p) != '\0')
644 if (*p == ',' || *p == ' ')
645 break;
647 if (*p == '\0')
648 break;
650 ++p;
655 #ifdef WINDOWS32
657 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
658 * exception and print it to stderr instead.
660 * If ! DB_VERBOSE, just print a simple message and exit.
661 * If DB_VERBOSE, print a more verbose message.
662 * If compiled for DEBUG, let exception pass through to GUI so that
663 * debuggers can attach.
665 LONG WINAPI
666 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
668 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
669 LPSTR cmdline = GetCommandLine();
670 LPSTR prg = strtok(cmdline, " ");
671 CHAR errmsg[1024];
672 #ifdef USE_EVENT_LOG
673 HANDLE hEventSource;
674 LPTSTR lpszStrings[1];
675 #endif
677 if (! ISDB (DB_VERBOSE))
679 sprintf(errmsg,
680 _("%s: Interrupt/Exception caught (code = 0x%lx, addr = 0x%lx)\n"),
681 prg, exrec->ExceptionCode, (DWORD)exrec->ExceptionAddress);
682 fprintf(stderr, errmsg);
683 exit(255);
686 sprintf(errmsg,
687 _("\nUnhandled exception filter called from program %s\nExceptionCode = %lx\nExceptionFlags = %lx\nExceptionAddress = %lx\n"),
688 prg, exrec->ExceptionCode, exrec->ExceptionFlags,
689 (DWORD)exrec->ExceptionAddress);
691 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
692 && exrec->NumberParameters >= 2)
693 sprintf(&errmsg[strlen(errmsg)],
694 (exrec->ExceptionInformation[0]
695 ? _("Access violation: write operation at address %lx\n")
696 : _("Access violation: read operation at address %lx\n")),
697 exrec->ExceptionInformation[1]);
699 /* turn this on if we want to put stuff in the event log too */
700 #ifdef USE_EVENT_LOG
701 hEventSource = RegisterEventSource(NULL, "GNU Make");
702 lpszStrings[0] = errmsg;
704 if (hEventSource != NULL)
706 ReportEvent(hEventSource, /* handle of event source */
707 EVENTLOG_ERROR_TYPE, /* event type */
708 0, /* event category */
709 0, /* event ID */
710 NULL, /* current user's SID */
711 1, /* strings in lpszStrings */
712 0, /* no bytes of raw data */
713 lpszStrings, /* array of error strings */
714 NULL); /* no raw data */
716 (VOID) DeregisterEventSource(hEventSource);
718 #endif
720 /* Write the error to stderr too */
721 fprintf(stderr, errmsg);
723 #ifdef DEBUG
724 return EXCEPTION_CONTINUE_SEARCH;
725 #else
726 exit(255);
727 return (255); /* not reached */
728 #endif
732 * On WIN32 systems we don't have the luxury of a /bin directory that
733 * is mapped globally to every drive mounted to the system. Since make could
734 * be invoked from any drive, and we don't want to propogate /bin/sh
735 * to every single drive. Allow ourselves a chance to search for
736 * a value for default shell here (if the default path does not exist).
740 find_and_set_default_shell (const char *token)
742 int sh_found = 0;
743 char *atoken = 0;
744 char *search_token;
745 char *tokend;
746 PATH_VAR(sh_path);
747 extern char *default_shell;
749 if (!token)
750 search_token = default_shell;
751 else
752 atoken = search_token = xstrdup (token);
754 /* If the user explicitly requests the DOS cmd shell, obey that request.
755 However, make sure that's what they really want by requiring the value
756 of SHELL either equal, or have a final path element of, "cmd" or
757 "cmd.exe" case-insensitive. */
758 tokend = search_token + strlen (search_token) - 3;
759 if (((tokend == search_token
760 || (tokend > search_token
761 && (tokend[-1] == '/' || tokend[-1] == '\\')))
762 && !strcasecmp (tokend, "cmd"))
763 || ((tokend - 4 == search_token
764 || (tokend - 4 > search_token
765 && (tokend[-5] == '/' || tokend[-5] == '\\')))
766 && !strcasecmp (tokend - 4, "cmd.exe"))) {
767 batch_mode_shell = 1;
768 unixy_shell = 0;
769 sprintf (sh_path, "%s", search_token);
770 default_shell = xstrdup (w32ify (sh_path, 0));
771 DB (DB_VERBOSE,
772 (_("find_and_set_shell setting default_shell = %s\n"), default_shell));
773 sh_found = 1;
774 } else if (!no_default_sh_exe &&
775 (token == NULL || !strcmp (search_token, default_shell))) {
776 /* no new information, path already set or known */
777 sh_found = 1;
778 } else if (file_exists_p (search_token)) {
779 /* search token path was found */
780 sprintf (sh_path, "%s", search_token);
781 default_shell = xstrdup (w32ify (sh_path, 0));
782 DB (DB_VERBOSE,
783 (_("find_and_set_shell setting default_shell = %s\n"), default_shell));
784 sh_found = 1;
785 } else {
786 char *p;
787 struct variable *v = lookup_variable (STRING_SIZE_TUPLE ("PATH"));
789 /* Search Path for shell */
790 if (v && v->value) {
791 char *ep;
793 p = v->value;
794 ep = strchr (p, PATH_SEPARATOR_CHAR);
796 while (ep && *ep) {
797 *ep = '\0';
799 if (dir_file_exists_p (p, search_token)) {
800 sprintf (sh_path, "%s/%s", p, search_token);
801 default_shell = xstrdup (w32ify (sh_path, 0));
802 sh_found = 1;
803 *ep = PATH_SEPARATOR_CHAR;
805 /* terminate loop */
806 p += strlen (p);
807 } else {
808 *ep = PATH_SEPARATOR_CHAR;
809 p = ++ep;
812 ep = strchr (p, PATH_SEPARATOR_CHAR);
815 /* be sure to check last element of Path */
816 if (p && *p && dir_file_exists_p (p, search_token)) {
817 sprintf (sh_path, "%s/%s", p, search_token);
818 default_shell = xstrdup (w32ify (sh_path, 0));
819 sh_found = 1;
822 if (sh_found)
823 DB (DB_VERBOSE,
824 (_("find_and_set_shell path search set default_shell = %s\n"),
825 default_shell));
829 /* naive test */
830 if (!unixy_shell && sh_found &&
831 (strstr (default_shell, "sh") || strstr (default_shell, "SH"))) {
832 unixy_shell = 1;
833 batch_mode_shell = 0;
836 #ifdef BATCH_MODE_ONLY_SHELL
837 batch_mode_shell = 1;
838 #endif
840 if (atoken)
841 free (atoken);
843 return (sh_found);
845 #endif /* WINDOWS32 */
847 #ifdef __MSDOS__
848 static void
849 msdos_return_to_initial_directory (void)
851 if (directory_before_chdir)
852 chdir (directory_before_chdir);
854 #endif /* __MSDOS__ */
856 char *mktemp (char *template);
857 int mkstemp (char *template);
859 FILE *
860 open_tmpfile(char **name, const char *template)
862 #ifdef HAVE_FDOPEN
863 int fd;
864 #endif
866 #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
867 # define TEMPLATE_LEN strlen (template)
868 #else
869 # define TEMPLATE_LEN L_tmpnam
870 #endif
871 *name = xmalloc (TEMPLATE_LEN + 1);
872 strcpy (*name, template);
874 #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
875 /* It's safest to use mkstemp(), if we can. */
876 fd = mkstemp (*name);
877 if (fd == -1)
878 return 0;
879 return fdopen (fd, "w");
880 #else
881 # ifdef HAVE_MKTEMP
882 (void) mktemp (*name);
883 # else
884 (void) tmpnam (*name);
885 # endif
887 # ifdef HAVE_FDOPEN
888 /* Can't use mkstemp(), but guard against a race condition. */
889 fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
890 if (fd == -1)
891 return 0;
892 return fdopen (fd, "w");
893 # else
894 /* Not secure, but what can we do? */
895 return fopen (*name, "w");
896 # endif
897 #endif
901 #ifdef _AMIGA
903 main (int argc, char **argv)
904 #else
906 main (int argc, char **argv, char **envp)
907 #endif
909 static char *stdin_nm = 0;
910 int makefile_status = MAKE_SUCCESS;
911 struct dep *read_makefiles;
912 PATH_VAR (current_directory);
913 unsigned int restarts = 0;
914 #ifdef WINDOWS32
915 char *unix_path = NULL;
916 char *windows32_path = NULL;
918 SetUnhandledExceptionFilter(handle_runtime_exceptions);
920 /* start off assuming we have no shell */
921 unixy_shell = 0;
922 no_default_sh_exe = 1;
923 #endif
925 #ifdef SET_STACK_SIZE
926 /* Get rid of any avoidable limit on stack size. */
928 struct rlimit rlim;
930 /* Set the stack limit huge so that alloca does not fail. */
931 if (getrlimit (RLIMIT_STACK, &rlim) == 0)
933 rlim.rlim_cur = rlim.rlim_max;
934 setrlimit (RLIMIT_STACK, &rlim);
937 #endif
939 #ifdef HAVE_ATEXIT
940 atexit (close_stdout);
941 #endif
943 /* Needed for OS/2 */
944 initialize_main(&argc, &argv);
946 reading_file = 0;
948 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
949 /* Request the most powerful version of `system', to
950 make up for the dumb default shell. */
951 __system_flags = (__system_redirect
952 | __system_use_shell
953 | __system_allow_multiple_cmds
954 | __system_allow_long_cmds
955 | __system_handle_null_commands
956 | __system_emulate_chdir);
958 #endif
960 /* Set up gettext/internationalization support. */
961 setlocale (LC_ALL, "");
962 bindtextdomain (PACKAGE, LOCALEDIR);
963 textdomain (PACKAGE);
965 #ifdef POSIX
966 sigemptyset (&fatal_signal_set);
967 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
968 #else
969 #ifdef HAVE_SIGSETMASK
970 fatal_signal_mask = 0;
971 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
972 #else
973 #define ADD_SIG(sig)
974 #endif
975 #endif
977 #define FATAL_SIG(sig) \
978 if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
979 bsd_signal (sig, SIG_IGN); \
980 else \
981 ADD_SIG (sig);
983 #ifdef SIGHUP
984 FATAL_SIG (SIGHUP);
985 #endif
986 #ifdef SIGQUIT
987 FATAL_SIG (SIGQUIT);
988 #endif
989 FATAL_SIG (SIGINT);
990 FATAL_SIG (SIGTERM);
992 #ifdef __MSDOS__
993 /* Windows 9X delivers FP exceptions in child programs to their
994 parent! We don't want Make to die when a child divides by zero,
995 so we work around that lossage by catching SIGFPE. */
996 FATAL_SIG (SIGFPE);
997 #endif
999 #ifdef SIGDANGER
1000 FATAL_SIG (SIGDANGER);
1001 #endif
1002 #ifdef SIGXCPU
1003 FATAL_SIG (SIGXCPU);
1004 #endif
1005 #ifdef SIGXFSZ
1006 FATAL_SIG (SIGXFSZ);
1007 #endif
1009 #undef FATAL_SIG
1011 /* Do not ignore the child-death signal. This must be done before
1012 any children could possibly be created; otherwise, the wait
1013 functions won't work on systems with the SVR4 ECHILD brain
1014 damage, if our invoker is ignoring this signal. */
1016 #ifdef HAVE_WAIT_NOHANG
1017 # if defined SIGCHLD
1018 (void) bsd_signal (SIGCHLD, SIG_DFL);
1019 # endif
1020 # if defined SIGCLD && SIGCLD != SIGCHLD
1021 (void) bsd_signal (SIGCLD, SIG_DFL);
1022 # endif
1023 #endif
1025 /* Make sure stdout is line-buffered. */
1027 #ifdef HAVE_SETVBUF
1028 # ifdef SETVBUF_REVERSED
1029 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
1030 # else /* setvbuf not reversed. */
1031 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
1032 setvbuf (stdout, 0, _IOLBF, BUFSIZ);
1033 # endif /* setvbuf reversed. */
1034 #elif HAVE_SETLINEBUF
1035 setlinebuf (stdout);
1036 #endif /* setlinebuf missing. */
1038 /* Figure out where this program lives. */
1040 if (argv[0] == 0)
1041 argv[0] = "";
1042 if (argv[0][0] == '\0')
1043 program = "make";
1044 else
1046 #ifdef VMS
1047 program = strrchr (argv[0], ']');
1048 #else
1049 program = strrchr (argv[0], '/');
1050 #endif
1051 #if defined(__MSDOS__) || defined(__EMX__)
1052 if (program == 0)
1053 program = strrchr (argv[0], '\\');
1054 else
1056 /* Some weird environments might pass us argv[0] with
1057 both kinds of slashes; we must find the rightmost. */
1058 char *p = strrchr (argv[0], '\\');
1059 if (p && p > program)
1060 program = p;
1062 if (program == 0 && argv[0][1] == ':')
1063 program = argv[0] + 1;
1064 #endif
1065 #ifdef WINDOWS32
1066 if (program == 0)
1068 /* Extract program from full path */
1069 int argv0_len;
1070 program = strrchr (argv[0], '\\');
1071 if (program)
1073 argv0_len = strlen(program);
1074 if (argv0_len > 4 && streq (&program[argv0_len - 4], ".exe"))
1075 /* Remove .exe extension */
1076 program[argv0_len - 4] = '\0';
1079 #endif
1080 if (program == 0)
1081 program = argv[0];
1082 else
1083 ++program;
1086 /* Set up to access user data (files). */
1087 user_access ();
1089 initialize_global_hash_tables ();
1091 /* Figure out where we are. */
1093 #ifdef WINDOWS32
1094 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1095 #else
1096 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1097 #endif
1099 #ifdef HAVE_GETCWD
1100 perror_with_name ("getcwd", "");
1101 #else
1102 error (NILF, "getwd: %s", current_directory);
1103 #endif
1104 current_directory[0] = '\0';
1105 directory_before_chdir = 0;
1107 else
1108 directory_before_chdir = xstrdup (current_directory);
1109 #ifdef __MSDOS__
1110 /* Make sure we will return to the initial directory, come what may. */
1111 atexit (msdos_return_to_initial_directory);
1112 #endif
1114 /* Initialize the special variables. */
1115 define_variable (".VARIABLES", 10, "", o_default, 0)->special = 1;
1116 /* define_variable (".TARGETS", 8, "", o_default, 0)->special = 1; */
1117 define_variable (".RECIPEPREFIX", 13, "", o_default, 0)->special = 1;
1119 /* Set up .FEATURES */
1120 define_variable (".FEATURES", 9,
1121 "target-specific order-only second-expansion else-if",
1122 o_default, 0);
1123 #ifndef NO_ARCHIVES
1124 do_variable_definition (NILF, ".FEATURES", "archives",
1125 o_default, f_append, 0);
1126 #endif
1127 #ifdef MAKE_JOBSERVER
1128 do_variable_definition (NILF, ".FEATURES", "jobserver",
1129 o_default, f_append, 0);
1130 #endif
1131 #ifdef MAKE_SYMLINKS
1132 do_variable_definition (NILF, ".FEATURES", "check-symlink",
1133 o_default, f_append, 0);
1134 #endif
1136 /* Read in variables from the environment. It is important that this be
1137 done before $(MAKE) is figured out so its definitions will not be
1138 from the environment. */
1140 #ifndef _AMIGA
1142 unsigned int i;
1144 for (i = 0; envp[i] != 0; ++i)
1146 int do_not_define = 0;
1147 char *ep = envp[i];
1149 while (*ep != '\0' && *ep != '=')
1150 ++ep;
1151 #ifdef WINDOWS32
1152 if (!unix_path && strneq(envp[i], "PATH=", 5))
1153 unix_path = ep+1;
1154 else if (!strnicmp(envp[i], "Path=", 5)) {
1155 do_not_define = 1; /* it gets defined after loop exits */
1156 if (!windows32_path)
1157 windows32_path = ep+1;
1159 #endif
1160 /* The result of pointer arithmetic is cast to unsigned int for
1161 machines where ptrdiff_t is a different size that doesn't widen
1162 the same. */
1163 if (!do_not_define)
1165 struct variable *v;
1167 v = define_variable (envp[i], (unsigned int) (ep - envp[i]),
1168 ep + 1, o_env, 1);
1169 /* Force exportation of every variable culled from the
1170 environment. We used to rely on target_environment's
1171 v_default code to do this. But that does not work for the
1172 case where an environment variable is redefined in a makefile
1173 with `override'; it should then still be exported, because it
1174 was originally in the environment. */
1175 v->export = v_export;
1177 /* Another wrinkle is that POSIX says the value of SHELL set in
1178 the makefile won't change the value of SHELL given to
1179 subprocesses. */
1180 if (streq (v->name, "SHELL"))
1182 #ifndef __MSDOS__
1183 v->export = v_noexport;
1184 #endif
1185 shell_var.name = "SHELL";
1186 shell_var.length = 5;
1187 shell_var.value = xstrdup (ep + 1);
1190 /* If MAKE_RESTARTS is set, remember it but don't export it. */
1191 if (streq (v->name, "MAKE_RESTARTS"))
1193 v->export = v_noexport;
1194 restarts = (unsigned int) atoi (ep + 1);
1199 #ifdef WINDOWS32
1200 /* If we didn't find a correctly spelled PATH we define PATH as
1201 * either the first mispelled value or an empty string
1203 if (!unix_path)
1204 define_variable("PATH", 4,
1205 windows32_path ? windows32_path : "",
1206 o_env, 1)->export = v_export;
1207 #endif
1208 #else /* For Amiga, read the ENV: device, ignoring all dirs */
1210 BPTR env, file, old;
1211 char buffer[1024];
1212 int len;
1213 __aligned struct FileInfoBlock fib;
1215 env = Lock ("ENV:", ACCESS_READ);
1216 if (env)
1218 old = CurrentDir (DupLock(env));
1219 Examine (env, &fib);
1221 while (ExNext (env, &fib))
1223 if (fib.fib_DirEntryType < 0) /* File */
1225 /* Define an empty variable. It will be filled in
1226 variable_lookup(). Makes startup quite a bit
1227 faster. */
1228 define_variable (fib.fib_FileName,
1229 strlen (fib.fib_FileName),
1230 "", o_env, 1)->export = v_export;
1233 UnLock (env);
1234 UnLock(CurrentDir(old));
1237 #endif
1239 /* Decode the switches. */
1241 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1242 #if 0
1243 /* People write things like:
1244 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
1245 and we set the -p, -i and -e switches. Doesn't seem quite right. */
1246 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1247 #endif
1248 decode_switches (argc, argv, 0);
1249 #ifdef WINDOWS32
1250 if (suspend_flag) {
1251 fprintf(stderr, "%s (pid = %ld)\n", argv[0], GetCurrentProcessId());
1252 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
1253 Sleep(30 * 1000);
1254 fprintf(stderr, _("done sleep(30). Continuing.\n"));
1256 #endif
1258 decode_debug_flags ();
1260 /* Set always_make_flag if -B was given and we've not restarted already. */
1261 always_make_flag = always_make_set && (restarts == 0);
1263 /* Print version information. */
1264 if (print_version_flag || print_data_base_flag || db_level)
1266 print_version ();
1268 /* `make --version' is supposed to just print the version and exit. */
1269 if (print_version_flag)
1270 die (0);
1273 #ifndef VMS
1274 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
1275 (If it is a relative pathname with a slash, prepend our directory name
1276 so the result will run the same program regardless of the current dir.
1277 If it is a name with no slash, we can only hope that PATH did not
1278 find it in the current directory.) */
1279 #ifdef WINDOWS32
1281 * Convert from backslashes to forward slashes for
1282 * programs like sh which don't like them. Shouldn't
1283 * matter if the path is one way or the other for
1284 * CreateProcess().
1286 if (strpbrk(argv[0], "/:\\") ||
1287 strstr(argv[0], "..") ||
1288 strneq(argv[0], "//", 2))
1289 argv[0] = xstrdup(w32ify(argv[0],1));
1290 #else /* WINDOWS32 */
1291 #if defined (__MSDOS__) || defined (__EMX__)
1292 if (strchr (argv[0], '\\'))
1294 char *p;
1296 argv[0] = xstrdup (argv[0]);
1297 for (p = argv[0]; *p; p++)
1298 if (*p == '\\')
1299 *p = '/';
1301 /* If argv[0] is not in absolute form, prepend the current
1302 directory. This can happen when Make is invoked by another DJGPP
1303 program that uses a non-absolute name. */
1304 if (current_directory[0] != '\0'
1305 && argv[0] != 0
1306 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':'))
1307 # ifdef __EMX__
1308 /* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
1309 && (strchr (argv[0], '/') != 0 || strchr (argv[0], '\\') != 0)
1310 # endif
1312 argv[0] = xstrdup (concat (current_directory, "/", argv[0]));
1313 #else /* !__MSDOS__ */
1314 if (current_directory[0] != '\0'
1315 && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0
1316 #ifdef HAVE_DOS_PATHS
1317 && (argv[0][0] != '\\' && (!argv[0][0] || argv[0][1] != ':'))
1318 && strchr (argv[0], '\\') != 0
1319 #endif
1321 argv[0] = xstrdup (concat (current_directory, "/", argv[0]));
1322 #endif /* !__MSDOS__ */
1323 #endif /* WINDOWS32 */
1324 #endif
1326 /* The extra indirection through $(MAKE_COMMAND) is done
1327 for hysterical raisins. */
1328 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
1329 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
1331 if (command_variables != 0)
1333 struct command_variable *cv;
1334 struct variable *v;
1335 unsigned int len = 0;
1336 char *value, *p;
1338 /* Figure out how much space will be taken up by the command-line
1339 variable definitions. */
1340 for (cv = command_variables; cv != 0; cv = cv->next)
1342 v = cv->variable;
1343 len += 2 * strlen (v->name);
1344 if (! v->recursive)
1345 ++len;
1346 ++len;
1347 len += 2 * strlen (v->value);
1348 ++len;
1351 /* Now allocate a buffer big enough and fill it. */
1352 p = value = alloca (len);
1353 for (cv = command_variables; cv != 0; cv = cv->next)
1355 v = cv->variable;
1356 p = quote_for_env (p, v->name);
1357 if (! v->recursive)
1358 *p++ = ':';
1359 *p++ = '=';
1360 p = quote_for_env (p, v->value);
1361 *p++ = ' ';
1363 p[-1] = '\0'; /* Kill the final space and terminate. */
1365 /* Define an unchangeable variable with a name that no POSIX.2
1366 makefile could validly use for its own variable. */
1367 (void) define_variable ("-*-command-variables-*-", 23,
1368 value, o_automatic, 0);
1370 /* Define the variable; this will not override any user definition.
1371 Normally a reference to this variable is written into the value of
1372 MAKEFLAGS, allowing the user to override this value to affect the
1373 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1374 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1375 a reference to this hidden variable is written instead. */
1376 (void) define_variable ("MAKEOVERRIDES", 13,
1377 "${-*-command-variables-*-}", o_env, 1);
1380 /* If there were -C flags, move ourselves about. */
1381 if (directories != 0)
1383 unsigned int i;
1384 for (i = 0; directories->list[i] != 0; ++i)
1386 const char *dir = directories->list[i];
1387 #ifdef WINDOWS32
1388 /* WINDOWS32 chdir() doesn't work if the directory has a trailing '/'
1389 But allow -C/ just in case someone wants that. */
1391 char *p = dir + strlen (dir) - 1;
1392 while (p > dir && (p[0] == '/' || p[0] == '\\'))
1393 --p;
1394 p[1] = '\0';
1396 #endif
1397 if (chdir (dir) < 0)
1398 pfatal_with_name (dir);
1402 #ifdef WINDOWS32
1404 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1405 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1407 * The functions in dir.c can incorrectly cache information for "."
1408 * before we have changed directory and this can cause file
1409 * lookups to fail because the current directory (.) was pointing
1410 * at the wrong place when it was first evaluated.
1412 no_default_sh_exe = !find_and_set_default_shell(NULL);
1414 #endif /* WINDOWS32 */
1415 /* Figure out the level of recursion. */
1417 struct variable *v = lookup_variable (STRING_SIZE_TUPLE (MAKELEVEL_NAME));
1418 if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
1419 makelevel = (unsigned int) atoi (v->value);
1420 else
1421 makelevel = 0;
1424 /* Except under -s, always do -w in sub-makes and under -C. */
1425 if (!silent_flag && (directories != 0 || makelevel > 0))
1426 print_directory_flag = 1;
1428 /* Let the user disable that with --no-print-directory. */
1429 if (inhibit_print_directory_flag)
1430 print_directory_flag = 0;
1432 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1433 if (no_builtin_variables_flag)
1434 no_builtin_rules_flag = 1;
1436 /* Construct the list of include directories to search. */
1438 construct_include_path (include_directories == 0
1439 ? 0 : include_directories->list);
1441 /* Figure out where we are now, after chdir'ing. */
1442 if (directories == 0)
1443 /* We didn't move, so we're still in the same place. */
1444 starting_directory = current_directory;
1445 else
1447 #ifdef WINDOWS32
1448 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1449 #else
1450 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1451 #endif
1453 #ifdef HAVE_GETCWD
1454 perror_with_name ("getcwd", "");
1455 #else
1456 error (NILF, "getwd: %s", current_directory);
1457 #endif
1458 starting_directory = 0;
1460 else
1461 starting_directory = current_directory;
1464 (void) define_variable ("CURDIR", 6, current_directory, o_file, 0);
1466 /* Read any stdin makefiles into temporary files. */
1468 if (makefiles != 0)
1470 unsigned int i;
1471 for (i = 0; i < makefiles->idx; ++i)
1472 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1474 /* This makefile is standard input. Since we may re-exec
1475 and thus re-read the makefiles, we read standard input
1476 into a temporary file and read from that. */
1477 FILE *outfile;
1478 char *template, *tmpdir;
1480 if (stdin_nm)
1481 fatal (NILF, _("Makefile from standard input specified twice."));
1483 #ifdef VMS
1484 # define DEFAULT_TMPDIR "sys$scratch:"
1485 #else
1486 # ifdef P_tmpdir
1487 # define DEFAULT_TMPDIR P_tmpdir
1488 # else
1489 # define DEFAULT_TMPDIR "/tmp"
1490 # endif
1491 #endif
1492 #define DEFAULT_TMPFILE "GmXXXXXX"
1494 if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
1495 #if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
1496 /* These are also used commonly on these platforms. */
1497 && ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
1498 && ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
1499 #endif
1501 tmpdir = DEFAULT_TMPDIR;
1503 template = alloca (strlen (tmpdir) + sizeof (DEFAULT_TMPFILE) + 1);
1504 strcpy (template, tmpdir);
1506 #ifdef HAVE_DOS_PATHS
1507 if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
1508 strcat (template, "/");
1509 #else
1510 # ifndef VMS
1511 if (template[strlen (template) - 1] != '/')
1512 strcat (template, "/");
1513 # endif /* !VMS */
1514 #endif /* !HAVE_DOS_PATHS */
1516 strcat (template, DEFAULT_TMPFILE);
1517 outfile = open_tmpfile (&stdin_nm, template);
1518 if (outfile == 0)
1519 pfatal_with_name (_("fopen (temporary file)"));
1520 while (!feof (stdin) && ! ferror (stdin))
1522 char buf[2048];
1523 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1524 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1525 pfatal_with_name (_("fwrite (temporary file)"));
1527 fclose (outfile);
1529 /* Replace the name that read_all_makefiles will
1530 see with the name of the temporary file. */
1531 makefiles->list[i] = strcache_add (stdin_nm);
1533 /* Make sure the temporary file will not be remade. */
1535 struct file *f = enter_file (strcache_add (stdin_nm));
1536 f->updated = 1;
1537 f->update_status = 0;
1538 f->command_state = cs_finished;
1539 /* Can't be intermediate, or it'll be removed too early for
1540 make re-exec. */
1541 f->intermediate = 0;
1542 f->dontcare = 0;
1547 #ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
1548 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1549 /* Set up to handle children dying. This must be done before
1550 reading in the makefiles so that `shell' function calls will work.
1552 If we don't have a hanging wait we have to fall back to old, broken
1553 functionality here and rely on the signal handler and counting
1554 children.
1556 If we're using the jobs pipe we need a signal handler so that
1557 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1558 jobserver pipe in job.c if we're waiting for a token.
1560 If none of these are true, we don't need a signal handler at all. */
1562 RETSIGTYPE child_handler (int sig);
1563 # if defined SIGCHLD
1564 bsd_signal (SIGCHLD, child_handler);
1565 # endif
1566 # if defined SIGCLD && SIGCLD != SIGCHLD
1567 bsd_signal (SIGCLD, child_handler);
1568 # endif
1570 #endif
1571 #endif
1573 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1574 #ifdef SIGUSR1
1575 bsd_signal (SIGUSR1, debug_signal_handler);
1576 #endif
1578 /* Define the initial list of suffixes for old-style rules. */
1580 set_default_suffixes ();
1582 /* Define the file rules for the built-in suffix rules. These will later
1583 be converted into pattern rules. We used to do this in
1584 install_default_implicit_rules, but since that happens after reading
1585 makefiles, it results in the built-in pattern rules taking precedence
1586 over makefile-specified suffix rules, which is wrong. */
1588 install_default_suffix_rules ();
1590 /* Define some internal and special variables. */
1592 define_automatic_variables ();
1594 /* Set up the MAKEFLAGS and MFLAGS variables
1595 so makefiles can look at them. */
1597 define_makeflags (0, 0);
1599 /* Define the default variables. */
1600 define_default_variables ();
1602 default_file = enter_file (strcache_add (".DEFAULT"));
1604 default_goal_var = define_variable (".DEFAULT_GOAL", 13, "", o_file, 0);
1606 /* Read all the makefiles. */
1608 read_makefiles
1609 = read_all_makefiles (makefiles == 0 ? 0 : makefiles->list);
1611 #ifdef WINDOWS32
1612 /* look one last time after reading all Makefiles */
1613 if (no_default_sh_exe)
1614 no_default_sh_exe = !find_and_set_default_shell(NULL);
1615 #endif /* WINDOWS32 */
1617 #if defined (__MSDOS__) || defined (__EMX__)
1618 /* We need to know what kind of shell we will be using. */
1620 extern int _is_unixy_shell (const char *_path);
1621 struct variable *shv = lookup_variable (STRING_SIZE_TUPLE ("SHELL"));
1622 extern int unixy_shell;
1623 extern char *default_shell;
1625 if (shv && *shv->value)
1627 char *shell_path = recursively_expand(shv);
1629 if (shell_path && _is_unixy_shell (shell_path))
1630 unixy_shell = 1;
1631 else
1632 unixy_shell = 0;
1633 if (shell_path)
1634 default_shell = shell_path;
1637 #endif /* __MSDOS__ || __EMX__ */
1639 /* Decode switches again, in case the variables were set by the makefile. */
1640 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1641 #if 0
1642 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1643 #endif
1645 #if defined (__MSDOS__) || defined (__EMX__)
1646 if (job_slots != 1
1647 # ifdef __EMX__
1648 && _osmode != OS2_MODE /* turn off -j if we are in DOS mode */
1649 # endif
1652 error (NILF,
1653 _("Parallel jobs (-j) are not supported on this platform."));
1654 error (NILF, _("Resetting to single job (-j1) mode."));
1655 job_slots = 1;
1657 #endif
1659 #ifdef MAKE_JOBSERVER
1660 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1662 if (jobserver_fds)
1664 const char *cp;
1665 unsigned int ui;
1667 for (ui=1; ui < jobserver_fds->idx; ++ui)
1668 if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui]))
1669 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1671 /* Now parse the fds string and make sure it has the proper format. */
1673 cp = jobserver_fds->list[0];
1675 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1676 fatal (NILF,
1677 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1679 DB (DB_JOBS,
1680 (_("Jobserver client (fds %d,%d)\n"), job_fds[0], job_fds[1]));
1682 /* The combination of a pipe + !job_slots means we're using the
1683 jobserver. If !job_slots and we don't have a pipe, we can start
1684 infinite jobs. If we see both a pipe and job_slots >0 that means the
1685 user set -j explicitly. This is broken; in this case obey the user
1686 (ignore the jobserver pipe for this make) but print a message. */
1688 if (job_slots > 0)
1689 error (NILF,
1690 _("warning: -jN forced in submake: disabling jobserver mode."));
1692 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1693 handler. If this fails with EBADF, the parent has closed the pipe
1694 on us because it didn't think we were a submake. If so, print a
1695 warning then default to -j1. */
1697 else if ((job_rfd = dup (job_fds[0])) < 0)
1699 if (errno != EBADF)
1700 pfatal_with_name (_("dup jobserver"));
1702 error (NILF,
1703 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1704 job_slots = 1;
1707 if (job_slots > 0)
1709 close (job_fds[0]);
1710 close (job_fds[1]);
1711 job_fds[0] = job_fds[1] = -1;
1712 free (jobserver_fds->list);
1713 free (jobserver_fds);
1714 jobserver_fds = 0;
1718 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1719 Set up the pipe and install the fds option for our children. */
1721 if (job_slots > 1)
1723 char *cp;
1724 char c = '+';
1726 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1727 pfatal_with_name (_("creating jobs pipe"));
1729 /* Every make assumes that it always has one job it can run. For the
1730 submakes it's the token they were given by their parent. For the
1731 top make, we just subtract one from the number the user wants. We
1732 want job_slots to be 0 to indicate we're using the jobserver. */
1734 master_job_slots = job_slots;
1736 while (--job_slots)
1738 int r;
1740 EINTRLOOP (r, write (job_fds[1], &c, 1));
1741 if (r != 1)
1742 pfatal_with_name (_("init jobserver pipe"));
1745 /* Fill in the jobserver_fds struct for our children. */
1747 cp = xmalloc ((sizeof ("1024")*2)+1);
1748 sprintf (cp, "%d,%d", job_fds[0], job_fds[1]);
1750 jobserver_fds = (struct stringlist *)
1751 xmalloc (sizeof (struct stringlist));
1752 jobserver_fds->list = xmalloc (sizeof (char *));
1753 jobserver_fds->list[0] = cp;
1754 jobserver_fds->idx = 1;
1755 jobserver_fds->max = 1;
1757 #endif
1759 #ifndef MAKE_SYMLINKS
1760 if (check_symlink_flag)
1762 error (NILF, _("Symbolic links not supported: disabling -L."));
1763 check_symlink_flag = 0;
1765 #endif
1767 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1769 define_makeflags (1, 0);
1771 /* Make each `struct dep' point at the `struct file' for the file
1772 depended on. Also do magic for special targets. */
1774 snap_deps ();
1776 /* Convert old-style suffix rules to pattern rules. It is important to
1777 do this before installing the built-in pattern rules below, so that
1778 makefile-specified suffix rules take precedence over built-in pattern
1779 rules. */
1781 convert_to_pattern ();
1783 /* Install the default implicit pattern rules.
1784 This used to be done before reading the makefiles.
1785 But in that case, built-in pattern rules were in the chain
1786 before user-defined ones, so they matched first. */
1788 install_default_implicit_rules ();
1790 /* Compute implicit rule limits. */
1792 count_implicit_rule_limits ();
1794 /* Construct the listings of directories in VPATH lists. */
1796 build_vpath_lists ();
1798 /* Mark files given with -o flags as very old and as having been updated
1799 already, and files given with -W flags as brand new (time-stamp as far
1800 as possible into the future). If restarts is set we'll do -W later. */
1802 if (old_files != 0)
1804 const char **p;
1805 for (p = old_files->list; *p != 0; ++p)
1807 struct file *f = enter_file (*p);
1808 f->last_mtime = f->mtime_before_update = OLD_MTIME;
1809 f->updated = 1;
1810 f->update_status = 0;
1811 f->command_state = cs_finished;
1815 if (!restarts && new_files != 0)
1817 const char **p;
1818 for (p = new_files->list; *p != 0; ++p)
1820 struct file *f = enter_file (*p);
1821 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1825 /* Initialize the remote job module. */
1826 remote_setup ();
1828 if (read_makefiles != 0)
1830 /* Update any makefiles if necessary. */
1832 FILE_TIMESTAMP *makefile_mtimes = 0;
1833 unsigned int mm_idx = 0;
1834 char **nargv = argv;
1835 int nargc = argc;
1836 int orig_db_level = db_level;
1837 int status;
1839 if (! ISDB (DB_MAKEFILES))
1840 db_level = DB_NONE;
1842 DB (DB_BASIC, (_("Updating makefiles....\n")));
1844 /* Remove any makefiles we don't want to try to update.
1845 Also record the current modtimes so we can compare them later. */
1847 register struct dep *d, *last;
1848 last = 0;
1849 d = read_makefiles;
1850 while (d != 0)
1852 struct file *f = d->file;
1853 if (f->double_colon)
1854 for (f = f->double_colon; f != NULL; f = f->prev)
1856 if (f->deps == 0 && f->cmds != 0)
1858 /* This makefile is a :: target with commands, but
1859 no dependencies. So, it will always be remade.
1860 This might well cause an infinite loop, so don't
1861 try to remake it. (This will only happen if
1862 your makefiles are written exceptionally
1863 stupidly; but if you work for Athena, that's how
1864 you write your makefiles.) */
1866 DB (DB_VERBOSE,
1867 (_("Makefile `%s' might loop; not remaking it.\n"),
1868 f->name));
1870 if (last == 0)
1871 read_makefiles = d->next;
1872 else
1873 last->next = d->next;
1875 /* Free the storage. */
1876 free_dep (d);
1878 d = last == 0 ? read_makefiles : last->next;
1880 break;
1883 if (f == NULL || !f->double_colon)
1885 makefile_mtimes = xrealloc (makefile_mtimes,
1886 (mm_idx+1)
1887 * sizeof (FILE_TIMESTAMP));
1888 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1889 last = d;
1890 d = d->next;
1895 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1896 define_makeflags (1, 1);
1898 rebuilding_makefiles = 1;
1899 status = update_goal_chain (read_makefiles);
1900 rebuilding_makefiles = 0;
1902 switch (status)
1904 case 1:
1905 /* The only way this can happen is if the user specified -q and asked
1906 * for one of the makefiles to be remade as a target on the command
1907 * line. Since we're not actually updating anything with -q we can
1908 * treat this as "did nothing".
1911 case -1:
1912 /* Did nothing. */
1913 break;
1915 case 2:
1916 /* Failed to update. Figure out if we care. */
1918 /* Nonzero if any makefile was successfully remade. */
1919 int any_remade = 0;
1920 /* Nonzero if any makefile we care about failed
1921 in updating or could not be found at all. */
1922 int any_failed = 0;
1923 unsigned int i;
1924 struct dep *d;
1926 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1928 /* Reset the considered flag; we may need to look at the file
1929 again to print an error. */
1930 d->file->considered = 0;
1932 if (d->file->updated)
1934 /* This makefile was updated. */
1935 if (d->file->update_status == 0)
1937 /* It was successfully updated. */
1938 any_remade |= (file_mtime_no_search (d->file)
1939 != makefile_mtimes[i]);
1941 else if (! (d->changed & RM_DONTCARE))
1943 FILE_TIMESTAMP mtime;
1944 /* The update failed and this makefile was not
1945 from the MAKEFILES variable, so we care. */
1946 error (NILF, _("Failed to remake makefile `%s'."),
1947 d->file->name);
1948 mtime = file_mtime_no_search (d->file);
1949 any_remade |= (mtime != NONEXISTENT_MTIME
1950 && mtime != makefile_mtimes[i]);
1951 makefile_status = MAKE_FAILURE;
1954 else
1955 /* This makefile was not found at all. */
1956 if (! (d->changed & RM_DONTCARE))
1958 /* This is a makefile we care about. See how much. */
1959 if (d->changed & RM_INCLUDED)
1960 /* An included makefile. We don't need
1961 to die, but we do want to complain. */
1962 error (NILF,
1963 _("Included makefile `%s' was not found."),
1964 dep_name (d));
1965 else
1967 /* A normal makefile. We must die later. */
1968 error (NILF, _("Makefile `%s' was not found"),
1969 dep_name (d));
1970 any_failed = 1;
1974 /* Reset this to empty so we get the right error message below. */
1975 read_makefiles = 0;
1977 if (any_remade)
1978 goto re_exec;
1979 if (any_failed)
1980 die (2);
1981 break;
1984 case 0:
1985 re_exec:
1986 /* Updated successfully. Re-exec ourselves. */
1988 remove_intermediates (0);
1990 if (print_data_base_flag)
1991 print_data_base ();
1993 log_working_directory (0);
1995 clean_jobserver (0);
1997 if (makefiles != 0)
1999 /* These names might have changed. */
2000 int i, j = 0;
2001 for (i = 1; i < argc; ++i)
2002 if (strneq (argv[i], "-f", 2)) /* XXX */
2004 char *p = &argv[i][2];
2005 if (*p == '\0')
2006 /* This cast is OK since we never modify argv. */
2007 argv[++i] = (char *) makefiles->list[j];
2008 else
2009 argv[i] = xstrdup (concat ("-f", makefiles->list[j], ""));
2010 ++j;
2014 /* Add -o option for the stdin temporary file, if necessary. */
2015 if (stdin_nm)
2017 nargv = xmalloc ((nargc + 2) * sizeof (char *));
2018 memcpy (nargv, argv, argc * sizeof (char *));
2019 nargv[nargc++] = xstrdup (concat ("-o", stdin_nm, ""));
2020 nargv[nargc] = 0;
2023 if (directories != 0 && directories->idx > 0)
2025 int bad = 1;
2026 if (directory_before_chdir != 0)
2028 if (chdir (directory_before_chdir) < 0)
2029 perror_with_name ("chdir", "");
2030 else
2031 bad = 0;
2033 if (bad)
2034 fatal (NILF, _("Couldn't change back to original directory."));
2037 ++restarts;
2039 if (ISDB (DB_BASIC))
2041 char **p;
2042 printf (_("Re-executing[%u]:"), restarts);
2043 for (p = nargv; *p != 0; ++p)
2044 printf (" %s", *p);
2045 putchar ('\n');
2048 #ifndef _AMIGA
2050 char **p;
2051 for (p = environ; *p != 0; ++p)
2053 if (strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH)
2054 && (*p)[MAKELEVEL_LENGTH] == '=')
2056 *p = alloca (40);
2057 sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
2059 if (strneq (*p, "MAKE_RESTARTS=", 14))
2061 *p = alloca (40);
2062 sprintf (*p, "MAKE_RESTARTS=%u", restarts);
2063 restarts = 0;
2067 #else /* AMIGA */
2069 char buffer[256];
2071 sprintf (buffer, "%u", makelevel);
2072 SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
2074 sprintf (buffer, "%u", restarts);
2075 SetVar ("MAKE_RESTARTS", buffer, -1, GVF_GLOBAL_ONLY);
2076 restarts = 0;
2078 #endif
2080 /* If we didn't set the restarts variable yet, add it. */
2081 if (restarts)
2083 char *b = alloca (40);
2084 sprintf (b, "MAKE_RESTARTS=%u", restarts);
2085 putenv (b);
2088 fflush (stdout);
2089 fflush (stderr);
2091 /* Close the dup'd jobserver pipe if we opened one. */
2092 if (job_rfd >= 0)
2093 close (job_rfd);
2095 #ifdef _AMIGA
2096 exec_command (nargv);
2097 exit (0);
2098 #elif defined (__EMX__)
2100 /* It is not possible to use execve() here because this
2101 would cause the parent process to be terminated with
2102 exit code 0 before the child process has been terminated.
2103 Therefore it may be the best solution simply to spawn the
2104 child process including all file handles and to wait for its
2105 termination. */
2106 int pid;
2107 int status;
2108 pid = child_execute_job (0, 1, nargv, environ);
2110 /* is this loop really necessary? */
2111 do {
2112 pid = wait (&status);
2113 } while (pid <= 0);
2114 /* use the exit code of the child process */
2115 exit (WIFEXITED(status) ? WEXITSTATUS(status) : EXIT_FAILURE);
2117 #else
2118 exec_command (nargv, environ);
2119 #endif
2120 /* NOTREACHED */
2122 default:
2123 #define BOGUS_UPDATE_STATUS 0
2124 assert (BOGUS_UPDATE_STATUS);
2125 break;
2128 db_level = orig_db_level;
2130 /* Free the makefile mtimes (if we allocated any). */
2131 if (makefile_mtimes)
2132 free (makefile_mtimes);
2135 /* Set up `MAKEFLAGS' again for the normal targets. */
2136 define_makeflags (1, 0);
2138 /* Set always_make_flag if -B was given. */
2139 always_make_flag = always_make_set;
2141 /* If restarts is set we haven't set up -W files yet, so do that now. */
2142 if (restarts && new_files != 0)
2144 const char **p;
2145 for (p = new_files->list; *p != 0; ++p)
2147 struct file *f = enter_file (*p);
2148 f->last_mtime = f->mtime_before_update = NEW_MTIME;
2152 /* If there is a temp file from reading a makefile from stdin, get rid of
2153 it now. */
2154 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
2155 perror_with_name (_("unlink (temporary file): "), stdin_nm);
2157 /* If there were no command-line goals, use the default. */
2158 if (goals == 0)
2160 char *p;
2162 if (default_goal_var->recursive)
2163 p = variable_expand (default_goal_var->value);
2164 else
2166 p = variable_buffer_output (variable_buffer, default_goal_var->value,
2167 strlen (default_goal_var->value));
2168 *p = '\0';
2169 p = variable_buffer;
2172 if (*p != '\0')
2174 struct file *f = lookup_file (p);
2176 /* If .DEFAULT_GOAL is a non-existent target, enter it into the
2177 table and let the standard logic sort it out. */
2178 if (f == 0)
2180 struct nameseq *ns;
2182 ns = multi_glob (parse_file_seq (&p, '\0', sizeof (struct nameseq), 1),
2183 sizeof (struct nameseq));
2184 if (ns)
2186 /* .DEFAULT_GOAL should contain one target. */
2187 if (ns->next != 0)
2188 fatal (NILF, _(".DEFAULT_GOAL contains more than one target"));
2190 f = enter_file (strcache_add (ns->name));
2192 ns->name = 0; /* It was reused by enter_file(). */
2193 free_ns_chain (ns);
2197 if (f)
2199 goals = alloc_dep ();
2200 goals->file = f;
2204 else
2205 lastgoal->next = 0;
2208 if (!goals)
2210 if (read_makefiles == 0)
2211 fatal (NILF, _("No targets specified and no makefile found"));
2213 fatal (NILF, _("No targets"));
2216 /* Update the goals. */
2218 DB (DB_BASIC, (_("Updating goal targets....\n")));
2221 int status;
2223 switch (update_goal_chain (goals))
2225 case -1:
2226 /* Nothing happened. */
2227 case 0:
2228 /* Updated successfully. */
2229 status = makefile_status;
2230 break;
2231 case 1:
2232 /* We are under -q and would run some commands. */
2233 status = MAKE_TROUBLE;
2234 break;
2235 case 2:
2236 /* Updating failed. POSIX.2 specifies exit status >1 for this;
2237 but in VMS, there is only success and failure. */
2238 status = MAKE_FAILURE;
2239 break;
2240 default:
2241 abort ();
2244 /* If we detected some clock skew, generate one last warning */
2245 if (clock_skew_detected)
2246 error (NILF,
2247 _("warning: Clock skew detected. Your build may be incomplete."));
2249 /* Exit. */
2250 die (status);
2253 /* NOTREACHED */
2254 return 0;
2257 /* Parsing of arguments, decoding of switches. */
2259 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
2260 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
2261 (sizeof (long_option_aliases) /
2262 sizeof (long_option_aliases[0]))];
2264 /* Fill in the string and vector for getopt. */
2265 static void
2266 init_switches (void)
2268 char *p;
2269 unsigned int c;
2270 unsigned int i;
2272 if (options[0] != '\0')
2273 /* Already done. */
2274 return;
2276 p = options;
2278 /* Return switch and non-switch args in order, regardless of
2279 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
2280 *p++ = '-';
2282 for (i = 0; switches[i].c != '\0'; ++i)
2284 long_options[i].name = (switches[i].long_name == 0 ? "" :
2285 switches[i].long_name);
2286 long_options[i].flag = 0;
2287 long_options[i].val = switches[i].c;
2288 if (short_option (switches[i].c))
2289 *p++ = switches[i].c;
2290 switch (switches[i].type)
2292 case flag:
2293 case flag_off:
2294 case ignore:
2295 long_options[i].has_arg = no_argument;
2296 break;
2298 case string:
2299 case filename:
2300 case positive_int:
2301 case floating:
2302 if (short_option (switches[i].c))
2303 *p++ = ':';
2304 if (switches[i].noarg_value != 0)
2306 if (short_option (switches[i].c))
2307 *p++ = ':';
2308 long_options[i].has_arg = optional_argument;
2310 else
2311 long_options[i].has_arg = required_argument;
2312 break;
2315 *p = '\0';
2316 for (c = 0; c < (sizeof (long_option_aliases) /
2317 sizeof (long_option_aliases[0]));
2318 ++c)
2319 long_options[i++] = long_option_aliases[c];
2320 long_options[i].name = 0;
2323 static void
2324 handle_non_switch_argument (char *arg, int env)
2326 /* Non-option argument. It might be a variable definition. */
2327 struct variable *v;
2328 if (arg[0] == '-' && arg[1] == '\0')
2329 /* Ignore plain `-' for compatibility. */
2330 return;
2331 v = try_variable_definition (0, arg, o_command, 0);
2332 if (v != 0)
2334 /* It is indeed a variable definition. If we don't already have this
2335 one, record a pointer to the variable for later use in
2336 define_makeflags. */
2337 struct command_variable *cv;
2339 for (cv = command_variables; cv != 0; cv = cv->next)
2340 if (cv->variable == v)
2341 break;
2343 if (! cv) {
2344 cv = xmalloc (sizeof (*cv));
2345 cv->variable = v;
2346 cv->next = command_variables;
2347 command_variables = cv;
2350 else if (! env)
2352 /* Not an option or variable definition; it must be a goal
2353 target! Enter it as a file and add it to the dep chain of
2354 goals. */
2355 struct file *f = enter_file (strcache_add (expand_command_line_file (arg)));
2356 f->cmd_target = 1;
2358 if (goals == 0)
2360 goals = alloc_dep ();
2361 lastgoal = goals;
2363 else
2365 lastgoal->next = alloc_dep ();
2366 lastgoal = lastgoal->next;
2369 lastgoal->file = f;
2372 /* Add this target name to the MAKECMDGOALS variable. */
2373 struct variable *gv;
2374 const char *value;
2376 gv = lookup_variable (STRING_SIZE_TUPLE ("MAKECMDGOALS"));
2377 if (gv == 0)
2378 value = f->name;
2379 else
2381 /* Paste the old and new values together */
2382 unsigned int oldlen, newlen;
2383 char *vp;
2385 oldlen = strlen (gv->value);
2386 newlen = strlen (f->name);
2387 vp = alloca (oldlen + 1 + newlen + 1);
2388 memcpy (vp, gv->value, oldlen);
2389 vp[oldlen] = ' ';
2390 memcpy (&vp[oldlen + 1], f->name, newlen + 1);
2391 value = vp;
2393 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
2398 /* Print a nice usage method. */
2400 static void
2401 print_usage (int bad)
2403 const char *const *cpp;
2404 FILE *usageto;
2406 if (print_version_flag)
2407 print_version ();
2409 usageto = bad ? stderr : stdout;
2411 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
2413 for (cpp = usage; *cpp; ++cpp)
2414 fputs (_(*cpp), usageto);
2416 if (!remote_description || *remote_description == '\0')
2417 fprintf (usageto, _("\nThis program built for %s\n"), make_host);
2418 else
2419 fprintf (usageto, _("\nThis program built for %s (%s)\n"),
2420 make_host, remote_description);
2422 fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
2425 /* Decode switches from ARGC and ARGV.
2426 They came from the environment if ENV is nonzero. */
2428 static void
2429 decode_switches (int argc, char **argv, int env)
2431 int bad = 0;
2432 register const struct command_switch *cs;
2433 register struct stringlist *sl;
2434 register int c;
2436 /* getopt does most of the parsing for us.
2437 First, get its vectors set up. */
2439 init_switches ();
2441 /* Let getopt produce error messages for the command line,
2442 but not for options from the environment. */
2443 opterr = !env;
2444 /* Reset getopt's state. */
2445 optind = 0;
2447 while (optind < argc)
2449 /* Parse the next argument. */
2450 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2451 if (c == EOF)
2452 /* End of arguments, or "--" marker seen. */
2453 break;
2454 else if (c == 1)
2455 /* An argument not starting with a dash. */
2456 handle_non_switch_argument (optarg, env);
2457 else if (c == '?')
2458 /* Bad option. We will print a usage message and die later.
2459 But continue to parse the other options so the user can
2460 see all he did wrong. */
2461 bad = 1;
2462 else
2463 for (cs = switches; cs->c != '\0'; ++cs)
2464 if (cs->c == c)
2466 /* Whether or not we will actually do anything with
2467 this switch. We test this individually inside the
2468 switch below rather than just once outside it, so that
2469 options which are to be ignored still consume args. */
2470 int doit = !env || cs->env;
2472 switch (cs->type)
2474 default:
2475 abort ();
2477 case ignore:
2478 break;
2480 case flag:
2481 case flag_off:
2482 if (doit)
2483 *(int *) cs->value_ptr = cs->type == flag;
2484 break;
2486 case string:
2487 case filename:
2488 if (!doit)
2489 break;
2491 if (optarg == 0)
2492 optarg = xstrdup (cs->noarg_value);
2493 else if (*optarg == '\0')
2495 error (NILF, _("the `-%c' option requires a non-empty string argument"),
2496 cs->c);
2497 bad = 1;
2500 sl = *(struct stringlist **) cs->value_ptr;
2501 if (sl == 0)
2503 sl = (struct stringlist *)
2504 xmalloc (sizeof (struct stringlist));
2505 sl->max = 5;
2506 sl->idx = 0;
2507 sl->list = xmalloc (5 * sizeof (char *));
2508 *(struct stringlist **) cs->value_ptr = sl;
2510 else if (sl->idx == sl->max - 1)
2512 sl->max += 5;
2513 sl->list = xrealloc (sl->list,
2514 sl->max * sizeof (char *));
2516 if (cs->type == filename)
2517 sl->list[sl->idx++] = expand_command_line_file (optarg);
2518 else
2519 sl->list[sl->idx++] = optarg;
2520 sl->list[sl->idx] = 0;
2521 break;
2523 case positive_int:
2524 /* See if we have an option argument; if we do require that
2525 it's all digits, not something like "10foo". */
2526 if (optarg == 0 && argc > optind)
2528 const char *cp;
2529 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
2531 if (cp[0] == '\0')
2532 optarg = argv[optind++];
2535 if (!doit)
2536 break;
2538 if (optarg != 0)
2540 int i = atoi (optarg);
2541 const char *cp;
2543 /* Yes, I realize we're repeating this in some cases. */
2544 for (cp = optarg; ISDIGIT (cp[0]); ++cp)
2547 if (i < 1 || cp[0] != '\0')
2549 error (NILF, _("the `-%c' option requires a positive integral argument"),
2550 cs->c);
2551 bad = 1;
2553 else
2554 *(unsigned int *) cs->value_ptr = i;
2556 else
2557 *(unsigned int *) cs->value_ptr
2558 = *(unsigned int *) cs->noarg_value;
2559 break;
2561 #ifndef NO_FLOAT
2562 case floating:
2563 if (optarg == 0 && optind < argc
2564 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2565 optarg = argv[optind++];
2567 if (doit)
2568 *(double *) cs->value_ptr
2569 = (optarg != 0 ? atof (optarg)
2570 : *(double *) cs->noarg_value);
2572 break;
2573 #endif
2576 /* We've found the switch. Stop looking. */
2577 break;
2581 /* There are no more options according to getting getopt, but there may
2582 be some arguments left. Since we have asked for non-option arguments
2583 to be returned in order, this only happens when there is a "--"
2584 argument to prevent later arguments from being options. */
2585 while (optind < argc)
2586 handle_non_switch_argument (argv[optind++], env);
2589 if (!env && (bad || print_usage_flag))
2591 print_usage (bad);
2592 die (bad ? 2 : 0);
2596 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2597 We do this by chopping the value into a vector of words, prepending a
2598 dash to the first word if it lacks one, and passing the vector to
2599 decode_switches. */
2601 static void
2602 decode_env_switches (char *envar, unsigned int len)
2604 char *varref = alloca (2 + len + 2);
2605 char *value, *p;
2606 int argc;
2607 char **argv;
2609 /* Get the variable's value. */
2610 varref[0] = '$';
2611 varref[1] = '(';
2612 memcpy (&varref[2], envar, len);
2613 varref[2 + len] = ')';
2614 varref[2 + len + 1] = '\0';
2615 value = variable_expand (varref);
2617 /* Skip whitespace, and check for an empty value. */
2618 value = next_token (value);
2619 len = strlen (value);
2620 if (len == 0)
2621 return;
2623 /* Allocate a vector that is definitely big enough. */
2624 argv = alloca ((1 + len + 1) * sizeof (char *));
2626 /* Allocate a buffer to copy the value into while we split it into words
2627 and unquote it. We must use permanent storage for this because
2628 decode_switches may store pointers into the passed argument words. */
2629 p = xmalloc (2 * len);
2631 /* getopt will look at the arguments starting at ARGV[1].
2632 Prepend a spacer word. */
2633 argv[0] = 0;
2634 argc = 1;
2635 argv[argc] = p;
2636 while (*value != '\0')
2638 if (*value == '\\' && value[1] != '\0')
2639 ++value; /* Skip the backslash. */
2640 else if (isblank ((unsigned char)*value))
2642 /* End of the word. */
2643 *p++ = '\0';
2644 argv[++argc] = p;
2646 ++value;
2647 while (isblank ((unsigned char)*value));
2648 continue;
2650 *p++ = *value++;
2652 *p = '\0';
2653 argv[++argc] = 0;
2655 if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
2656 /* The first word doesn't start with a dash and isn't a variable
2657 definition. Add a dash and pass it along to decode_switches. We
2658 need permanent storage for this in case decode_switches saves
2659 pointers into the value. */
2660 argv[1] = xstrdup (concat ("-", argv[1], ""));
2662 /* Parse those words. */
2663 decode_switches (argc, argv, 1);
2666 /* Quote the string IN so that it will be interpreted as a single word with
2667 no magic by decode_env_switches; also double dollar signs to avoid
2668 variable expansion in make itself. Write the result into OUT, returning
2669 the address of the next character to be written.
2670 Allocating space for OUT twice the length of IN is always sufficient. */
2672 static char *
2673 quote_for_env (char *out, const char *in)
2675 while (*in != '\0')
2677 if (*in == '$')
2678 *out++ = '$';
2679 else if (isblank ((unsigned char)*in) || *in == '\\')
2680 *out++ = '\\';
2681 *out++ = *in++;
2684 return out;
2687 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2688 command switches. Include options with args if ALL is nonzero.
2689 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2691 static void
2692 define_makeflags (int all, int makefile)
2694 static const char ref[] = "$(MAKEOVERRIDES)";
2695 static const char posixref[] = "$(-*-command-variables-*-)";
2696 register const struct command_switch *cs;
2697 char *flagstring;
2698 register char *p;
2699 unsigned int words;
2700 struct variable *v;
2702 /* We will construct a linked list of `struct flag's describing
2703 all the flags which need to go in MAKEFLAGS. Then, once we
2704 know how many there are and their lengths, we can put them all
2705 together in a string. */
2707 struct flag
2709 struct flag *next;
2710 const struct command_switch *cs;
2711 const char *arg;
2713 struct flag *flags = 0;
2714 unsigned int flagslen = 0;
2715 #define ADD_FLAG(ARG, LEN) \
2716 do { \
2717 struct flag *new = alloca (sizeof (struct flag)); \
2718 new->cs = cs; \
2719 new->arg = (ARG); \
2720 new->next = flags; \
2721 flags = new; \
2722 if (new->arg == 0) \
2723 ++flagslen; /* Just a single flag letter. */ \
2724 else \
2725 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2726 if (!short_option (cs->c)) \
2727 /* This switch has no single-letter version, so we use the long. */ \
2728 flagslen += 2 + strlen (cs->long_name); \
2729 } while (0)
2731 for (cs = switches; cs->c != '\0'; ++cs)
2732 if (cs->toenv && (!makefile || !cs->no_makefile))
2733 switch (cs->type)
2735 case ignore:
2736 break;
2738 case flag:
2739 case flag_off:
2740 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2741 && (cs->default_value == 0
2742 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2743 ADD_FLAG (0, 0);
2744 break;
2746 case positive_int:
2747 if (all)
2749 if ((cs->default_value != 0
2750 && (*(unsigned int *) cs->value_ptr
2751 == *(unsigned int *) cs->default_value)))
2752 break;
2753 else if (cs->noarg_value != 0
2754 && (*(unsigned int *) cs->value_ptr ==
2755 *(unsigned int *) cs->noarg_value))
2756 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2757 else if (cs->c == 'j')
2758 /* Special case for `-j'. */
2759 ADD_FLAG ("1", 1);
2760 else
2762 char *buf = alloca (30);
2763 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2764 ADD_FLAG (buf, strlen (buf));
2767 break;
2769 #ifndef NO_FLOAT
2770 case floating:
2771 if (all)
2773 if (cs->default_value != 0
2774 && (*(double *) cs->value_ptr
2775 == *(double *) cs->default_value))
2776 break;
2777 else if (cs->noarg_value != 0
2778 && (*(double *) cs->value_ptr
2779 == *(double *) cs->noarg_value))
2780 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2781 else
2783 char *buf = alloca (100);
2784 sprintf (buf, "%g", *(double *) cs->value_ptr);
2785 ADD_FLAG (buf, strlen (buf));
2788 break;
2789 #endif
2791 case filename:
2792 case string:
2793 if (all)
2795 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2796 if (sl != 0)
2798 /* Add the elements in reverse order, because all the flags
2799 get reversed below; and the order matters for some
2800 switches (like -I). */
2801 unsigned int i = sl->idx;
2802 while (i-- > 0)
2803 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2806 break;
2808 default:
2809 abort ();
2812 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2814 #undef ADD_FLAG
2816 /* Construct the value in FLAGSTRING.
2817 We allocate enough space for a preceding dash and trailing null. */
2818 flagstring = alloca (1 + flagslen + 1);
2819 memset (flagstring, '\0', 1 + flagslen + 1);
2820 p = flagstring;
2821 words = 1;
2822 *p++ = '-';
2823 while (flags != 0)
2825 /* Add the flag letter or name to the string. */
2826 if (short_option (flags->cs->c))
2827 *p++ = flags->cs->c;
2828 else
2830 if (*p != '-')
2832 *p++ = ' ';
2833 *p++ = '-';
2835 *p++ = '-';
2836 strcpy (p, flags->cs->long_name);
2837 p += strlen (p);
2839 if (flags->arg != 0)
2841 /* A flag that takes an optional argument which in this case is
2842 omitted is specified by ARG being "". We must distinguish
2843 because a following flag appended without an intervening " -"
2844 is considered the arg for the first. */
2845 if (flags->arg[0] != '\0')
2847 /* Add its argument too. */
2848 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2849 p = quote_for_env (p, flags->arg);
2851 ++words;
2852 /* Write a following space and dash, for the next flag. */
2853 *p++ = ' ';
2854 *p++ = '-';
2856 else if (!short_option (flags->cs->c))
2858 ++words;
2859 /* Long options must each go in their own word,
2860 so we write the following space and dash. */
2861 *p++ = ' ';
2862 *p++ = '-';
2864 flags = flags->next;
2867 /* Define MFLAGS before appending variable definitions. */
2869 if (p == &flagstring[1])
2870 /* No flags. */
2871 flagstring[0] = '\0';
2872 else if (p[-1] == '-')
2874 /* Kill the final space and dash. */
2875 p -= 2;
2876 *p = '\0';
2878 else
2879 /* Terminate the string. */
2880 *p = '\0';
2882 /* Since MFLAGS is not parsed for flags, there is no reason to
2883 override any makefile redefinition. */
2884 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2886 if (all && command_variables != 0)
2888 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2889 command-line variable definitions. */
2891 if (p == &flagstring[1])
2892 /* No flags written, so elide the leading dash already written. */
2893 p = flagstring;
2894 else
2896 /* Separate the variables from the switches with a "--" arg. */
2897 if (p[-1] != '-')
2899 /* We did not already write a trailing " -". */
2900 *p++ = ' ';
2901 *p++ = '-';
2903 /* There is a trailing " -"; fill it out to " -- ". */
2904 *p++ = '-';
2905 *p++ = ' ';
2908 /* Copy in the string. */
2909 if (posix_pedantic)
2911 memcpy (p, posixref, sizeof posixref - 1);
2912 p += sizeof posixref - 1;
2914 else
2916 memcpy (p, ref, sizeof ref - 1);
2917 p += sizeof ref - 1;
2920 else if (p == &flagstring[1])
2922 words = 0;
2923 --p;
2925 else if (p[-1] == '-')
2926 /* Kill the final space and dash. */
2927 p -= 2;
2928 /* Terminate the string. */
2929 *p = '\0';
2931 v = define_variable ("MAKEFLAGS", 9,
2932 /* If there are switches, omit the leading dash
2933 unless it is a single long option with two
2934 leading dashes. */
2935 &flagstring[(flagstring[0] == '-'
2936 && flagstring[1] != '-')
2937 ? 1 : 0],
2938 /* This used to use o_env, but that lost when a
2939 makefile defined MAKEFLAGS. Makefiles set
2940 MAKEFLAGS to add switches, but we still want
2941 to redefine its value with the full set of
2942 switches. Of course, an override or command
2943 definition will still take precedence. */
2944 o_file, 1);
2945 if (! all)
2946 /* The first time we are called, set MAKEFLAGS to always be exported.
2947 We should not do this again on the second call, because that is
2948 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2949 v->export = v_export;
2952 /* Print version information. */
2954 static void
2955 print_version (void)
2957 static int printed_version = 0;
2959 char *precede = print_data_base_flag ? "# " : "";
2961 if (printed_version)
2962 /* Do it only once. */
2963 return;
2965 printf ("%sGNU Make %s\n", precede, version_string);
2967 if (!remote_description || *remote_description == '\0')
2968 printf (_("%sBuilt for %s\n"), precede, make_host);
2969 else
2970 printf (_("%sBuilt for %s (%s)\n"),
2971 precede, make_host, remote_description);
2973 /* Print this untranslated. The coding standards recommend translating the
2974 (C) to the copyright symbol, but this string is going to change every
2975 year, and none of the rest of it should be translated (including the
2976 word "Copyright", so it hardly seems worth it. */
2978 printf ("%sCopyright (C) 2007 Free Software Foundation, Inc.\n", precede);
2980 printf (_("%sLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
2981 %sThis is free software: you are free to change and redistribute it.\n\
2982 %sThere is NO WARRANTY, to the extent permitted by law.\n"),
2983 precede, precede, precede);
2985 printed_version = 1;
2987 /* Flush stdout so the user doesn't have to wait to see the
2988 version information while things are thought about. */
2989 fflush (stdout);
2992 /* Print a bunch of information about this and that. */
2994 static void
2995 print_data_base ()
2997 time_t when;
2999 when = time ((time_t *) 0);
3000 printf (_("\n# Make data base, printed on %s"), ctime (&when));
3002 print_variable_data_base ();
3003 print_dir_data_base ();
3004 print_rule_data_base ();
3005 print_file_data_base ();
3006 print_vpath_data_base ();
3007 strcache_print_stats ("#");
3009 when = time ((time_t *) 0);
3010 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
3013 static void
3014 clean_jobserver (int status)
3016 char token = '+';
3018 /* Sanity: have we written all our jobserver tokens back? If our
3019 exit status is 2 that means some kind of syntax error; we might not
3020 have written all our tokens so do that now. If tokens are left
3021 after any other error code, that's bad. */
3023 if (job_fds[0] != -1 && jobserver_tokens)
3025 if (status != 2)
3026 error (NILF,
3027 "INTERNAL: Exiting with %u jobserver tokens (should be 0)!",
3028 jobserver_tokens);
3029 else
3030 while (jobserver_tokens--)
3032 int r;
3034 EINTRLOOP (r, write (job_fds[1], &token, 1));
3035 if (r != 1)
3036 perror_with_name ("write", "");
3041 /* Sanity: If we're the master, were all the tokens written back? */
3043 if (master_job_slots)
3045 /* We didn't write one for ourself, so start at 1. */
3046 unsigned int tcnt = 1;
3048 /* Close the write side, so the read() won't hang. */
3049 close (job_fds[1]);
3051 while (read (job_fds[0], &token, 1) == 1)
3052 ++tcnt;
3054 if (tcnt != master_job_slots)
3055 error (NILF,
3056 "INTERNAL: Exiting with %u jobserver tokens available; should be %u!",
3057 tcnt, master_job_slots);
3059 close (job_fds[0]);
3063 /* Exit with STATUS, cleaning up as necessary. */
3065 void
3066 die (int status)
3068 static char dying = 0;
3070 if (!dying)
3072 int err;
3074 dying = 1;
3076 if (print_version_flag)
3077 print_version ();
3079 /* Wait for children to die. */
3080 err = (status != 0);
3081 while (job_slots_used > 0)
3082 reap_children (1, err);
3084 /* Let the remote job module clean up its state. */
3085 remote_cleanup ();
3087 /* Remove the intermediate files. */
3088 remove_intermediates (0);
3090 if (print_data_base_flag)
3091 print_data_base ();
3093 verify_file_data_base ();
3095 clean_jobserver (status);
3097 /* Try to move back to the original directory. This is essential on
3098 MS-DOS (where there is really only one process), and on Unix it
3099 puts core files in the original directory instead of the -C
3100 directory. Must wait until after remove_intermediates(), or unlinks
3101 of relative pathnames fail. */
3102 if (directory_before_chdir != 0)
3103 chdir (directory_before_chdir);
3105 log_working_directory (0);
3108 exit (status);
3111 /* Write a message indicating that we've just entered or
3112 left (according to ENTERING) the current directory. */
3114 void
3115 log_working_directory (int entering)
3117 static int entered = 0;
3119 /* Print nothing without the flag. Don't print the entering message
3120 again if we already have. Don't print the leaving message if we
3121 haven't printed the entering message. */
3122 if (! print_directory_flag || entering == entered)
3123 return;
3125 entered = entering;
3127 if (print_data_base_flag)
3128 fputs ("# ", stdout);
3130 /* Use entire sentences to give the translators a fighting chance. */
3132 if (makelevel == 0)
3133 if (starting_directory == 0)
3134 if (entering)
3135 printf (_("%s: Entering an unknown directory\n"), program);
3136 else
3137 printf (_("%s: Leaving an unknown directory\n"), program);
3138 else
3139 if (entering)
3140 printf (_("%s: Entering directory `%s'\n"),
3141 program, starting_directory);
3142 else
3143 printf (_("%s: Leaving directory `%s'\n"),
3144 program, starting_directory);
3145 else
3146 if (starting_directory == 0)
3147 if (entering)
3148 printf (_("%s[%u]: Entering an unknown directory\n"),
3149 program, makelevel);
3150 else
3151 printf (_("%s[%u]: Leaving an unknown directory\n"),
3152 program, makelevel);
3153 else
3154 if (entering)
3155 printf (_("%s[%u]: Entering directory `%s'\n"),
3156 program, makelevel, starting_directory);
3157 else
3158 printf (_("%s[%u]: Leaving directory `%s'\n"),
3159 program, makelevel, starting_directory);
3161 /* Flush stdout to be sure this comes before any stderr output. */
3162 fflush (stdout);