1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1994, 1995, 1996, 1997, 1998, 1999,
3 2002, 2003 Free Software Foundation, Inc.
4 This file is part of GNU Make.
6 GNU Make is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Make is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Make; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19 MA 02111-1307, USA. */
34 # include <proto/dos.h>
39 #include "pathstuff.h"
42 # include <sys/types.h>
43 # include <sys/wait.h>
50 int __stack
= 20000; /* Make sure we have 20K of stack space */
53 extern void init_dir
PARAMS ((void));
54 extern void remote_setup
PARAMS ((void));
55 extern void remote_cleanup
PARAMS ((void));
56 extern RETSIGTYPE fatal_error_signal
PARAMS ((int sig
));
58 extern void print_variable_data_base
PARAMS ((void));
59 extern void print_dir_data_base
PARAMS ((void));
60 extern void print_rule_data_base
PARAMS ((void));
61 extern void print_file_data_base
PARAMS ((void));
62 extern void print_vpath_data_base
PARAMS ((void));
64 #if defined HAVE_WAITPID || defined HAVE_WAIT3
65 # define HAVE_WAIT_NOHANG
72 # ifndef sun /* Sun has an incorrect decl in a header. */
73 extern void exit
PARAMS ((int)) __attribute__ ((noreturn
));
75 extern double atof ();
78 static void print_data_base
PARAMS ((void));
79 static void print_version
PARAMS ((void));
80 static void decode_switches
PARAMS ((int argc
, char **argv
, int env
));
81 static void decode_env_switches
PARAMS ((char *envar
, unsigned int len
));
82 static void define_makeflags
PARAMS ((int all
, int makefile
));
83 static char *quote_for_env
PARAMS ((char *out
, char *in
));
84 static void initialize_global_hash_tables
PARAMS ((void));
87 /* The structure that describes an accepted command switch. */
91 int c
; /* The switch character. */
93 enum /* Type of the value. */
95 flag
, /* Turn int flag on. */
96 flag_off
, /* Turn int flag off. */
97 string
, /* One string per switch. */
98 positive_int
, /* A positive integer. */
99 floating
, /* A floating-point number (double). */
100 ignore
/* Ignored. */
103 char *value_ptr
; /* Pointer to the value-holding variable. */
105 unsigned int env
:1; /* Can come from MAKEFLAGS. */
106 unsigned int toenv
:1; /* Should be put in MAKEFLAGS. */
107 unsigned int no_makefile
:1; /* Don't propagate when remaking makefiles. */
109 char *noarg_value
; /* Pointer to value used if no argument is given. */
110 char *default_value
;/* Pointer to default value. */
112 char *long_name
; /* Long option name. */
115 /* True if C is a switch value that corresponds to a short option. */
117 #define short_option(c) ((c) <= CHAR_MAX)
119 /* The structure used to hold the list of strings given
120 in command switches of a type that takes string arguments. */
124 char **list
; /* Nil-terminated list of strings. */
125 unsigned int idx
; /* Index into above. */
126 unsigned int max
; /* Number of pointers allocated. */
130 /* The recognized command switches. */
132 /* Nonzero means do not print commands to be executed (-s). */
136 /* Nonzero means just touch the files
137 that would appear to need remaking (-t) */
141 /* Nonzero means just print what commands would need to be executed,
142 don't actually execute them (-n). */
146 /* Print debugging info (--debug). */
148 static struct stringlist
*db_flags
;
149 static int debug_flag
= 0;
154 /* Suspend make in main for a short time to allow debugger to attach */
156 int suspend_flag
= 0;
159 /* Environment variables override makefile definitions. */
161 int env_overrides
= 0;
163 /* Nonzero means ignore status codes returned by commands
164 executed to remake files. Just treat them all as successful (-i). */
166 int ignore_errors_flag
= 0;
168 /* Nonzero means don't remake anything, just print the data base
169 that results from reading the makefile (-p). */
171 int print_data_base_flag
= 0;
173 /* Nonzero means don't remake anything; just return a nonzero status
174 if the specified targets are not up to date (-q). */
176 int question_flag
= 0;
178 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
180 int no_builtin_rules_flag
= 0;
181 int no_builtin_variables_flag
= 0;
183 /* Nonzero means keep going even if remaking some file fails (-k). */
186 int default_keep_going_flag
= 0;
188 /* Nonzero means print directory before starting and when done (-w). */
190 int print_directory_flag
= 0;
192 /* Nonzero means ignore print_directory_flag and never print the directory.
193 This is necessary because print_directory_flag is set implicitly. */
195 int inhibit_print_directory_flag
= 0;
197 /* Nonzero means print version information. */
199 int print_version_flag
= 0;
201 /* List of makefiles given with -f switches. */
203 static struct stringlist
*makefiles
= 0;
205 /* Number of job slots (commands that can be run at once). */
207 unsigned int job_slots
= 1;
208 unsigned int default_job_slots
= 1;
210 /* Value of job_slots that means no limit. */
212 static unsigned int inf_jobs
= 0;
214 /* File descriptors for the jobs pipe. */
216 static struct stringlist
*jobserver_fds
= 0;
218 int job_fds
[2] = { -1, -1 };
221 /* Maximum load average at which multiple jobs will be run.
222 Negative values mean unlimited, while zero means limit to
223 zero load (which could be useful to start infinite jobs remotely
224 but one at a time locally). */
226 double max_load_average
= -1.0;
227 double default_load_average
= -1.0;
229 int max_load_average
= -1;
230 int default_load_average
= -1;
233 /* List of directories given with -C switches. */
235 static struct stringlist
*directories
= 0;
237 /* List of include directories given with -I switches. */
239 static struct stringlist
*include_directories
= 0;
241 /* List of files given with -o switches. */
243 static struct stringlist
*old_files
= 0;
245 /* List of files given with -W switches. */
247 static struct stringlist
*new_files
= 0;
249 /* If nonzero, we should just print usage and exit. */
251 static int print_usage_flag
= 0;
253 /* If nonzero, we should print a warning message
254 for each reference to an undefined variable. */
256 int warn_undefined_variables_flag
;
258 /* If nonzero, always build all targets, regardless of whether
259 they appear out of date or not. */
261 int always_make_flag
= 0;
263 /* If nonzero, we're in the "try to rebuild makefiles" phase. */
265 int rebuilding_makefiles
= 0;
268 /* The usage output. We write it this way to make life easier for the
269 translators, especially those trying to translate to right-to-left
270 languages like Hebrew. */
272 static const char *const usage
[] =
276 -b, -m Ignored for compatibility.\n"),
278 -B, --always-make Unconditionally make all targets.\n"),
280 -C DIRECTORY, --directory=DIRECTORY\n\
281 Change to DIRECTORY before doing anything.\n"),
283 -d Print lots of debugging information.\n"),
285 --debug[=FLAGS] Print various types of debugging information.\n"),
287 -e, --environment-overrides\n\
288 Environment variables override makefiles.\n"),
290 -f FILE, --file=FILE, --makefile=FILE\n\
291 Read FILE as a makefile.\n"),
293 -h, --help Print this message and exit.\n"),
295 -i, --ignore-errors Ignore errors from commands.\n"),
297 -I DIRECTORY, --include-dir=DIRECTORY\n\
298 Search DIRECTORY for included makefiles.\n"),
300 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
302 -k, --keep-going Keep going when some targets can't be made.\n"),
304 -l [N], --load-average[=N], --max-load[=N]\n\
305 Don't start multiple jobs unless load is below N.\n"),
307 -n, --just-print, --dry-run, --recon\n\
308 Don't actually run any commands; just print them.\n"),
310 -o FILE, --old-file=FILE, --assume-old=FILE\n\
311 Consider FILE to be very old and don't remake it.\n"),
313 -p, --print-data-base Print make's internal database.\n"),
315 -q, --question Run no commands; exit status says if up to date.\n"),
317 -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
319 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
321 -s, --silent, --quiet Don't echo commands.\n"),
323 -S, --no-keep-going, --stop\n\
326 -t, --touch Touch targets instead of remaking them.\n"),
328 -v, --version Print the version number of make and exit.\n"),
330 -w, --print-directory Print the current directory.\n"),
332 --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
334 -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
335 Consider FILE to be infinitely new.\n"),
337 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
341 /* The table of command switches. */
343 static const struct command_switch switches
[] =
345 { 'b', ignore
, 0, 0, 0, 0, 0, 0, 0 },
346 { 'B', flag
, (char *) &always_make_flag
, 1, 1, 0, 0, 0, "always-make" },
347 { 'C', string
, (char *) &directories
, 0, 0, 0, 0, 0, "directory" },
348 { 'd', flag
, (char *) &debug_flag
, 1, 1, 0, 0, 0, 0 },
349 { CHAR_MAX
+1, string
, (char *) &db_flags
, 1, 1, 0, "basic", 0, "debug" },
351 { 'D', flag
, (char *) &suspend_flag
, 1, 1, 0, 0, 0, "suspend-for-debug" },
353 { 'e', flag
, (char *) &env_overrides
, 1, 1, 0, 0, 0,
354 "environment-overrides", },
355 { 'f', string
, (char *) &makefiles
, 0, 0, 0, 0, 0, "file" },
356 { 'h', flag
, (char *) &print_usage_flag
, 0, 0, 0, 0, 0, "help" },
357 { 'i', flag
, (char *) &ignore_errors_flag
, 1, 1, 0, 0, 0,
359 { 'I', string
, (char *) &include_directories
, 1, 1, 0, 0, 0,
361 { 'j', positive_int
, (char *) &job_slots
, 1, 1, 0, (char *) &inf_jobs
,
362 (char *) &default_job_slots
, "jobs" },
363 { CHAR_MAX
+2, string
, (char *) &jobserver_fds
, 1, 1, 0, 0, 0,
365 { 'k', flag
, (char *) &keep_going_flag
, 1, 1, 0, 0,
366 (char *) &default_keep_going_flag
, "keep-going" },
368 { 'l', floating
, (char *) &max_load_average
, 1, 1, 0,
369 (char *) &default_load_average
, (char *) &default_load_average
,
372 { 'l', positive_int
, (char *) &max_load_average
, 1, 1, 0,
373 (char *) &default_load_average
, (char *) &default_load_average
,
376 { 'm', ignore
, 0, 0, 0, 0, 0, 0, 0 },
377 { 'n', flag
, (char *) &just_print_flag
, 1, 1, 1, 0, 0, "just-print" },
378 { 'o', string
, (char *) &old_files
, 0, 0, 0, 0, 0, "old-file" },
379 { 'p', flag
, (char *) &print_data_base_flag
, 1, 1, 0, 0, 0,
381 { 'q', flag
, (char *) &question_flag
, 1, 1, 1, 0, 0, "question" },
382 { 'r', flag
, (char *) &no_builtin_rules_flag
, 1, 1, 0, 0, 0,
383 "no-builtin-rules" },
384 { 'R', flag
, (char *) &no_builtin_variables_flag
, 1, 1, 0, 0, 0,
385 "no-builtin-variables" },
386 { 's', flag
, (char *) &silent_flag
, 1, 1, 0, 0, 0, "silent" },
387 { 'S', flag_off
, (char *) &keep_going_flag
, 1, 1, 0, 0,
388 (char *) &default_keep_going_flag
, "no-keep-going" },
389 { 't', flag
, (char *) &touch_flag
, 1, 1, 1, 0, 0, "touch" },
390 { 'v', flag
, (char *) &print_version_flag
, 1, 1, 0, 0, 0, "version" },
391 { 'w', flag
, (char *) &print_directory_flag
, 1, 1, 0, 0, 0,
393 { CHAR_MAX
+3, flag
, (char *) &inhibit_print_directory_flag
, 1, 1, 0, 0, 0,
394 "no-print-directory" },
395 { 'W', string
, (char *) &new_files
, 0, 0, 0, 0, 0, "what-if" },
396 { CHAR_MAX
+4, flag
, (char *) &warn_undefined_variables_flag
, 1, 1, 0, 0, 0,
397 "warn-undefined-variables" },
401 /* Secondary long names for options. */
403 static struct option long_option_aliases
[] =
405 { "quiet", no_argument
, 0, 's' },
406 { "stop", no_argument
, 0, 'S' },
407 { "new-file", required_argument
, 0, 'W' },
408 { "assume-new", required_argument
, 0, 'W' },
409 { "assume-old", required_argument
, 0, 'o' },
410 { "max-load", optional_argument
, 0, 'l' },
411 { "dry-run", no_argument
, 0, 'n' },
412 { "recon", no_argument
, 0, 'n' },
413 { "makefile", required_argument
, 0, 'f' },
416 /* List of goal targets. */
418 static struct dep
*goals
, *lastgoal
;
420 /* List of variables which were defined on the command line
421 (or, equivalently, in MAKEFLAGS). */
423 struct command_variable
425 struct command_variable
*next
;
426 struct variable
*variable
;
428 static struct command_variable
*command_variables
;
430 /* The name we were invoked with. */
434 /* Our current directory before processing any -C options. */
436 char *directory_before_chdir
;
438 /* Our current directory after processing all -C options. */
440 char *starting_directory
;
442 /* Value of the MAKELEVEL variable at startup (or 0). */
444 unsigned int makelevel
;
446 /* First file defined in the makefile whose name does not
447 start with `.'. This is the default to remake if the
448 command line does not specify. */
450 struct file
*default_goal_file
;
452 /* Pointer to structure for the file .DEFAULT
453 whose commands are used for any file that has none of its own.
454 This is zero if the makefiles do not define .DEFAULT. */
456 struct file
*default_file
;
458 /* Nonzero if we have seen the magic `.POSIX' target.
459 This turns on pedantic compliance with POSIX.2. */
463 /* Nonzero if we have seen the `.NOTPARALLEL' target.
464 This turns off parallel builds for this invocation of make. */
468 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
469 print one warning about it during the run, and (b) we can print a final
470 warning at the end of the run. */
472 int clock_skew_detected
;
474 /* Mask of signals that are being caught with fatal_error_signal. */
477 sigset_t fatal_signal_set
;
479 # ifdef HAVE_SIGSETMASK
480 int fatal_signal_mask
;
484 #if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
485 # if !defined HAVE_SIGACTION
486 # define bsd_signal signal
488 typedef RETSIGTYPE (*bsd_signal_ret_t
) ();
490 static bsd_signal_ret_t
491 bsd_signal (int sig
, bsd_signal_ret_t func
)
493 struct sigaction act
, oact
;
494 act
.sa_handler
= func
;
495 act
.sa_flags
= SA_RESTART
;
496 sigemptyset (&act
.sa_mask
);
497 sigaddset (&act
.sa_mask
, sig
);
498 if (sigaction (sig
, &act
, &oact
) != 0)
500 return oact
.sa_handler
;
506 initialize_global_hash_tables (void)
508 init_hash_global_variable_set ();
510 hash_init_directories ();
511 hash_init_function_table ();
515 enter_command_line_file (char *name
)
518 fatal (NILF
, _("empty string invalid as file name"));
522 char *expanded
= tilde_expand (name
);
524 name
= expanded
; /* Memory leak; I don't care. */
527 /* This is also done in parse_file_seq, so this is redundant
528 for names read from makefiles. It is here for names passed
529 on the command line. */
530 while (name
[0] == '.' && name
[1] == '/' && name
[2] != '\0')
534 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
540 /* It was all slashes! Move back to the dot and truncate
541 it after the first slash, so it becomes just "./". */
544 while (name
[0] != '.');
548 return enter_file (xstrdup (name
));
551 /* Toggle -d on receipt of SIGUSR1. */
555 debug_signal_handler (int sig UNUSED
)
557 db_level
= db_level
? DB_NONE
: DB_BASIC
;
562 decode_debug_flags (void)
572 for (pp
=db_flags
->list
; *pp
; ++pp
)
578 switch (tolower (p
[0]))
584 db_level
|= DB_BASIC
;
587 db_level
|= DB_BASIC
| DB_IMPLICIT
;
593 db_level
|= DB_BASIC
| DB_MAKEFILES
;
596 db_level
|= DB_BASIC
| DB_VERBOSE
;
599 fatal (NILF
, _("unknown debug level specification `%s'"), p
);
602 while (*(++p
) != '\0')
603 if (*p
== ',' || *p
== ' ')
616 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
617 * exception and print it to stderr instead.
619 * If ! DB_VERBOSE, just print a simple message and exit.
620 * If DB_VERBOSE, print a more verbose message.
621 * If compiled for DEBUG, let exception pass through to GUI so that
622 * debuggers can attach.
625 handle_runtime_exceptions( struct _EXCEPTION_POINTERS
*exinfo
)
627 PEXCEPTION_RECORD exrec
= exinfo
->ExceptionRecord
;
628 LPSTR cmdline
= GetCommandLine();
629 LPSTR prg
= strtok(cmdline
, " ");
633 LPTSTR lpszStrings
[1];
636 if (! ISDB (DB_VERBOSE
))
639 _("%s: Interrupt/Exception caught (code = 0x%x, addr = 0x%x)\n"),
640 prg
, exrec
->ExceptionCode
, exrec
->ExceptionAddress
);
641 fprintf(stderr
, errmsg
);
646 _("\nUnhandled exception filter called from program %s\nExceptionCode = %x\nExceptionFlags = %x\nExceptionAddress = %x\n"),
647 prg
, exrec
->ExceptionCode
, exrec
->ExceptionFlags
,
648 exrec
->ExceptionAddress
);
650 if (exrec
->ExceptionCode
== EXCEPTION_ACCESS_VIOLATION
651 && exrec
->NumberParameters
>= 2)
652 sprintf(&errmsg
[strlen(errmsg
)],
653 (exrec
->ExceptionInformation
[0]
654 ? _("Access violation: write operation at address %x\n")
655 : _("Access violation: read operation at address %x\n")),
656 exrec
->ExceptionInformation
[1]);
658 /* turn this on if we want to put stuff in the event log too */
660 hEventSource
= RegisterEventSource(NULL
, "GNU Make");
661 lpszStrings
[0] = errmsg
;
663 if (hEventSource
!= NULL
)
665 ReportEvent(hEventSource
, /* handle of event source */
666 EVENTLOG_ERROR_TYPE
, /* event type */
667 0, /* event category */
669 NULL
, /* current user's SID */
670 1, /* strings in lpszStrings */
671 0, /* no bytes of raw data */
672 lpszStrings
, /* array of error strings */
673 NULL
); /* no raw data */
675 (VOID
) DeregisterEventSource(hEventSource
);
679 /* Write the error to stderr too */
680 fprintf(stderr
, errmsg
);
683 return EXCEPTION_CONTINUE_SEARCH
;
686 return (255); /* not reached */
691 * On WIN32 systems we don't have the luxury of a /bin directory that
692 * is mapped globally to every drive mounted to the system. Since make could
693 * be invoked from any drive, and we don't want to propogate /bin/sh
694 * to every single drive. Allow ourselves a chance to search for
695 * a value for default shell here (if the default path does not exist).
699 find_and_set_default_shell (char *token
)
704 extern char *default_shell
;
707 search_token
= default_shell
;
709 search_token
= token
;
711 if (!no_default_sh_exe
&&
712 (token
== NULL
|| !strcmp(search_token
, default_shell
))) {
713 /* no new information, path already set or known */
715 } else if (file_exists_p(search_token
)) {
716 /* search token path was found */
717 sprintf(sh_path
, "%s", search_token
);
718 default_shell
= xstrdup(w32ify(sh_path
,0));
720 (_("find_and_set_shell setting default_shell = %s\n"), default_shell
));
724 struct variable
*v
= lookup_variable ("Path", 4);
727 * Search Path for shell
733 ep
= strchr(p
, PATH_SEPARATOR_CHAR
);
738 if (dir_file_exists_p(p
, search_token
)) {
739 sprintf(sh_path
, "%s/%s", p
, search_token
);
740 default_shell
= xstrdup(w32ify(sh_path
,0));
742 *ep
= PATH_SEPARATOR_CHAR
;
747 *ep
= PATH_SEPARATOR_CHAR
;
751 ep
= strchr(p
, PATH_SEPARATOR_CHAR
);
754 /* be sure to check last element of Path */
755 if (p
&& *p
&& dir_file_exists_p(p
, search_token
)) {
756 sprintf(sh_path
, "%s/%s", p
, search_token
);
757 default_shell
= xstrdup(w32ify(sh_path
,0));
763 (_("find_and_set_shell path search set default_shell = %s\n"),
769 if (!unixy_shell
&& sh_found
&&
770 (strstr(default_shell
, "sh") || strstr(default_shell
, "SH"))) {
772 batch_mode_shell
= 0;
775 #ifdef BATCH_MODE_ONLY_SHELL
776 batch_mode_shell
= 1;
781 #endif /* WINDOWS32 */
786 msdos_return_to_initial_directory (void)
788 if (directory_before_chdir
)
789 chdir (directory_before_chdir
);
793 extern char *mktemp
PARAMS ((char *template));
794 extern int mkstemp
PARAMS ((char *template));
797 open_tmpfile(char **name
, const char *template)
801 #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
802 # define TEMPLATE_LEN strlen (template)
804 # define TEMPLATE_LEN L_tmpnam
806 *name
= xmalloc (TEMPLATE_LEN
+ 1);
807 strcpy (*name
, template);
809 #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
810 /* It's safest to use mkstemp(), if we can. */
811 fd
= mkstemp (*name
);
814 return fdopen (fd
, "w");
817 (void) mktemp (*name
);
819 (void) tmpnam (*name
);
823 /* Can't use mkstemp(), but guard against a race condition. */
824 fd
= open (*name
, O_CREAT
|O_EXCL
|O_WRONLY
, 0600);
827 return fdopen (fd
, "w");
829 /* Not secure, but what can we do? */
830 return fopen (*name
, "w");
838 main (int argc
, char **argv
)
841 main (int argc
, char **argv
, char **envp
)
844 static char *stdin_nm
= 0;
847 int makefile_status
= MAKE_SUCCESS
;
849 struct dep
*read_makefiles
;
850 PATH_VAR (current_directory
);
852 char *unix_path
= NULL
;
853 char *windows32_path
= NULL
;
855 SetUnhandledExceptionFilter(handle_runtime_exceptions
);
857 /* start off assuming we have no shell */
859 no_default_sh_exe
= 1;
862 /* Needed for OS/2 */
863 initialize_main(&argc
, &argv
);
865 default_goal_file
= 0;
868 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
869 /* Request the most powerful version of `system', to
870 make up for the dumb default shell. */
871 __system_flags
= (__system_redirect
873 | __system_allow_multiple_cmds
874 | __system_allow_long_cmds
875 | __system_handle_null_commands
876 | __system_emulate_chdir
);
880 /* Set up gettext/internationalization support. */
882 setlocale (LC_ALL, "");
883 bindtextdomain (PACKAGE, LOCALEDIR);
884 textdomain (PACKAGE);
887 sigemptyset (&fatal_signal_set
);
888 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
890 #ifdef HAVE_SIGSETMASK
891 fatal_signal_mask
= 0;
892 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
898 #define FATAL_SIG(sig) \
899 if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
900 bsd_signal (sig, SIG_IGN); \
914 /* Windows 9X delivers FP exceptions in child programs to their
915 parent! We don't want Make to die when a child divides by zero,
916 so we work around that lossage by catching SIGFPE. */
921 FATAL_SIG (SIGDANGER
);
932 /* Do not ignore the child-death signal. This must be done before
933 any children could possibly be created; otherwise, the wait
934 functions won't work on systems with the SVR4 ECHILD brain
935 damage, if our invoker is ignoring this signal. */
937 #ifdef HAVE_WAIT_NOHANG
939 (void) bsd_signal (SIGCHLD
, SIG_DFL
);
941 # if defined SIGCLD && SIGCLD != SIGCHLD
942 (void) bsd_signal (SIGCLD
, SIG_DFL
);
946 /* Make sure stdout is line-buffered. */
949 # ifdef SETVBUF_REVERSED
950 setvbuf (stdout
, _IOLBF
, xmalloc (BUFSIZ
), BUFSIZ
);
951 # else /* setvbuf not reversed. */
952 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
953 setvbuf (stdout
, (char *) 0, _IOLBF
, BUFSIZ
);
954 # endif /* setvbuf reversed. */
955 #elif HAVE_SETLINEBUF
957 #endif /* setlinebuf missing. */
959 /* Figure out where this program lives. */
963 if (argv
[0][0] == '\0')
968 program
= strrchr (argv
[0], ']');
970 program
= strrchr (argv
[0], '/');
972 #if defined(__MSDOS__) || defined(__EMX__)
974 program
= strrchr (argv
[0], '\\');
977 /* Some weird environments might pass us argv[0] with
978 both kinds of slashes; we must find the rightmost. */
979 char *p
= strrchr (argv
[0], '\\');
980 if (p
&& p
> program
)
983 if (program
== 0 && argv
[0][1] == ':')
984 program
= argv
[0] + 1;
992 /* Set up to access user data (files). */
995 initialize_global_hash_tables ();
997 /* Figure out where we are. */
1000 if (getcwd_fs (current_directory
, GET_PATH_MAX
) == 0)
1002 if (getcwd (current_directory
, GET_PATH_MAX
) == 0)
1006 perror_with_name ("getcwd: ", "");
1008 error (NILF
, "getwd: %s", current_directory
);
1010 current_directory
[0] = '\0';
1011 directory_before_chdir
= 0;
1014 directory_before_chdir
= xstrdup (current_directory
);
1016 /* Make sure we will return to the initial directory, come what may. */
1017 atexit (msdos_return_to_initial_directory
);
1020 /* Initialize the special variables. */
1021 define_variable (".VARIABLES", 10, "", o_default
, 0)->special
= 1;
1022 /* define_variable (".TARGETS", 8, "", o_default, 0); */
1024 /* Read in variables from the environment. It is important that this be
1025 done before $(MAKE) is figured out so its definitions will not be
1026 from the environment. */
1029 for (i
= 0; envp
[i
] != 0; ++i
)
1032 register char *ep
= envp
[i
];
1034 /* by default, everything gets defined and exported */
1040 if (!unix_path
&& strneq(envp
[i
], "PATH=", 5))
1042 else if (!windows32_path
&& !strnicmp(envp
[i
], "Path=", 5)) {
1043 do_not_define
= 1; /* it gets defined after loop exits */
1044 windows32_path
= ep
+1;
1047 /* The result of pointer arithmetic is cast to unsigned int for
1048 machines where ptrdiff_t is a different size that doesn't widen
1051 define_variable (envp
[i
], (unsigned int) (ep
- envp
[i
]),
1053 /* Force exportation of every variable culled from the environment.
1054 We used to rely on target_environment's v_default code to do this.
1055 But that does not work for the case where an environment variable
1056 is redefined in a makefile with `override'; it should then still
1057 be exported, because it was originally in the environment. */
1058 ->export
= v_export
;
1062 * Make sure that this particular spelling of 'Path' is available
1065 define_variable("Path", 4, windows32_path
, o_env
, 1)->export
= v_export
;
1067 define_variable("Path", 4, unix_path
, o_env
, 1)->export
= v_export
;
1069 define_variable("Path", 4, "", o_env
, 1)->export
= v_export
;
1072 * PATH defaults to Path iff PATH not found and Path is found.
1074 if (!unix_path
&& windows32_path
)
1075 define_variable("PATH", 4, windows32_path
, o_env
, 1)->export
= v_export
;
1077 #else /* For Amiga, read the ENV: device, ignoring all dirs */
1079 BPTR env
, file
, old
;
1082 struct FileInfoBlock fib
;
1084 env
= Lock ("ENV:", ACCESS_READ
);
1087 old
= CurrentDir (DupLock(env
));
1088 Examine (env
, &fib
);
1090 while (ExNext (env
, &fib
))
1092 if (fib
.fib_DirEntryType
< 0) /* File */
1094 /* Define an empty variable. It will be filled in
1095 variable_lookup(). Makes startup quite a bit
1097 define_variable (fib
.fib_FileName
,
1098 strlen (fib
.fib_FileName
),
1099 "", o_env
, 1)->export
= v_export
;
1103 UnLock(CurrentDir(old
));
1108 /* Decode the switches. */
1110 decode_env_switches ("MAKEFLAGS", 9);
1112 /* People write things like:
1113 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
1114 and we set the -p, -i and -e switches. Doesn't seem quite right. */
1115 decode_env_switches ("MFLAGS", 6);
1117 decode_switches (argc
, argv
, 0);
1120 fprintf(stderr
, "%s (pid = %d)\n", argv
[0], GetCurrentProcessId());
1121 fprintf(stderr
, _("%s is suspending for 30 seconds..."), argv
[0]);
1123 fprintf(stderr
, _("done sleep(30). Continuing.\n"));
1127 decode_debug_flags ();
1129 /* Print version information. */
1131 if (print_version_flag
|| print_data_base_flag
|| db_level
)
1134 /* `make --version' is supposed to just print the version and exit. */
1135 if (print_version_flag
)
1139 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
1140 (If it is a relative pathname with a slash, prepend our directory name
1141 so the result will run the same program regardless of the current dir.
1142 If it is a name with no slash, we can only hope that PATH did not
1143 find it in the current directory.) */
1146 * Convert from backslashes to forward slashes for
1147 * programs like sh which don't like them. Shouldn't
1148 * matter if the path is one way or the other for
1151 if (strpbrk(argv
[0], "/:\\") ||
1152 strstr(argv
[0], "..") ||
1153 strneq(argv
[0], "//", 2))
1154 argv
[0] = xstrdup(w32ify(argv
[0],1));
1155 #else /* WINDOWS32 */
1156 #if defined (__MSDOS__) || defined (__EMX__)
1157 if (strchr (argv
[0], '\\'))
1161 argv
[0] = xstrdup (argv
[0]);
1162 for (p
= argv
[0]; *p
; p
++)
1166 /* If argv[0] is not in absolute form, prepend the current
1167 directory. This can happen when Make is invoked by another DJGPP
1168 program that uses a non-absolute name. */
1169 if (current_directory
[0] != '\0'
1171 && (argv
[0][0] != '/' && (argv
[0][0] == '\0' || argv
[0][1] != ':'))
1173 /* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
1174 && (strchr (argv
[0], '/') != 0 || strchr (argv
[0], '\\') != 0)
1177 argv
[0] = concat (current_directory
, "/", argv
[0]);
1178 #else /* !__MSDOS__ */
1179 if (current_directory
[0] != '\0'
1180 && argv
[0] != 0 && argv
[0][0] != '/' && strchr (argv
[0], '/') != 0)
1181 argv
[0] = concat (current_directory
, "/", argv
[0]);
1182 #endif /* !__MSDOS__ */
1183 #endif /* WINDOWS32 */
1186 /* The extra indirection through $(MAKE_COMMAND) is done
1187 for hysterical raisins. */
1188 (void) define_variable ("MAKE_COMMAND", 12, argv
[0], o_default
, 0);
1189 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default
, 1);
1191 if (command_variables
!= 0)
1193 struct command_variable
*cv
;
1195 unsigned int len
= 0;
1198 /* Figure out how much space will be taken up by the command-line
1199 variable definitions. */
1200 for (cv
= command_variables
; cv
!= 0; cv
= cv
->next
)
1203 len
+= 2 * strlen (v
->name
);
1207 len
+= 2 * strlen (v
->value
);
1211 /* Now allocate a buffer big enough and fill it. */
1212 p
= value
= (char *) alloca (len
);
1213 for (cv
= command_variables
; cv
!= 0; cv
= cv
->next
)
1216 p
= quote_for_env (p
, v
->name
);
1220 p
= quote_for_env (p
, v
->value
);
1223 p
[-1] = '\0'; /* Kill the final space and terminate. */
1225 /* Define an unchangeable variable with a name that no POSIX.2
1226 makefile could validly use for its own variable. */
1227 (void) define_variable ("-*-command-variables-*-", 23,
1228 value
, o_automatic
, 0);
1230 /* Define the variable; this will not override any user definition.
1231 Normally a reference to this variable is written into the value of
1232 MAKEFLAGS, allowing the user to override this value to affect the
1233 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1234 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1235 a reference to this hidden variable is written instead. */
1236 (void) define_variable ("MAKEOVERRIDES", 13,
1237 "${-*-command-variables-*-}", o_env
, 1);
1240 /* If there were -C flags, move ourselves about. */
1241 if (directories
!= 0)
1242 for (i
= 0; directories
->list
[i
] != 0; ++i
)
1244 char *dir
= directories
->list
[i
];
1247 char *expanded
= tilde_expand (dir
);
1251 if (chdir (dir
) < 0)
1252 pfatal_with_name (dir
);
1253 if (dir
!= directories
->list
[i
])
1259 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1260 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1262 * The functions in dir.c can incorrectly cache information for "."
1263 * before we have changed directory and this can cause file
1264 * lookups to fail because the current directory (.) was pointing
1265 * at the wrong place when it was first evaluated.
1267 no_default_sh_exe
= !find_and_set_default_shell(NULL
);
1269 #endif /* WINDOWS32 */
1270 /* Figure out the level of recursion. */
1272 struct variable
*v
= lookup_variable (MAKELEVEL_NAME
, MAKELEVEL_LENGTH
);
1273 if (v
!= 0 && v
->value
[0] != '\0' && v
->value
[0] != '-')
1274 makelevel
= (unsigned int) atoi (v
->value
);
1279 /* Except under -s, always do -w in sub-makes and under -C. */
1280 if (!silent_flag
&& (directories
!= 0 || makelevel
> 0))
1281 print_directory_flag
= 1;
1283 /* Let the user disable that with --no-print-directory. */
1284 if (inhibit_print_directory_flag
)
1285 print_directory_flag
= 0;
1287 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1288 if (no_builtin_variables_flag
)
1289 no_builtin_rules_flag
= 1;
1291 /* Construct the list of include directories to search. */
1293 construct_include_path (include_directories
== 0 ? (char **) 0
1294 : include_directories
->list
);
1296 /* Figure out where we are now, after chdir'ing. */
1297 if (directories
== 0)
1298 /* We didn't move, so we're still in the same place. */
1299 starting_directory
= current_directory
;
1303 if (getcwd_fs (current_directory
, GET_PATH_MAX
) == 0)
1305 if (getcwd (current_directory
, GET_PATH_MAX
) == 0)
1309 perror_with_name ("getcwd: ", "");
1311 error (NILF
, "getwd: %s", current_directory
);
1313 starting_directory
= 0;
1316 starting_directory
= current_directory
;
1319 (void) define_variable ("CURDIR", 6, current_directory
, o_default
, 0);
1321 /* Read any stdin makefiles into temporary files. */
1325 register unsigned int i
;
1326 for (i
= 0; i
< makefiles
->idx
; ++i
)
1327 if (makefiles
->list
[i
][0] == '-' && makefiles
->list
[i
][1] == '\0')
1329 /* This makefile is standard input. Since we may re-exec
1330 and thus re-read the makefiles, we read standard input
1331 into a temporary file and read from that. */
1333 char *template, *tmpdir
;
1336 fatal (NILF
, _("Makefile from standard input specified twice."));
1339 # define DEFAULT_TMPDIR "sys$scratch:"
1342 # define DEFAULT_TMPDIR P_tmpdir
1344 # define DEFAULT_TMPDIR "/tmp"
1347 #define DEFAULT_TMPFILE "GmXXXXXX"
1349 if (((tmpdir
= getenv ("TMPDIR")) == NULL
|| *tmpdir
== '\0')
1350 #if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
1351 /* These are also used commonly on these platforms. */
1352 && ((tmpdir
= getenv ("TEMP")) == NULL
|| *tmpdir
== '\0')
1353 && ((tmpdir
= getenv ("TMP")) == NULL
|| *tmpdir
== '\0')
1356 tmpdir
= DEFAULT_TMPDIR
;
1358 template = (char *) alloca (strlen (tmpdir
)
1359 + sizeof (DEFAULT_TMPFILE
) + 1);
1360 strcpy (template, tmpdir
);
1362 #ifdef HAVE_DOS_PATHS
1363 if (strchr ("/\\", template[strlen (template) - 1]) == NULL
)
1364 strcat (template, "/");
1367 if (template[strlen (template) - 1] != '/')
1368 strcat (template, "/");
1370 #endif /* !HAVE_DOS_PATHS */
1372 strcat (template, DEFAULT_TMPFILE
);
1373 outfile
= open_tmpfile (&stdin_nm
, template);
1375 pfatal_with_name (_("fopen (temporary file)"));
1376 while (!feof (stdin
))
1379 unsigned int n
= fread (buf
, 1, sizeof (buf
), stdin
);
1380 if (n
> 0 && fwrite (buf
, 1, n
, outfile
) != n
)
1381 pfatal_with_name (_("fwrite (temporary file)"));
1383 (void) fclose (outfile
);
1385 /* Replace the name that read_all_makefiles will
1386 see with the name of the temporary file. */
1387 makefiles
->list
[i
] = xstrdup (stdin_nm
);
1389 /* Make sure the temporary file will not be remade. */
1390 f
= enter_file (stdin_nm
);
1392 f
->update_status
= 0;
1393 f
->command_state
= cs_finished
;
1394 /* Can't be intermediate, or it'll be removed too early for
1396 f
->intermediate
= 0;
1401 #ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
1402 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1403 /* Set up to handle children dying. This must be done before
1404 reading in the makefiles so that `shell' function calls will work.
1406 If we don't have a hanging wait we have to fall back to old, broken
1407 functionality here and rely on the signal handler and counting
1410 If we're using the jobs pipe we need a signal handler so that
1411 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1412 jobserver pipe in job.c if we're waiting for a token.
1414 If none of these are true, we don't need a signal handler at all. */
1416 extern RETSIGTYPE child_handler
PARAMS ((int sig
));
1417 # if defined SIGCHLD
1418 bsd_signal (SIGCHLD
, child_handler
);
1420 # if defined SIGCLD && SIGCLD != SIGCHLD
1421 bsd_signal (SIGCLD
, child_handler
);
1427 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1429 bsd_signal (SIGUSR1
, debug_signal_handler
);
1432 /* Define the initial list of suffixes for old-style rules. */
1434 set_default_suffixes ();
1436 /* Define the file rules for the built-in suffix rules. These will later
1437 be converted into pattern rules. We used to do this in
1438 install_default_implicit_rules, but since that happens after reading
1439 makefiles, it results in the built-in pattern rules taking precedence
1440 over makefile-specified suffix rules, which is wrong. */
1442 install_default_suffix_rules ();
1444 /* Define some internal and special variables. */
1446 define_automatic_variables ();
1448 /* Set up the MAKEFLAGS and MFLAGS variables
1449 so makefiles can look at them. */
1451 define_makeflags (0, 0);
1453 /* Define the default variables. */
1454 define_default_variables ();
1456 /* Read all the makefiles. */
1458 default_file
= enter_file (".DEFAULT");
1461 = read_all_makefiles (makefiles
== 0 ? (char **) 0 : makefiles
->list
);
1464 /* look one last time after reading all Makefiles */
1465 if (no_default_sh_exe
)
1466 no_default_sh_exe
= !find_and_set_default_shell(NULL
);
1468 if (no_default_sh_exe
&& job_slots
!= 1) {
1469 error (NILF
, _("Do not specify -j or --jobs if sh.exe is not available."));
1470 error (NILF
, _("Resetting make for single job mode."));
1473 #endif /* WINDOWS32 */
1475 #if defined (__MSDOS__) || defined (__EMX__)
1476 /* We need to know what kind of shell we will be using. */
1478 extern int _is_unixy_shell (const char *_path
);
1479 struct variable
*shv
= lookup_variable ("SHELL", 5);
1480 extern int unixy_shell
;
1481 extern char *default_shell
;
1483 if (shv
&& *shv
->value
)
1485 char *shell_path
= recursively_expand(shv
);
1487 if (shell_path
&& _is_unixy_shell (shell_path
))
1492 default_shell
= shell_path
;
1495 #endif /* __MSDOS__ || __EMX__ */
1497 /* Decode switches again, in case the variables were set by the makefile. */
1498 decode_env_switches ("MAKEFLAGS", 9);
1500 decode_env_switches ("MFLAGS", 6);
1503 #if defined (__MSDOS__) || defined (__EMX__)
1506 && _osmode
!= OS2_MODE
/* turn off -j if we are in DOS mode */
1511 _("Parallel jobs (-j) are not supported on this platform."));
1512 error (NILF
, _("Resetting to single job (-j1) mode."));
1517 #ifdef MAKE_JOBSERVER
1518 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1525 for (ui
=1; ui
< jobserver_fds
->idx
; ++ui
)
1526 if (!streq (jobserver_fds
->list
[0], jobserver_fds
->list
[ui
]))
1527 fatal (NILF
, _("internal error: multiple --jobserver-fds options"));
1529 /* Now parse the fds string and make sure it has the proper format. */
1531 cp
= jobserver_fds
->list
[0];
1533 if (sscanf (cp
, "%d,%d", &job_fds
[0], &job_fds
[1]) != 2)
1535 _("internal error: invalid --jobserver-fds string `%s'"), cp
);
1537 /* The combination of a pipe + !job_slots means we're using the
1538 jobserver. If !job_slots and we don't have a pipe, we can start
1539 infinite jobs. If we see both a pipe and job_slots >0 that means the
1540 user set -j explicitly. This is broken; in this case obey the user
1541 (ignore the jobserver pipe for this make) but print a message. */
1545 _("warning: -jN forced in submake: disabling jobserver mode."));
1547 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1548 handler. If this fails with EBADF, the parent has closed the pipe
1549 on us because it didn't think we were a submake. If so, print a
1550 warning then default to -j1. */
1552 else if ((job_rfd
= dup (job_fds
[0])) < 0)
1555 pfatal_with_name (_("dup jobserver"));
1558 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1566 job_fds
[0] = job_fds
[1] = -1;
1567 free (jobserver_fds
->list
);
1568 free (jobserver_fds
);
1573 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1574 Set up the pipe and install the fds option for our children. */
1580 if (pipe (job_fds
) < 0 || (job_rfd
= dup (job_fds
[0])) < 0)
1581 pfatal_with_name (_("creating jobs pipe"));
1583 /* Every make assumes that it always has one job it can run. For the
1584 submakes it's the token they were given by their parent. For the
1585 top make, we just subtract one from the number the user wants. We
1586 want job_slots to be 0 to indicate we're using the jobserver. */
1592 EINTRLOOP (r
, write (job_fds
[1], &c
, 1));
1594 pfatal_with_name (_("init jobserver pipe"));
1597 /* Fill in the jobserver_fds struct for our children. */
1599 jobserver_fds
= (struct stringlist
*)
1600 xmalloc (sizeof (struct stringlist
));
1601 jobserver_fds
->list
= (char **) xmalloc (sizeof (char *));
1602 jobserver_fds
->list
[0] = xmalloc ((sizeof ("1024")*2)+1);
1604 sprintf (jobserver_fds
->list
[0], "%d,%d", job_fds
[0], job_fds
[1]);
1605 jobserver_fds
->idx
= 1;
1606 jobserver_fds
->max
= 1;
1610 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1612 define_makeflags (1, 0);
1614 /* Make each `struct dep' point at the `struct file' for the file
1615 depended on. Also do magic for special targets. */
1619 /* Convert old-style suffix rules to pattern rules. It is important to
1620 do this before installing the built-in pattern rules below, so that
1621 makefile-specified suffix rules take precedence over built-in pattern
1624 convert_to_pattern ();
1626 /* Install the default implicit pattern rules.
1627 This used to be done before reading the makefiles.
1628 But in that case, built-in pattern rules were in the chain
1629 before user-defined ones, so they matched first. */
1631 install_default_implicit_rules ();
1633 /* Compute implicit rule limits. */
1635 count_implicit_rule_limits ();
1637 /* Construct the listings of directories in VPATH lists. */
1639 build_vpath_lists ();
1641 /* Mark files given with -o flags as very old
1642 and as having been updated already, and files given with -W flags as
1643 brand new (time-stamp as far as possible into the future). */
1646 for (p
= old_files
->list
; *p
!= 0; ++p
)
1648 f
= enter_command_line_file (*p
);
1649 f
->last_mtime
= f
->mtime_before_update
= OLD_MTIME
;
1651 f
->update_status
= 0;
1652 f
->command_state
= cs_finished
;
1657 for (p
= new_files
->list
; *p
!= 0; ++p
)
1659 f
= enter_command_line_file (*p
);
1660 f
->last_mtime
= f
->mtime_before_update
= NEW_MTIME
;
1664 /* Initialize the remote job module. */
1667 if (read_makefiles
!= 0)
1669 /* Update any makefiles if necessary. */
1671 FILE_TIMESTAMP
*makefile_mtimes
= 0;
1672 unsigned int mm_idx
= 0;
1673 char **nargv
= argv
;
1675 int orig_db_level
= db_level
;
1678 if (! ISDB (DB_MAKEFILES
))
1681 DB (DB_BASIC
, (_("Updating makefiles....\n")));
1683 /* Remove any makefiles we don't want to try to update.
1684 Also record the current modtimes so we can compare them later. */
1686 register struct dep
*d
, *last
;
1691 register struct file
*f
= d
->file
;
1692 if (f
->double_colon
)
1693 for (f
= f
->double_colon
; f
!= NULL
; f
= f
->prev
)
1695 if (f
->deps
== 0 && f
->cmds
!= 0)
1697 /* This makefile is a :: target with commands, but
1698 no dependencies. So, it will always be remade.
1699 This might well cause an infinite loop, so don't
1700 try to remake it. (This will only happen if
1701 your makefiles are written exceptionally
1702 stupidly; but if you work for Athena, that's how
1703 you write your makefiles.) */
1706 (_("Makefile `%s' might loop; not remaking it.\n"),
1710 read_makefiles
= d
->next
;
1712 last
->next
= d
->next
;
1714 /* Free the storage. */
1717 d
= last
== 0 ? read_makefiles
: last
->next
;
1722 if (f
== NULL
|| !f
->double_colon
)
1724 makefile_mtimes
= (FILE_TIMESTAMP
*)
1725 xrealloc ((char *) makefile_mtimes
,
1726 (mm_idx
+ 1) * sizeof (FILE_TIMESTAMP
));
1727 makefile_mtimes
[mm_idx
++] = file_mtime_no_search (d
->file
);
1734 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1735 define_makeflags (1, 1);
1737 rebuilding_makefiles
= 1;
1738 status
= update_goal_chain (read_makefiles
);
1739 rebuilding_makefiles
= 0;
1744 /* The only way this can happen is if the user specified -q and asked
1745 * for one of the makefiles to be remade as a target on the command
1746 * line. Since we're not actually updating anything with -q we can
1747 * treat this as "did nothing".
1755 /* Failed to update. Figure out if we care. */
1757 /* Nonzero if any makefile was successfully remade. */
1759 /* Nonzero if any makefile we care about failed
1760 in updating or could not be found at all. */
1765 for (i
= 0, d
= read_makefiles
; d
!= 0; ++i
, d
= d
->next
)
1767 /* Reset the considered flag; we may need to look at the file
1768 again to print an error. */
1769 d
->file
->considered
= 0;
1771 if (d
->file
->updated
)
1773 /* This makefile was updated. */
1774 if (d
->file
->update_status
== 0)
1776 /* It was successfully updated. */
1777 any_remade
|= (file_mtime_no_search (d
->file
)
1778 != makefile_mtimes
[i
]);
1780 else if (! (d
->changed
& RM_DONTCARE
))
1782 FILE_TIMESTAMP mtime
;
1783 /* The update failed and this makefile was not
1784 from the MAKEFILES variable, so we care. */
1785 error (NILF
, _("Failed to remake makefile `%s'."),
1787 mtime
= file_mtime_no_search (d
->file
);
1788 any_remade
|= (mtime
!= NONEXISTENT_MTIME
1789 && mtime
!= makefile_mtimes
[i
]);
1790 makefile_status
= MAKE_FAILURE
;
1794 /* This makefile was not found at all. */
1795 if (! (d
->changed
& RM_DONTCARE
))
1797 /* This is a makefile we care about. See how much. */
1798 if (d
->changed
& RM_INCLUDED
)
1799 /* An included makefile. We don't need
1800 to die, but we do want to complain. */
1802 _("Included makefile `%s' was not found."),
1806 /* A normal makefile. We must die later. */
1807 error (NILF
, _("Makefile `%s' was not found"),
1813 /* Reset this to empty so we get the right error message below. */
1825 /* Updated successfully. Re-exec ourselves. */
1827 remove_intermediates (0);
1829 if (print_data_base_flag
)
1832 log_working_directory (0);
1836 /* These names might have changed. */
1838 for (i
= 1; i
< argc
; ++i
)
1839 if (strneq (argv
[i
], "-f", 2)) /* XXX */
1841 char *p
= &argv
[i
][2];
1843 argv
[++i
] = makefiles
->list
[j
];
1845 argv
[i
] = concat ("-f", makefiles
->list
[j
], "");
1850 /* Add -o option for the stdin temporary file, if necessary. */
1853 nargv
= (char **) xmalloc ((nargc
+ 2) * sizeof (char *));
1854 bcopy ((char *) argv
, (char *) nargv
, argc
* sizeof (char *));
1855 nargv
[nargc
++] = concat ("-o", stdin_nm
, "");
1859 if (directories
!= 0 && directories
->idx
> 0)
1862 if (directory_before_chdir
!= 0)
1864 if (chdir (directory_before_chdir
) < 0)
1866 perror_with_name ("chdir", "");
1875 fatal (NILF
, _("Couldn't change back to original directory."));
1879 for (p
= environ
; *p
!= 0; ++p
)
1880 if ((*p
)[MAKELEVEL_LENGTH
] == '='
1881 && strneq (*p
, MAKELEVEL_NAME
, MAKELEVEL_LENGTH
))
1883 /* The SGI compiler apparently can't understand
1884 the concept of storing the result of a function
1885 in something other than a local variable. */
1887 sgi_loses
= (char *) alloca (40);
1889 sprintf (*p
, "%s=%u", MAKELEVEL_NAME
, makelevel
);
1897 len
= GetVar (MAKELEVEL_NAME
, buffer
, sizeof (buffer
), GVF_GLOBAL_ONLY
);
1901 sprintf (buffer
, "%u", makelevel
);
1902 SetVar (MAKELEVEL_NAME
, buffer
, -1, GVF_GLOBAL_ONLY
);
1907 if (ISDB (DB_BASIC
))
1910 fputs (_("Re-executing:"), stdout
);
1911 for (p
= nargv
; *p
!= 0; ++p
)
1919 /* Close the dup'd jobserver pipe if we opened one. */
1924 exec_command (nargv
,NULL
);
1926 #elif defined (__EMX__)
1928 /* It is not possible to use execve() here because this
1929 would cause the parent process to be terminated with
1930 exit code 0 before the child process has been terminated.
1931 Therefore it may be the best solution simply to spawn the
1932 child process including all file handles and to wait for its
1936 pid
= child_execute_job (0, 1, nargv
, environ
);
1938 /* is this loop really necessary? */
1940 pid
= wait (&status
);
1942 /* use the exit code of the child process */
1943 exit (WIFEXITED(status
) ? WEXITSTATUS(status
) : EXIT_FAILURE
);
1946 exec_command (nargv
, environ
);
1951 #define BOGUS_UPDATE_STATUS 0
1952 assert (BOGUS_UPDATE_STATUS
);
1956 db_level
= orig_db_level
;
1958 /* Free the makefile mtimes (if we allocated any). */
1959 if (makefile_mtimes
)
1960 free ((char *) makefile_mtimes
);
1963 /* Set up `MAKEFLAGS' again for the normal targets. */
1964 define_makeflags (1, 0);
1966 /* If there is a temp file from reading a makefile from stdin, get rid of
1968 if (stdin_nm
&& unlink (stdin_nm
) < 0 && errno
!= ENOENT
)
1969 perror_with_name (_("unlink (temporary file): "), stdin_nm
);
1974 /* If there were no command-line goals, use the default. */
1977 if (default_goal_file
!= 0)
1979 goals
= (struct dep
*) xmalloc (sizeof (struct dep
));
1982 goals
->ignore_mtime
= 0;
1983 goals
->file
= default_goal_file
;
1991 if (read_makefiles
== 0)
1992 fatal (NILF
, _("No targets specified and no makefile found"));
1994 fatal (NILF
, _("No targets"));
1997 /* Update the goals. */
1999 DB (DB_BASIC
, (_("Updating goal targets....\n")));
2001 switch (update_goal_chain (goals
))
2004 /* Nothing happened. */
2006 /* Updated successfully. */
2007 status
= makefile_status
;
2010 /* We are under -q and would run some commands. */
2011 status
= MAKE_TROUBLE
;
2014 /* Updating failed. POSIX.2 specifies exit status >1 for this;
2015 but in VMS, there is only success and failure. */
2016 status
= MAKE_FAILURE
;
2022 /* If we detected some clock skew, generate one last warning */
2023 if (clock_skew_detected
)
2025 _("warning: Clock skew detected. Your build may be incomplete."));
2034 /* Parsing of arguments, decoding of switches. */
2036 static char options
[1 + sizeof (switches
) / sizeof (switches
[0]) * 3];
2037 static struct option long_options
[(sizeof (switches
) / sizeof (switches
[0])) +
2038 (sizeof (long_option_aliases
) /
2039 sizeof (long_option_aliases
[0]))];
2041 /* Fill in the string and vector for getopt. */
2043 init_switches (void)
2049 if (options
[0] != '\0')
2055 /* Return switch and non-switch args in order, regardless of
2056 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
2059 for (i
= 0; switches
[i
].c
!= '\0'; ++i
)
2061 long_options
[i
].name
= (switches
[i
].long_name
== 0 ? "" :
2062 switches
[i
].long_name
);
2063 long_options
[i
].flag
= 0;
2064 long_options
[i
].val
= switches
[i
].c
;
2065 if (short_option (switches
[i
].c
))
2066 *p
++ = switches
[i
].c
;
2067 switch (switches
[i
].type
)
2072 long_options
[i
].has_arg
= no_argument
;
2078 if (short_option (switches
[i
].c
))
2080 if (switches
[i
].noarg_value
!= 0)
2082 if (short_option (switches
[i
].c
))
2084 long_options
[i
].has_arg
= optional_argument
;
2087 long_options
[i
].has_arg
= required_argument
;
2092 for (c
= 0; c
< (sizeof (long_option_aliases
) /
2093 sizeof (long_option_aliases
[0]));
2095 long_options
[i
++] = long_option_aliases
[c
];
2096 long_options
[i
].name
= 0;
2100 handle_non_switch_argument (char *arg
, int env
)
2102 /* Non-option argument. It might be a variable definition. */
2104 if (arg
[0] == '-' && arg
[1] == '\0')
2105 /* Ignore plain `-' for compatibility. */
2107 v
= try_variable_definition (0, arg
, o_command
, 0);
2110 /* It is indeed a variable definition. Record a pointer to
2111 the variable for later use in define_makeflags. */
2112 struct command_variable
*cv
2113 = (struct command_variable
*) xmalloc (sizeof (*cv
));
2115 cv
->next
= command_variables
;
2116 command_variables
= cv
;
2120 /* Not an option or variable definition; it must be a goal
2121 target! Enter it as a file and add it to the dep chain of
2123 struct file
*f
= enter_command_line_file (arg
);
2128 goals
= (struct dep
*) xmalloc (sizeof (struct dep
));
2133 lastgoal
->next
= (struct dep
*) xmalloc (sizeof (struct dep
));
2134 lastgoal
= lastgoal
->next
;
2138 lastgoal
->ignore_mtime
= 0;
2141 /* Add this target name to the MAKECMDGOALS variable. */
2145 v
= lookup_variable ("MAKECMDGOALS", 12);
2150 /* Paste the old and new values together */
2151 unsigned int oldlen
, newlen
;
2153 oldlen
= strlen (v
->value
);
2154 newlen
= strlen (f
->name
);
2155 value
= (char *) alloca (oldlen
+ 1 + newlen
+ 1);
2156 bcopy (v
->value
, value
, oldlen
);
2157 value
[oldlen
] = ' ';
2158 bcopy (f
->name
, &value
[oldlen
+ 1], newlen
+ 1);
2160 define_variable ("MAKECMDGOALS", 12, value
, o_default
, 0);
2165 /* Print a nice usage method. */
2168 print_usage (int bad
)
2170 const char *const *cpp
;
2173 if (print_version_flag
)
2176 usageto
= bad
? stderr
: stdout
;
2178 fprintf (usageto
, _("Usage: %s [options] [target] ...\n"), program
);
2180 for (cpp
= usage
; *cpp
; ++cpp
)
2181 fputs (_(*cpp
), usageto
);
2183 if (!remote_description
|| *remote_description
== '\0')
2184 fprintf (usageto
, _("\nThis program built for %s\n"), make_host
);
2186 fprintf (usageto
, _("\nThis program built for %s (%s)\n"),
2187 make_host
, remote_description
);
2189 fprintf (usageto
, _("Report bugs to <bug-make@gnu.org>\n"));
2192 /* Decode switches from ARGC and ARGV.
2193 They came from the environment if ENV is nonzero. */
2196 decode_switches (int argc
, char **argv
, int env
)
2199 register const struct command_switch
*cs
;
2200 register struct stringlist
*sl
;
2203 /* getopt does most of the parsing for us.
2204 First, get its vectors set up. */
2208 /* Let getopt produce error messages for the command line,
2209 but not for options from the environment. */
2211 /* Reset getopt's state. */
2214 while (optind
< argc
)
2216 /* Parse the next argument. */
2217 c
= getopt_long (argc
, argv
, options
, long_options
, (int *) 0);
2219 /* End of arguments, or "--" marker seen. */
2222 /* An argument not starting with a dash. */
2223 handle_non_switch_argument (optarg
, env
);
2225 /* Bad option. We will print a usage message and die later.
2226 But continue to parse the other options so the user can
2227 see all he did wrong. */
2230 for (cs
= switches
; cs
->c
!= '\0'; ++cs
)
2233 /* Whether or not we will actually do anything with
2234 this switch. We test this individually inside the
2235 switch below rather than just once outside it, so that
2236 options which are to be ignored still consume args. */
2237 int doit
= !env
|| cs
->env
;
2250 *(int *) cs
->value_ptr
= cs
->type
== flag
;
2258 optarg
= cs
->noarg_value
;
2259 else if (*optarg
== '\0')
2261 error (NILF
, _("the `-%c' option requires a non-empty string argument"),
2266 sl
= *(struct stringlist
**) cs
->value_ptr
;
2269 sl
= (struct stringlist
*)
2270 xmalloc (sizeof (struct stringlist
));
2273 sl
->list
= (char **) xmalloc (5 * sizeof (char *));
2274 *(struct stringlist
**) cs
->value_ptr
= sl
;
2276 else if (sl
->idx
== sl
->max
- 1)
2279 sl
->list
= (char **)
2280 xrealloc ((char *) sl
->list
,
2281 sl
->max
* sizeof (char *));
2283 sl
->list
[sl
->idx
++] = optarg
;
2284 sl
->list
[sl
->idx
] = 0;
2288 /* See if we have an option argument; if we do require that
2289 it's all digits, not something like "10foo". */
2290 if (optarg
== 0 && argc
> optind
)
2293 for (cp
=argv
[optind
]; ISDIGIT (cp
[0]); ++cp
)
2296 optarg
= argv
[optind
++];
2304 int i
= atoi (optarg
);
2307 /* Yes, I realize we're repeating this in some cases. */
2308 for (cp
= optarg
; ISDIGIT (cp
[0]); ++cp
)
2311 if (i
< 1 || cp
[0] != '\0')
2313 error (NILF
, _("the `-%c' option requires a positive integral argument"),
2318 *(unsigned int *) cs
->value_ptr
= i
;
2321 *(unsigned int *) cs
->value_ptr
2322 = *(unsigned int *) cs
->noarg_value
;
2327 if (optarg
== 0 && optind
< argc
2328 && (ISDIGIT (argv
[optind
][0]) || argv
[optind
][0] == '.'))
2329 optarg
= argv
[optind
++];
2332 *(double *) cs
->value_ptr
2333 = (optarg
!= 0 ? atof (optarg
)
2334 : *(double *) cs
->noarg_value
);
2340 /* We've found the switch. Stop looking. */
2345 /* There are no more options according to getting getopt, but there may
2346 be some arguments left. Since we have asked for non-option arguments
2347 to be returned in order, this only happens when there is a "--"
2348 argument to prevent later arguments from being options. */
2349 while (optind
< argc
)
2350 handle_non_switch_argument (argv
[optind
++], env
);
2353 if (!env
&& (bad
|| print_usage_flag
))
2360 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2361 We do this by chopping the value into a vector of words, prepending a
2362 dash to the first word if it lacks one, and passing the vector to
2366 decode_env_switches (char *envar
, unsigned int len
)
2368 char *varref
= (char *) alloca (2 + len
+ 2);
2373 /* Get the variable's value. */
2376 bcopy (envar
, &varref
[2], len
);
2377 varref
[2 + len
] = ')';
2378 varref
[2 + len
+ 1] = '\0';
2379 value
= variable_expand (varref
);
2381 /* Skip whitespace, and check for an empty value. */
2382 value
= next_token (value
);
2383 len
= strlen (value
);
2387 /* Allocate a vector that is definitely big enough. */
2388 argv
= (char **) alloca ((1 + len
+ 1) * sizeof (char *));
2390 /* Allocate a buffer to copy the value into while we split it into words
2391 and unquote it. We must use permanent storage for this because
2392 decode_switches may store pointers into the passed argument words. */
2393 p
= (char *) xmalloc (2 * len
);
2395 /* getopt will look at the arguments starting at ARGV[1].
2396 Prepend a spacer word. */
2400 while (*value
!= '\0')
2402 if (*value
== '\\' && value
[1] != '\0')
2403 ++value
; /* Skip the backslash. */
2404 else if (isblank ((unsigned char)*value
))
2406 /* End of the word. */
2411 while (isblank ((unsigned char)*value
));
2419 if (argv
[1][0] != '-' && strchr (argv
[1], '=') == 0)
2420 /* The first word doesn't start with a dash and isn't a variable
2421 definition. Add a dash and pass it along to decode_switches. We
2422 need permanent storage for this in case decode_switches saves
2423 pointers into the value. */
2424 argv
[1] = concat ("-", argv
[1], "");
2426 /* Parse those words. */
2427 decode_switches (argc
, argv
, 1);
2430 /* Quote the string IN so that it will be interpreted as a single word with
2431 no magic by decode_env_switches; also double dollar signs to avoid
2432 variable expansion in make itself. Write the result into OUT, returning
2433 the address of the next character to be written.
2434 Allocating space for OUT twice the length of IN is always sufficient. */
2437 quote_for_env (char *out
, char *in
)
2443 else if (isblank ((unsigned char)*in
) || *in
== '\\')
2451 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2452 command switches. Include options with args if ALL is nonzero.
2453 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2456 define_makeflags (int all
, int makefile
)
2458 static const char ref
[] = "$(MAKEOVERRIDES)";
2459 static const char posixref
[] = "$(-*-command-variables-*-)";
2460 register const struct command_switch
*cs
;
2466 /* We will construct a linked list of `struct flag's describing
2467 all the flags which need to go in MAKEFLAGS. Then, once we
2468 know how many there are and their lengths, we can put them all
2469 together in a string. */
2474 const struct command_switch
*cs
;
2477 struct flag
*flags
= 0;
2478 unsigned int flagslen
= 0;
2479 #define ADD_FLAG(ARG, LEN) \
2481 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2484 new->next = flags; \
2486 if (new->arg == 0) \
2487 ++flagslen; /* Just a single flag letter. */ \
2489 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2490 if (!short_option (cs->c)) \
2491 /* This switch has no single-letter version, so we use the long. */ \
2492 flagslen += 2 + strlen (cs->long_name); \
2495 for (cs
= switches
; cs
->c
!= '\0'; ++cs
)
2496 if (cs
->toenv
&& (!makefile
|| !cs
->no_makefile
))
2507 if (!*(int *) cs
->value_ptr
== (cs
->type
== flag_off
)
2508 && (cs
->default_value
== 0
2509 || *(int *) cs
->value_ptr
!= *(int *) cs
->default_value
))
2516 if ((cs
->default_value
!= 0
2517 && (*(unsigned int *) cs
->value_ptr
2518 == *(unsigned int *) cs
->default_value
)))
2520 else if (cs
->noarg_value
!= 0
2521 && (*(unsigned int *) cs
->value_ptr
==
2522 *(unsigned int *) cs
->noarg_value
))
2523 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2524 else if (cs
->c
== 'j')
2525 /* Special case for `-j'. */
2529 char *buf
= (char *) alloca (30);
2530 sprintf (buf
, "%u", *(unsigned int *) cs
->value_ptr
);
2531 ADD_FLAG (buf
, strlen (buf
));
2540 if (cs
->default_value
!= 0
2541 && (*(double *) cs
->value_ptr
2542 == *(double *) cs
->default_value
))
2544 else if (cs
->noarg_value
!= 0
2545 && (*(double *) cs
->value_ptr
2546 == *(double *) cs
->noarg_value
))
2547 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2550 char *buf
= (char *) alloca (100);
2551 sprintf (buf
, "%g", *(double *) cs
->value_ptr
);
2552 ADD_FLAG (buf
, strlen (buf
));
2561 struct stringlist
*sl
= *(struct stringlist
**) cs
->value_ptr
;
2564 /* Add the elements in reverse order, because
2565 all the flags get reversed below; and the order
2566 matters for some switches (like -I). */
2567 register unsigned int i
= sl
->idx
;
2569 ADD_FLAG (sl
->list
[i
], strlen (sl
->list
[i
]));
2575 flagslen
+= 4 + sizeof posixref
; /* Four more for the possible " -- ". */
2579 /* Construct the value in FLAGSTRING.
2580 We allocate enough space for a preceding dash and trailing null. */
2581 flagstring
= (char *) alloca (1 + flagslen
+ 1);
2582 bzero (flagstring
, 1 + flagslen
+ 1);
2588 /* Add the flag letter or name to the string. */
2589 if (short_option (flags
->cs
->c
))
2590 *p
++ = flags
->cs
->c
;
2599 strcpy (p
, flags
->cs
->long_name
);
2602 if (flags
->arg
!= 0)
2604 /* A flag that takes an optional argument which in this case is
2605 omitted is specified by ARG being "". We must distinguish
2606 because a following flag appended without an intervening " -"
2607 is considered the arg for the first. */
2608 if (flags
->arg
[0] != '\0')
2610 /* Add its argument too. */
2611 *p
++ = !short_option (flags
->cs
->c
) ? '=' : ' ';
2612 p
= quote_for_env (p
, flags
->arg
);
2615 /* Write a following space and dash, for the next flag. */
2619 else if (!short_option (flags
->cs
->c
))
2622 /* Long options must each go in their own word,
2623 so we write the following space and dash. */
2627 flags
= flags
->next
;
2630 /* Define MFLAGS before appending variable definitions. */
2632 if (p
== &flagstring
[1])
2634 flagstring
[0] = '\0';
2635 else if (p
[-1] == '-')
2637 /* Kill the final space and dash. */
2642 /* Terminate the string. */
2645 /* Since MFLAGS is not parsed for flags, there is no reason to
2646 override any makefile redefinition. */
2647 (void) define_variable ("MFLAGS", 6, flagstring
, o_env
, 1);
2649 if (all
&& command_variables
!= 0)
2651 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2652 command-line variable definitions. */
2654 if (p
== &flagstring
[1])
2655 /* No flags written, so elide the leading dash already written. */
2659 /* Separate the variables from the switches with a "--" arg. */
2662 /* We did not already write a trailing " -". */
2666 /* There is a trailing " -"; fill it out to " -- ". */
2671 /* Copy in the string. */
2674 bcopy (posixref
, p
, sizeof posixref
- 1);
2675 p
+= sizeof posixref
- 1;
2679 bcopy (ref
, p
, sizeof ref
- 1);
2680 p
+= sizeof ref
- 1;
2683 else if (p
== &flagstring
[1])
2688 else if (p
[-1] == '-')
2689 /* Kill the final space and dash. */
2691 /* Terminate the string. */
2694 v
= define_variable ("MAKEFLAGS", 9,
2695 /* If there are switches, omit the leading dash
2696 unless it is a single long option with two
2698 &flagstring
[(flagstring
[0] == '-'
2699 && flagstring
[1] != '-')
2701 /* This used to use o_env, but that lost when a
2702 makefile defined MAKEFLAGS. Makefiles set
2703 MAKEFLAGS to add switches, but we still want
2704 to redefine its value with the full set of
2705 switches. Of course, an override or command
2706 definition will still take precedence. */
2709 /* The first time we are called, set MAKEFLAGS to always be exported.
2710 We should not do this again on the second call, because that is
2711 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2712 v
->export
= v_export
;
2715 /* Print version information. */
2718 print_version (void)
2720 static int printed_version
= 0;
2722 char *precede
= print_data_base_flag
? "# " : "";
2724 if (printed_version
)
2725 /* Do it only once. */
2728 /* Print this untranslated. The coding standards recommend translating the
2729 (C) to the copyright symbol, but this string is going to change every
2730 year, and none of the rest of it should be translated (including the
2731 word "Copyright", so it hardly seems worth it. */
2733 printf ("%sGNU Make %s\n\
2734 %sCopyright (C) 2003 Free Software Foundation, Inc.\n",
2735 precede
, version_string
, precede
);
2737 printf (_("%sThis is free software; see the source for copying conditions.\n\
2738 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2739 %sPARTICULAR PURPOSE.\n"),
2740 precede
, precede
, precede
);
2742 if (!remote_description
|| *remote_description
== '\0')
2743 printf (_("\n%sThis program built for %s\n"), precede
, make_host
);
2745 printf (_("\n%sThis program built for %s (%s)\n"),
2746 precede
, make_host
, remote_description
);
2748 printed_version
= 1;
2750 /* Flush stdout so the user doesn't have to wait to see the
2751 version information while things are thought about. */
2755 /* Print a bunch of information about this and that. */
2758 print_data_base (void)
2762 when
= time ((time_t *) 0);
2763 printf (_("\n# Make data base, printed on %s"), ctime (&when
));
2765 print_variable_data_base ();
2766 print_dir_data_base ();
2767 print_rule_data_base ();
2768 print_file_data_base ();
2769 print_vpath_data_base ();
2771 when
= time ((time_t *) 0);
2772 printf (_("\n# Finished Make data base on %s\n"), ctime (&when
));
2775 /* Exit with STATUS, cleaning up as necessary. */
2780 static char dying
= 0;
2788 if (print_version_flag
)
2791 /* Wait for children to die. */
2792 for (err
= (status
!= 0); job_slots_used
> 0; err
= 0)
2793 reap_children (1, err
);
2795 /* Let the remote job module clean up its state. */
2798 /* Remove the intermediate files. */
2799 remove_intermediates (0);
2801 if (print_data_base_flag
)
2804 /* Try to move back to the original directory. This is essential on
2805 MS-DOS (where there is really only one process), and on Unix it
2806 puts core files in the original directory instead of the -C
2807 directory. Must wait until after remove_intermediates(), or unlinks
2808 of relative pathnames fail. */
2809 if (directory_before_chdir
!= 0)
2810 chdir (directory_before_chdir
);
2812 log_working_directory (0);
2818 /* Write a message indicating that we've just entered or
2819 left (according to ENTERING) the current directory. */
2822 log_working_directory (int entering
)
2824 static int entered
= 0;
2826 /* Print nothing without the flag. Don't print the entering message
2827 again if we already have. Don't print the leaving message if we
2828 haven't printed the entering message. */
2829 if (! print_directory_flag
|| entering
== entered
)
2834 if (print_data_base_flag
)
2835 fputs ("# ", stdout
);
2837 /* Use entire sentences to give the translators a fighting chance. */
2840 if (starting_directory
== 0)
2842 printf (_("%s: Entering an unknown directory\n"), program
);
2844 printf (_("%s: Leaving an unknown directory\n"), program
);
2847 printf (_("%s: Entering directory `%s'\n"),
2848 program
, starting_directory
);
2850 printf (_("%s: Leaving directory `%s'\n"),
2851 program
, starting_directory
);
2853 if (starting_directory
== 0)
2855 printf (_("%s[%u]: Entering an unknown directory\n"),
2856 program
, makelevel
);
2858 printf (_("%s[%u]: Leaving an unknown directory\n"),
2859 program
, makelevel
);
2862 printf (_("%s[%u]: Entering directory `%s'\n"),
2863 program
, makelevel
, starting_directory
);
2865 printf (_("%s[%u]: Leaving directory `%s'\n"),
2866 program
, makelevel
, starting_directory
);