* Add new debugging output level selection feature.
[make.git] / main.c
blob96bab636cc873e52394d3bc737f7499fabc143c7
1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988,89,90,91,94,95,96,97,98,99 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 MA 02111-1307, USA. */
20 #include "make.h"
21 #include "dep.h"
22 #include "filedef.h"
23 #include "variable.h"
24 #include "job.h"
25 #include "commands.h"
26 #include "rule.h"
27 #include "debug.h"
28 #include "getopt.h"
30 #include <assert.h>
31 #ifdef _AMIGA
32 # include <dos/dos.h>
33 # include <proto/dos.h>
34 #endif
35 #ifdef WINDOWS32
36 #include <windows.h>
37 #include "pathstuff.h"
38 #endif
39 #if defined(MAKE_JOBSERVER) && defined(HAVE_FCNTL_H)
40 # include <fcntl.h>
41 #endif
43 #ifdef _AMIGA
44 int __stack = 20000; /* Make sure we have 20K of stack space */
45 #endif
47 extern void init_dir PARAMS ((void));
48 extern void remote_setup PARAMS ((void));
49 extern void remote_cleanup PARAMS ((void));
50 extern RETSIGTYPE fatal_error_signal PARAMS ((int sig));
52 extern void print_variable_data_base PARAMS ((void));
53 extern void print_dir_data_base PARAMS ((void));
54 extern void print_rule_data_base PARAMS ((void));
55 extern void print_file_data_base PARAMS ((void));
56 extern void print_vpath_data_base PARAMS ((void));
58 #if defined HAVE_WAITPID || defined HAVE_WAIT3
59 # define HAVE_WAIT_NOHANG
60 #endif
62 #ifndef HAVE_UNISTD_H
63 extern int chdir ();
64 #endif
65 #ifndef STDC_HEADERS
66 # ifndef sun /* Sun has an incorrect decl in a header. */
67 extern void exit PARAMS ((int)) __attribute__ ((noreturn));
68 # endif
69 extern double atof ();
70 #endif
71 extern char *mktemp ();
73 static void print_data_base PARAMS ((void));
74 static void print_version PARAMS ((void));
75 static void decode_switches PARAMS ((int argc, char **argv, int env));
76 static void decode_env_switches PARAMS ((char *envar, unsigned int len));
77 static void define_makeflags PARAMS ((int all, int makefile));
78 static char *quote_for_env PARAMS ((char *out, char *in));
80 /* The structure that describes an accepted command switch. */
82 struct command_switch
84 int c; /* The switch character. */
86 enum /* Type of the value. */
88 flag, /* Turn int flag on. */
89 flag_off, /* Turn int flag off. */
90 string, /* One string per switch. */
91 positive_int, /* A positive integer. */
92 floating, /* A floating-point number (double). */
93 ignore /* Ignored. */
94 } type;
96 char *value_ptr; /* Pointer to the value-holding variable. */
98 unsigned int env:1; /* Can come from MAKEFLAGS. */
99 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
100 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
102 char *noarg_value; /* Pointer to value used if no argument is given. */
103 char *default_value;/* Pointer to default value. */
105 char *long_name; /* Long option name. */
106 char *argdesc; /* Descriptive word for argument. */
107 char *description; /* Description for usage message. */
108 /* 0 means internal; don't display help. */
111 /* True if C is a switch value that corresponds to a short option. */
113 #define short_option(c) ((c) <= CHAR_MAX)
115 /* The structure used to hold the list of strings given
116 in command switches of a type that takes string arguments. */
118 struct stringlist
120 char **list; /* Nil-terminated list of strings. */
121 unsigned int idx; /* Index into above. */
122 unsigned int max; /* Number of pointers allocated. */
126 /* The recognized command switches. */
128 /* Nonzero means do not print commands to be executed (-s). */
130 int silent_flag;
132 /* Nonzero means just touch the files
133 that would appear to need remaking (-t) */
135 int touch_flag;
137 /* Nonzero means just print what commands would need to be executed,
138 don't actually execute them (-n). */
140 int just_print_flag;
142 /* Print debugging info (--debug). */
144 int db_level = 0;
145 int noarg_db_level = 1;
146 int default_db_level = 0;
148 #ifdef WINDOWS32
149 /* Suspend make in main for a short time to allow debugger to attach */
151 int suspend_flag = 0;
152 #endif
154 /* Environment variables override makefile definitions. */
156 int env_overrides = 0;
158 /* Nonzero means ignore status codes returned by commands
159 executed to remake files. Just treat them all as successful (-i). */
161 int ignore_errors_flag = 0;
163 /* Nonzero means don't remake anything, just print the data base
164 that results from reading the makefile (-p). */
166 int print_data_base_flag = 0;
168 /* Nonzero means don't remake anything; just return a nonzero status
169 if the specified targets are not up to date (-q). */
171 int question_flag = 0;
173 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
175 int no_builtin_rules_flag = 0;
176 int no_builtin_variables_flag = 0;
178 /* Nonzero means keep going even if remaking some file fails (-k). */
180 int keep_going_flag;
181 int default_keep_going_flag = 0;
183 /* Nonzero means print directory before starting and when done (-w). */
185 int print_directory_flag = 0;
187 /* Nonzero means ignore print_directory_flag and never print the directory.
188 This is necessary because print_directory_flag is set implicitly. */
190 int inhibit_print_directory_flag = 0;
192 /* Nonzero means print version information. */
194 int print_version_flag = 0;
196 /* List of makefiles given with -f switches. */
198 static struct stringlist *makefiles = 0;
200 /* Number of job slots (commands that can be run at once). */
202 unsigned int job_slots = 1;
203 unsigned int default_job_slots = 1;
205 /* Value of job_slots that means no limit. */
207 static unsigned int inf_jobs = 0;
209 /* File descriptors for the jobs pipe. */
211 static struct stringlist *jobserver_fds = 0;
213 int job_fds[2] = { -1, -1 };
214 int job_rfd = -1;
216 /* Maximum load average at which multiple jobs will be run.
217 Negative values mean unlimited, while zero means limit to
218 zero load (which could be useful to start infinite jobs remotely
219 but one at a time locally). */
220 #ifndef NO_FLOAT
221 double max_load_average = -1.0;
222 double default_load_average = -1.0;
223 #else
224 int max_load_average = -1;
225 int default_load_average = -1;
226 #endif
228 /* List of directories given with -C switches. */
230 static struct stringlist *directories = 0;
232 /* List of include directories given with -I switches. */
234 static struct stringlist *include_directories = 0;
236 /* List of files given with -o switches. */
238 static struct stringlist *old_files = 0;
240 /* List of files given with -W switches. */
242 static struct stringlist *new_files = 0;
244 /* If nonzero, we should just print usage and exit. */
246 static int print_usage_flag = 0;
248 /* If nonzero, we should print a warning message
249 for each reference to an undefined variable. */
251 int warn_undefined_variables_flag;
253 /* The table of command switches. */
255 static const struct command_switch switches[] =
257 { 'b', ignore, 0, 0, 0, 0, 0, 0,
258 0, 0,
259 _("Ignored for compatibility") },
260 { 'C', string, (char *) &directories, 0, 0, 0, 0, 0,
261 "directory", _("DIRECTORY"),
262 _("Change to DIRECTORY before doing anything") },
263 { 'd', positive_int, (char *) &db_level, 1, 1, 0,
264 (char *) &noarg_db_level, (char *) &default_db_level,
265 "debug", "L",
266 _("Print different types of debugging information") },
267 #ifdef WINDOWS32
268 { 'D', flag, (char *) &suspend_flag, 1, 1, 0, 0, 0,
269 "suspend-for-debug", 0,
270 _("Suspend process to allow a debugger to attach") },
271 #endif
272 { 'e', flag, (char *) &env_overrides, 1, 1, 0, 0, 0,
273 "environment-overrides", 0,
274 _("Environment variables override makefiles") },
275 { 'f', string, (char *) &makefiles, 0, 0, 0, 0, 0,
276 "file", _("FILE"),
277 _("Read FILE as a makefile") },
278 { 'h', flag, (char *) &print_usage_flag, 0, 0, 0, 0, 0,
279 "help", 0,
280 _("Print this message and exit") },
281 { 'i', flag, (char *) &ignore_errors_flag, 1, 1, 0, 0, 0,
282 "ignore-errors", 0,
283 _("Ignore errors from commands") },
284 { 'I', string, (char *) &include_directories, 1, 1, 0, 0, 0,
285 "include-dir", _("DIRECTORY"),
286 _("Search DIRECTORY for included makefiles") },
287 { 'j',
288 positive_int, (char *) &job_slots, 1, 1, 0,
289 (char *) &inf_jobs, (char *) &default_job_slots,
290 "jobs", "N",
291 _("Allow N jobs at once; infinite jobs with no arg") },
292 { CHAR_MAX+1, string, (char *) &jobserver_fds, 1, 1, 0, 0, 0,
293 "jobserver-fds", 0,
294 0 },
295 { 'k', flag, (char *) &keep_going_flag, 1, 1, 0,
296 0, (char *) &default_keep_going_flag,
297 "keep-going", 0,
298 _("Keep going when some targets can't be made") },
299 #ifndef NO_FLOAT
300 { 'l', floating, (char *) &max_load_average, 1, 1, 0,
301 (char *) &default_load_average, (char *) &default_load_average,
302 "load-average", "N",
303 _("Don't start multiple jobs unless load is below N") },
304 #else
305 { 'l', positive_int, (char *) &max_load_average, 1, 1, 0,
306 (char *) &default_load_average, (char *) &default_load_average,
307 "load-average", "N",
308 _("Don't start multiple jobs unless load is below N") },
309 #endif
310 { 'm', ignore, 0, 0, 0, 0, 0, 0,
311 0, 0,
312 "-b" },
313 { 'n', flag, (char *) &just_print_flag, 1, 1, 1, 0, 0,
314 "just-print", 0,
315 _("Don't actually run any commands; just print them") },
316 { 'o', string, (char *) &old_files, 0, 0, 0, 0, 0,
317 "old-file", _("FILE"),
318 _("Consider FILE to be very old and don't remake it") },
319 { 'p', flag, (char *) &print_data_base_flag, 1, 1, 0, 0, 0,
320 "print-data-base", 0,
321 _("Print make's internal database") },
322 { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0,
323 "question", 0,
324 _("Run no commands; exit status says if up to date") },
325 { 'r', flag, (char *) &no_builtin_rules_flag, 1, 1, 0, 0, 0,
326 "no-builtin-rules", 0,
327 _("Disable the built-in implicit rules") },
328 { 'R', flag, (char *) &no_builtin_variables_flag, 1, 1, 0, 0, 0,
329 "no-builtin-variables", 0,
330 _("Disable the built-in variable settings") },
331 { 's', flag, (char *) &silent_flag, 1, 1, 0, 0, 0,
332 "silent", 0,
333 _("Don't echo commands") },
334 { 'S', flag_off, (char *) &keep_going_flag, 1, 1, 0,
335 0, (char *) &default_keep_going_flag,
336 "no-keep-going", 0,
337 _("Turns off -k") },
338 { 't', flag, (char *) &touch_flag, 1, 1, 1, 0, 0,
339 "touch", 0,
340 _("Touch targets instead of remaking them") },
341 { 'v', flag, (char *) &print_version_flag, 1, 1, 0, 0, 0,
342 "version", 0,
343 _("Print the version number of make and exit") },
344 { 'w', flag, (char *) &print_directory_flag, 1, 1, 0, 0, 0,
345 "print-directory", 0,
346 _("Print the current directory") },
347 { CHAR_MAX+2, flag, (char *) &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
348 "no-print-directory", 0,
349 _("Turn off -w, even if it was turned on implicitly") },
350 { 'W', string, (char *) &new_files, 0, 0, 0, 0, 0,
351 "what-if", _("FILE"),
352 _("Consider FILE to be infinitely new") },
353 { CHAR_MAX+3, flag, (char *) &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
354 "warn-undefined-variables", 0,
355 _("Warn when an undefined variable is referenced") },
356 { '\0', }
359 /* Secondary long names for options. */
361 static struct option long_option_aliases[] =
363 { "quiet", no_argument, 0, 's' },
364 { "stop", no_argument, 0, 'S' },
365 { "new-file", required_argument, 0, 'W' },
366 { "assume-new", required_argument, 0, 'W' },
367 { "assume-old", required_argument, 0, 'o' },
368 { "max-load", optional_argument, 0, 'l' },
369 { "dry-run", no_argument, 0, 'n' },
370 { "recon", no_argument, 0, 'n' },
371 { "makefile", required_argument, 0, 'f' },
374 /* The usage message prints the descriptions of options starting in
375 this column. Make sure it leaves enough room for the longest
376 description to fit in less than 80 characters. */
378 #define DESCRIPTION_COLUMN 30
380 /* List of goal targets. */
382 static struct dep *goals, *lastgoal;
384 /* List of variables which were defined on the command line
385 (or, equivalently, in MAKEFLAGS). */
387 struct command_variable
389 struct command_variable *next;
390 struct variable *variable;
392 static struct command_variable *command_variables;
394 /* The name we were invoked with. */
396 char *program;
398 /* Our current directory before processing any -C options. */
400 char *directory_before_chdir;
402 /* Our current directory after processing all -C options. */
404 char *starting_directory;
406 /* Value of the MAKELEVEL variable at startup (or 0). */
408 unsigned int makelevel;
410 /* First file defined in the makefile whose name does not
411 start with `.'. This is the default to remake if the
412 command line does not specify. */
414 struct file *default_goal_file;
416 /* Pointer to structure for the file .DEFAULT
417 whose commands are used for any file that has none of its own.
418 This is zero if the makefiles do not define .DEFAULT. */
420 struct file *default_file;
422 /* Nonzero if we have seen the magic `.POSIX' target.
423 This turns on pedantic compliance with POSIX.2. */
425 int posix_pedantic;
427 /* Nonzero if we have seen the `.NOTPARALLEL' target.
428 This turns off parallel builds for this invocation of make. */
430 int not_parallel;
432 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
433 print one warning about it during the run, and (b) we can print a final
434 warning at the end of the run. */
436 int clock_skew_detected;
438 /* Mask of signals that are being caught with fatal_error_signal. */
440 #ifdef POSIX
441 sigset_t fatal_signal_set;
442 #else
443 #ifdef HAVE_SIGSETMASK
444 int fatal_signal_mask;
445 #endif
446 #endif
448 static struct file *
449 enter_command_line_file (name)
450 char *name;
452 if (name[0] == '\0')
453 fatal (NILF, _("empty string invalid as file name"));
455 if (name[0] == '~')
457 char *expanded = tilde_expand (name);
458 if (expanded != 0)
459 name = expanded; /* Memory leak; I don't care. */
462 /* This is also done in parse_file_seq, so this is redundant
463 for names read from makefiles. It is here for names passed
464 on the command line. */
465 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
467 name += 2;
468 while (*name == '/')
469 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
470 ++name;
473 if (*name == '\0')
475 /* It was all slashes! Move back to the dot and truncate
476 it after the first slash, so it becomes just "./". */
478 --name;
479 while (name[0] != '.');
480 name[2] = '\0';
483 return enter_file (xstrdup (name));
486 /* Toggle -d on receipt of SIGUSR1. */
488 static RETSIGTYPE
489 debug_signal_handler (sig)
490 int sig;
492 db_level = DB_NONE;
495 #ifdef WINDOWS32
497 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
498 * exception and print it to stderr instead.
500 * If ! DB_EXTRA, just print a simple message and exit.
501 * If DB_EXTRA, print a more verbose message.
502 * If compiled for DEBUG, let exception pass through to GUI so that
503 * debuggers can attach.
505 LONG WINAPI
506 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
508 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
509 LPSTR cmdline = GetCommandLine();
510 LPSTR prg = strtok(cmdline, " ");
511 CHAR errmsg[1024];
512 #ifdef USE_EVENT_LOG
513 HANDLE hEventSource;
514 LPTSTR lpszStrings[1];
515 #endif
517 if (! ISDB (DB_EXTRA))
519 sprintf(errmsg, _("%s: Interrupt/Exception caught "), prg);
520 sprintf(&errmsg[strlen(errmsg)],
521 "(code = 0x%x, addr = 0x%x)\r\n",
522 exrec->ExceptionCode, exrec->ExceptionAddress);
523 fprintf(stderr, errmsg);
524 exit(255);
527 sprintf(errmsg,
528 _("\r\nUnhandled exception filter called from program %s\r\n"), prg);
529 sprintf(&errmsg[strlen(errmsg)], "ExceptionCode = %x\r\n",
530 exrec->ExceptionCode);
531 sprintf(&errmsg[strlen(errmsg)], "ExceptionFlags = %x\r\n",
532 exrec->ExceptionFlags);
533 sprintf(&errmsg[strlen(errmsg)], "ExceptionAddress = %x\r\n",
534 exrec->ExceptionAddress);
536 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
537 && exrec->NumberParameters >= 2)
538 sprintf(&errmsg[strlen(errmsg)],
539 _("Access violation: %s operation at address %x\r\n"),
540 exrec->ExceptionInformation[0] ? _("write"): _("read"),
541 exrec->ExceptionInformation[1]);
543 /* turn this on if we want to put stuff in the event log too */
544 #ifdef USE_EVENT_LOG
545 hEventSource = RegisterEventSource(NULL, "GNU Make");
546 lpszStrings[0] = errmsg;
548 if (hEventSource != NULL)
550 ReportEvent(hEventSource, /* handle of event source */
551 EVENTLOG_ERROR_TYPE, /* event type */
552 0, /* event category */
553 0, /* event ID */
554 NULL, /* current user's SID */
555 1, /* strings in lpszStrings */
556 0, /* no bytes of raw data */
557 lpszStrings, /* array of error strings */
558 NULL); /* no raw data */
560 (VOID) DeregisterEventSource(hEventSource);
562 #endif
564 /* Write the error to stderr too */
565 fprintf(stderr, errmsg);
567 #ifdef DEBUG
568 return EXCEPTION_CONTINUE_SEARCH;
569 #else
570 exit(255);
571 return (255); /* not reached */
572 #endif
576 * On WIN32 systems we don't have the luxury of a /bin directory that
577 * is mapped globally to every drive mounted to the system. Since make could
578 * be invoked from any drive, and we don't want to propogate /bin/sh
579 * to every single drive. Allow ourselves a chance to search for
580 * a value for default shell here (if the default path does not exist).
584 find_and_set_default_shell(char *token)
586 int sh_found = 0;
587 char* search_token;
588 PATH_VAR(sh_path);
589 extern char *default_shell;
591 if (!token)
592 search_token = default_shell;
593 else
594 search_token = token;
596 if (!no_default_sh_exe &&
597 (token == NULL || !strcmp(search_token, default_shell))) {
598 /* no new information, path already set or known */
599 sh_found = 1;
600 } else if (file_exists_p(search_token)) {
601 /* search token path was found */
602 sprintf(sh_path, "%s", search_token);
603 default_shell = xstrdup(w32ify(sh_path,0));
604 DB (DB_EXTRA,
605 (_("find_and_set_shell setting default_shell = %s\n"), default_shell));
606 sh_found = 1;
607 } else {
608 char *p;
609 struct variable *v = lookup_variable ("Path", 4);
612 * Search Path for shell
614 if (v && v->value) {
615 char *ep;
617 p = v->value;
618 ep = strchr(p, PATH_SEPARATOR_CHAR);
620 while (ep && *ep) {
621 *ep = '\0';
623 if (dir_file_exists_p(p, search_token)) {
624 sprintf(sh_path, "%s/%s", p, search_token);
625 default_shell = xstrdup(w32ify(sh_path,0));
626 sh_found = 1;
627 *ep = PATH_SEPARATOR_CHAR;
629 /* terminate loop */
630 p += strlen(p);
631 } else {
632 *ep = PATH_SEPARATOR_CHAR;
633 p = ++ep;
636 ep = strchr(p, PATH_SEPARATOR_CHAR);
639 /* be sure to check last element of Path */
640 if (p && *p && dir_file_exists_p(p, search_token)) {
641 sprintf(sh_path, "%s/%s", p, search_token);
642 default_shell = xstrdup(w32ify(sh_path,0));
643 sh_found = 1;
646 if (sh_found)
647 DB (DB_EXTRA,
648 (_("find_and_set_shell path search set default_shell = %s\n"),
649 default_shell));
653 /* naive test */
654 if (!unixy_shell && sh_found &&
655 (strstr(default_shell, "sh") || strstr(default_shell, "SH"))) {
656 unixy_shell = 1;
657 batch_mode_shell = 0;
660 #ifdef BATCH_MODE_ONLY_SHELL
661 batch_mode_shell = 1;
662 #endif
664 return (sh_found);
666 #endif /* WINDOWS32 */
668 #ifdef __MSDOS__
670 static void
671 msdos_return_to_initial_directory ()
673 if (directory_before_chdir)
674 chdir (directory_before_chdir);
676 #endif
678 #ifndef _AMIGA
680 main (argc, argv, envp)
681 int argc;
682 char **argv;
683 char **envp;
684 #else
685 int main (int argc, char ** argv)
686 #endif
688 static char *stdin_nm = 0;
689 register struct file *f;
690 register unsigned int i;
691 char **p;
692 struct dep *read_makefiles;
693 PATH_VAR (current_directory);
694 #ifdef WINDOWS32
695 char *unix_path = NULL;
696 char *windows32_path = NULL;
698 SetUnhandledExceptionFilter(handle_runtime_exceptions);
700 /* start off assuming we have no shell */
701 unixy_shell = 0;
702 no_default_sh_exe = 1;
703 #endif
705 default_goal_file = 0;
706 reading_file = 0;
708 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
709 /* Request the most powerful version of `system', to
710 make up for the dumb default shell. */
711 __system_flags = (__system_redirect
712 | __system_use_shell
713 | __system_allow_multiple_cmds
714 | __system_allow_long_cmds
715 | __system_handle_null_commands
716 | __system_emulate_chdir);
718 #endif
720 #if !defined (HAVE_STRSIGNAL) && !defined (HAVE_SYS_SIGLIST)
721 signame_init ();
722 #endif
724 #ifdef POSIX
725 sigemptyset (&fatal_signal_set);
726 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
727 #else
728 #ifdef HAVE_SIGSETMASK
729 fatal_signal_mask = 0;
730 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
731 #else
732 #define ADD_SIG(sig)
733 #endif
734 #endif
736 #define FATAL_SIG(sig) \
737 if (signal ((sig), fatal_error_signal) == SIG_IGN) \
738 (void) signal ((sig), SIG_IGN); \
739 else \
740 ADD_SIG (sig);
742 #ifdef SIGHUP
743 FATAL_SIG (SIGHUP);
744 #endif
745 #ifdef SIGQUIT
746 FATAL_SIG (SIGQUIT);
747 #endif
748 FATAL_SIG (SIGINT);
749 FATAL_SIG (SIGTERM);
751 #ifdef SIGDANGER
752 FATAL_SIG (SIGDANGER);
753 #endif
754 #ifdef SIGXCPU
755 FATAL_SIG (SIGXCPU);
756 #endif
757 #ifdef SIGXFSZ
758 FATAL_SIG (SIGXFSZ);
759 #endif
761 #undef FATAL_SIG
763 /* Do not ignore the child-death signal. This must be done before
764 any children could possibly be created; otherwise, the wait
765 functions won't work on systems with the SVR4 ECHILD brain
766 damage, if our invoker is ignoring this signal. */
768 #ifdef HAVE_WAIT_NOHANG
769 # if defined SIGCHLD
770 (void) signal (SIGCHLD, SIG_DFL);
771 # endif
772 # if defined SIGCLD && SIGCLD != SIGCHLD
773 (void) signal (SIGCLD, SIG_DFL);
774 # endif
775 #endif
777 /* Make sure stdout is line-buffered. */
779 #ifdef HAVE_SETLINEBUF
780 setlinebuf (stdout);
781 #else
782 #ifndef SETVBUF_REVERSED
783 setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
784 #else /* setvbuf not reversed. */
785 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
786 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
787 #endif /* setvbuf reversed. */
788 #endif /* setlinebuf missing. */
790 /* Figure out where this program lives. */
792 if (argv[0] == 0)
793 argv[0] = "";
794 if (argv[0][0] == '\0')
795 program = "make";
796 else
798 #ifdef VMS
799 program = strrchr (argv[0], ']');
800 #else
801 program = strrchr (argv[0], '/');
802 #endif
803 #ifdef __MSDOS__
804 if (program == 0)
805 program = strrchr (argv[0], '\\');
806 else
808 /* Some weird environments might pass us argv[0] with
809 both kinds of slashes; we must find the rightmost. */
810 char *p = strrchr (argv[0], '\\');
811 if (p && p > program)
812 program = p;
814 if (program == 0 && argv[0][1] == ':')
815 program = argv[0] + 1;
816 #endif
817 if (program == 0)
818 program = argv[0];
819 else
820 ++program;
823 /* Set up to access user data (files). */
824 user_access ();
826 /* Figure out where we are. */
828 #ifdef WINDOWS32
829 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
830 #else
831 if (getcwd (current_directory, GET_PATH_MAX) == 0)
832 #endif
834 #ifdef HAVE_GETCWD
835 perror_with_name ("getcwd: ", "");
836 #else
837 error (NILF, "getwd: %s", current_directory);
838 #endif
839 current_directory[0] = '\0';
840 directory_before_chdir = 0;
842 else
843 directory_before_chdir = xstrdup (current_directory);
844 #ifdef __MSDOS__
845 /* Make sure we will return to the initial directory, come what may. */
846 atexit (msdos_return_to_initial_directory);
847 #endif
849 /* Read in variables from the environment. It is important that this be
850 done before $(MAKE) is figured out so its definitions will not be
851 from the environment. */
853 #ifndef _AMIGA
854 for (i = 0; envp[i] != 0; ++i)
856 int do_not_define;
857 register char *ep = envp[i];
859 /* by default, everything gets defined and exported */
860 do_not_define = 0;
862 while (*ep != '=')
863 ++ep;
864 #ifdef WINDOWS32
865 if (!unix_path && strneq(envp[i], "PATH=", 5))
866 unix_path = ep+1;
867 else if (!windows32_path && !strnicmp(envp[i], "Path=", 5)) {
868 do_not_define = 1; /* it gets defined after loop exits */
869 windows32_path = ep+1;
871 #endif
872 /* The result of pointer arithmetic is cast to unsigned int for
873 machines where ptrdiff_t is a different size that doesn't widen
874 the same. */
875 if (!do_not_define)
876 define_variable (envp[i], (unsigned int) (ep - envp[i]),
877 ep + 1, o_env, 1)
878 /* Force exportation of every variable culled from the environment.
879 We used to rely on target_environment's v_default code to do this.
880 But that does not work for the case where an environment variable
881 is redefined in a makefile with `override'; it should then still
882 be exported, because it was originally in the environment. */
883 ->export = v_export;
885 #ifdef WINDOWS32
887 * Make sure that this particular spelling of 'Path' is available
889 if (windows32_path)
890 define_variable("Path", 4, windows32_path, o_env, 1)->export = v_export;
891 else if (unix_path)
892 define_variable("Path", 4, unix_path, o_env, 1)->export = v_export;
893 else
894 define_variable("Path", 4, "", o_env, 1)->export = v_export;
897 * PATH defaults to Path iff PATH not found and Path is found.
899 if (!unix_path && windows32_path)
900 define_variable("PATH", 4, windows32_path, o_env, 1)->export = v_export;
901 #endif
902 #else /* For Amiga, read the ENV: device, ignoring all dirs */
904 BPTR env, file, old;
905 char buffer[1024];
906 int len;
907 __aligned struct FileInfoBlock fib;
909 env = Lock ("ENV:", ACCESS_READ);
910 if (env)
912 old = CurrentDir (DupLock(env));
913 Examine (env, &fib);
915 while (ExNext (env, &fib))
917 if (fib.fib_DirEntryType < 0) /* File */
919 /* Define an empty variable. It will be filled in
920 variable_lookup(). Makes startup quite a bit
921 faster. */
922 define_variable (fib.fib_FileName,
923 strlen (fib.fib_FileName),
924 "", o_env, 1)->export = v_export;
927 UnLock (env);
928 UnLock(CurrentDir(old));
931 #endif
933 /* Decode the switches. */
935 decode_env_switches ("MAKEFLAGS", 9);
936 #if 0
937 /* People write things like:
938 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
939 and we set the -p, -i and -e switches. Doesn't seem quite right. */
940 decode_env_switches ("MFLAGS", 6);
941 #endif
942 decode_switches (argc, argv, 0);
943 #ifdef WINDOWS32
944 if (suspend_flag) {
945 fprintf(stderr, "%s (pid = %d)\n", argv[0], GetCurrentProcessId());
946 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
947 Sleep(30 * 1000);
948 fprintf(stderr, _("done sleep(30). Continuing.\n"));
950 #endif
952 /* If we have the "extra" level, force the basic level too. */
954 if (ISDB (DB_EXTRA))
955 db_level |= DB_BASIC;
957 /* Print version information. */
959 if (print_version_flag || print_data_base_flag || db_level)
960 print_version ();
962 /* `make --version' is supposed to just print the version and exit. */
963 if (print_version_flag)
964 die (0);
966 #ifndef VMS
967 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
968 (If it is a relative pathname with a slash, prepend our directory name
969 so the result will run the same program regardless of the current dir.
970 If it is a name with no slash, we can only hope that PATH did not
971 find it in the current directory.) */
972 #ifdef WINDOWS32
974 * Convert from backslashes to forward slashes for
975 * programs like sh which don't like them. Shouldn't
976 * matter if the path is one way or the other for
977 * CreateProcess().
979 if (strpbrk(argv[0], "/:\\") ||
980 strstr(argv[0], "..") ||
981 strneq(argv[0], "//", 2))
982 argv[0] = xstrdup(w32ify(argv[0],1));
983 #else /* WINDOWS32 */
984 #ifdef __MSDOS__
985 if (strchr (argv[0], '\\'))
987 char *p;
989 argv[0] = xstrdup (argv[0]);
990 for (p = argv[0]; *p; p++)
991 if (*p == '\\')
992 *p = '/';
994 /* If argv[0] is not in absolute form, prepend the current
995 directory. This can happen when Make is invoked by another DJGPP
996 program that uses a non-absolute name. */
997 if (current_directory[0] != '\0'
998 && argv[0] != 0
999 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':')))
1000 argv[0] = concat (current_directory, "/", argv[0]);
1001 #else /* !__MSDOS__ */
1002 if (current_directory[0] != '\0'
1003 && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0)
1004 argv[0] = concat (current_directory, "/", argv[0]);
1005 #endif /* !__MSDOS__ */
1006 #endif /* WINDOWS32 */
1007 #endif
1009 /* The extra indirection through $(MAKE_COMMAND) is done
1010 for hysterical raisins. */
1011 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
1012 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
1014 if (command_variables != 0)
1016 struct command_variable *cv;
1017 struct variable *v;
1018 unsigned int len = 0;
1019 char *value, *p;
1021 /* Figure out how much space will be taken up by the command-line
1022 variable definitions. */
1023 for (cv = command_variables; cv != 0; cv = cv->next)
1025 v = cv->variable;
1026 len += 2 * strlen (v->name);
1027 if (! v->recursive)
1028 ++len;
1029 ++len;
1030 len += 2 * strlen (v->value);
1031 ++len;
1034 /* Now allocate a buffer big enough and fill it. */
1035 p = value = (char *) alloca (len);
1036 for (cv = command_variables; cv != 0; cv = cv->next)
1038 v = cv->variable;
1039 p = quote_for_env (p, v->name);
1040 if (! v->recursive)
1041 *p++ = ':';
1042 *p++ = '=';
1043 p = quote_for_env (p, v->value);
1044 *p++ = ' ';
1046 p[-1] = '\0'; /* Kill the final space and terminate. */
1048 /* Define an unchangeable variable with a name that no POSIX.2
1049 makefile could validly use for its own variable. */
1050 (void) define_variable ("-*-command-variables-*-", 23,
1051 value, o_automatic, 0);
1053 /* Define the variable; this will not override any user definition.
1054 Normally a reference to this variable is written into the value of
1055 MAKEFLAGS, allowing the user to override this value to affect the
1056 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1057 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1058 a reference to this hidden variable is written instead. */
1059 (void) define_variable ("MAKEOVERRIDES", 13,
1060 "${-*-command-variables-*-}", o_env, 1);
1063 /* If there were -C flags, move ourselves about. */
1064 if (directories != 0)
1065 for (i = 0; directories->list[i] != 0; ++i)
1067 char *dir = directories->list[i];
1068 if (dir[0] == '~')
1070 char *expanded = tilde_expand (dir);
1071 if (expanded != 0)
1072 dir = expanded;
1074 if (chdir (dir) < 0)
1075 pfatal_with_name (dir);
1076 if (dir != directories->list[i])
1077 free (dir);
1080 #ifdef WINDOWS32
1082 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1083 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1085 * The functions in dir.c can incorrectly cache information for "."
1086 * before we have changed directory and this can cause file
1087 * lookups to fail because the current directory (.) was pointing
1088 * at the wrong place when it was first evaluated.
1090 no_default_sh_exe = !find_and_set_default_shell(NULL);
1092 #endif /* WINDOWS32 */
1093 /* Figure out the level of recursion. */
1095 struct variable *v = lookup_variable ("MAKELEVEL", 9);
1096 if (v != 0 && *v->value != '\0' && *v->value != '-')
1097 makelevel = (unsigned int) atoi (v->value);
1098 else
1099 makelevel = 0;
1102 /* Except under -s, always do -w in sub-makes and under -C. */
1103 if (!silent_flag && (directories != 0 || makelevel > 0))
1104 print_directory_flag = 1;
1106 /* Let the user disable that with --no-print-directory. */
1107 if (inhibit_print_directory_flag)
1108 print_directory_flag = 0;
1110 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1111 if (no_builtin_variables_flag)
1112 no_builtin_rules_flag = 1;
1114 /* Construct the list of include directories to search. */
1116 construct_include_path (include_directories == 0 ? (char **) 0
1117 : include_directories->list);
1119 /* Figure out where we are now, after chdir'ing. */
1120 if (directories == 0)
1121 /* We didn't move, so we're still in the same place. */
1122 starting_directory = current_directory;
1123 else
1125 #ifdef WINDOWS32
1126 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1127 #else
1128 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1129 #endif
1131 #ifdef HAVE_GETCWD
1132 perror_with_name ("getcwd: ", "");
1133 #else
1134 error (NILF, "getwd: %s", current_directory);
1135 #endif
1136 starting_directory = 0;
1138 else
1139 starting_directory = current_directory;
1142 (void) define_variable ("CURDIR", 6, current_directory, o_default, 0);
1144 /* Read any stdin makefiles into temporary files. */
1146 if (makefiles != 0)
1148 register unsigned int i;
1149 for (i = 0; i < makefiles->idx; ++i)
1150 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1152 /* This makefile is standard input. Since we may re-exec
1153 and thus re-read the makefiles, we read standard input
1154 into a temporary file and read from that. */
1155 FILE *outfile;
1157 /* Make a unique filename. */
1158 #ifdef HAVE_MKTEMP
1160 #ifdef VMS
1161 static char name[] = "sys$scratch:GmXXXXXX";
1162 #else
1163 static char name[] = "/tmp/GmXXXXXX";
1164 #endif
1165 (void) mktemp (name);
1166 #else
1167 static char name[L_tmpnam];
1168 (void) tmpnam (name);
1169 #endif
1171 if (stdin_nm)
1172 fatal (NILF, _("Makefile from standard input specified twice."));
1174 outfile = fopen (name, "w");
1175 if (outfile == 0)
1176 pfatal_with_name (_("fopen (temporary file)"));
1177 while (!feof (stdin))
1179 char buf[2048];
1180 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1181 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1182 pfatal_with_name (_("fwrite (temporary file)"));
1184 (void) fclose (outfile);
1186 /* Replace the name that read_all_makefiles will
1187 see with the name of the temporary file. */
1189 char *temp;
1190 /* SGI compiler requires alloca's result be assigned simply. */
1191 temp = (char *) alloca (sizeof (name));
1192 bcopy (name, temp, sizeof (name));
1193 makefiles->list[i] = temp;
1196 /* Make sure the temporary file will not be remade. */
1197 stdin_nm = savestring (name, sizeof (name) -1);
1198 f = enter_file (stdin_nm);
1199 f->updated = 1;
1200 f->update_status = 0;
1201 f->command_state = cs_finished;
1202 /* Can't be intermediate, or it'll be removed too early for
1203 make re-exec. */
1204 f->intermediate = 0;
1205 f->dontcare = 0;
1209 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1210 /* Set up to handle children dying. This must be done before
1211 reading in the makefiles so that `shell' function calls will work.
1213 If we don't have a hanging wait we have to fall back to old, broken
1214 functionality here and rely on the signal handler and counting
1215 children.
1217 If we're using the jobs pipe we need a signal handler so that
1218 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1219 jobserver pipe in job.c if we're waiting for a token.
1221 If none of these are true, we don't need a signal handler at all. */
1223 extern RETSIGTYPE child_handler PARAMS ((int sig));
1225 # if defined HAVE_SIGACTION
1226 struct sigaction sa;
1228 bzero ((char *)&sa, sizeof (struct sigaction));
1229 sa.sa_handler = child_handler;
1230 # if defined SA_INTERRUPT
1231 /* This is supposed to be the default, but what the heck... */
1232 sa.sa_flags = SA_INTERRUPT;
1233 # endif
1234 # define HANDLESIG(s) sigaction (s, &sa, NULL)
1235 # else
1236 # define HANDLESIG(s) signal (s, child_handler)
1237 # endif
1239 /* OK, now actually install the handlers. */
1240 # if defined SIGCHLD
1241 (void) HANDLESIG (SIGCHLD);
1242 # endif
1243 # if defined SIGCLD && SIGCLD != SIGCHLD
1244 (void) HANDLESIG (SIGCLD);
1245 # endif
1247 #endif
1249 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1250 #ifdef SIGUSR1
1251 (void) signal (SIGUSR1, debug_signal_handler);
1252 #endif
1254 /* Define the initial list of suffixes for old-style rules. */
1256 set_default_suffixes ();
1258 /* Define the file rules for the built-in suffix rules. These will later
1259 be converted into pattern rules. We used to do this in
1260 install_default_implicit_rules, but since that happens after reading
1261 makefiles, it results in the built-in pattern rules taking precedence
1262 over makefile-specified suffix rules, which is wrong. */
1264 install_default_suffix_rules ();
1266 /* Define some internal and special variables. */
1268 define_automatic_variables ();
1270 /* Set up the MAKEFLAGS and MFLAGS variables
1271 so makefiles can look at them. */
1273 define_makeflags (0, 0);
1275 /* Define the default variables. */
1276 define_default_variables ();
1278 /* Read all the makefiles. */
1280 default_file = enter_file (".DEFAULT");
1282 read_makefiles
1283 = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list);
1285 #ifdef WINDOWS32
1286 /* look one last time after reading all Makefiles */
1287 if (no_default_sh_exe)
1288 no_default_sh_exe = !find_and_set_default_shell(NULL);
1290 if (no_default_sh_exe && job_slots != 1) {
1291 error (NILF, _("Do not specify -j or --jobs if sh.exe is not available."));
1292 error (NILF, _("Resetting make for single job mode."));
1293 job_slots = 1;
1295 #endif /* WINDOWS32 */
1297 #ifdef __MSDOS__
1298 /* We need to know what kind of shell we will be using. */
1300 extern int _is_unixy_shell (const char *_path);
1301 struct variable *shv = lookup_variable ("SHELL", 5);
1302 extern int unixy_shell;
1303 extern char *default_shell;
1305 if (shv && *shv->value)
1307 char *shell_path = recursively_expand(shv);
1309 if (shell_path && _is_unixy_shell (shell_path))
1310 unixy_shell = 1;
1311 else
1312 unixy_shell = 0;
1313 if (shell_path)
1314 default_shell = shell_path;
1317 #endif /* __MSDOS__ */
1319 /* Decode switches again, in case the variables were set by the makefile. */
1320 decode_env_switches ("MAKEFLAGS", 9);
1321 #if 0
1322 decode_env_switches ("MFLAGS", 6);
1323 #endif
1325 #ifdef __MSDOS__
1326 if (job_slots != 1)
1328 error (NILF,
1329 _("Parallel jobs (-j) are not supported on this platform."));
1330 error (NILF, _("Resetting to single job (-j1) mode."));
1331 job_slots = 1;
1333 #endif
1335 #ifdef MAKE_JOBSERVER
1336 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1338 if (jobserver_fds)
1340 char *cp;
1342 for (i=1; i < jobserver_fds->idx; ++i)
1343 if (!streq (jobserver_fds->list[0], jobserver_fds->list[i]))
1344 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1346 /* Now parse the fds string and make sure it has the proper format. */
1348 cp = jobserver_fds->list[0];
1350 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1351 fatal (NILF,
1352 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1354 /* The combination of a pipe + !job_slots means we're using the
1355 jobserver. If !job_slots and we don't have a pipe, we can start
1356 infinite jobs. If we see both a pipe and job_slots >0 that means the
1357 user set -j explicitly. This is broken; in this case obey the user
1358 (ignore the jobserver pipe for this make) but print a message. */
1360 if (job_slots > 0)
1361 error (NILF,
1362 _("warning: -jN forced in submake: disabling jobserver mode."));
1364 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1365 handler. If this fails with EBADF, the parent has closed the pipe
1366 on us because it didn't think we were a submake. If so, print a
1367 warning then default to -j1. */
1369 else if ((job_rfd = dup (job_fds[0])) < 0)
1371 if (errno != EBADF)
1372 pfatal_with_name (_("dup jobserver"));
1374 error (NILF,
1375 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1376 job_slots = 1;
1379 if (job_slots > 0)
1381 close (job_fds[0]);
1382 close (job_fds[1]);
1383 job_fds[0] = job_fds[1] = -1;
1384 free (jobserver_fds->list);
1385 free (jobserver_fds);
1386 jobserver_fds = 0;
1390 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1391 Set up the pipe and install the fds option for our children. */
1393 if (job_slots > 1)
1395 char c = '+';
1397 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1398 pfatal_with_name (_("creating jobs pipe"));
1400 /* Every make assumes that it always has one job it can run. For the
1401 submakes it's the token they were given by their parent. For the
1402 top make, we just subtract one from the number the user wants. We
1403 want job_slots to be 0 to indicate we're using the jobserver. */
1405 while (--job_slots)
1406 while (write (job_fds[1], &c, 1) != 1)
1407 if (!EINTR_SET)
1408 pfatal_with_name (_("init jobserver pipe"));
1410 /* Fill in the jobserver_fds struct for our children. */
1412 jobserver_fds = (struct stringlist *)
1413 xmalloc (sizeof (struct stringlist));
1414 jobserver_fds->list = (char **) xmalloc (sizeof (char *));
1415 jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
1417 sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
1418 jobserver_fds->idx = 1;
1419 jobserver_fds->max = 1;
1421 #endif
1423 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1425 define_makeflags (1, 0);
1427 /* Make each `struct dep' point at the `struct file' for the file
1428 depended on. Also do magic for special targets. */
1430 snap_deps ();
1432 /* Convert old-style suffix rules to pattern rules. It is important to
1433 do this before installing the built-in pattern rules below, so that
1434 makefile-specified suffix rules take precedence over built-in pattern
1435 rules. */
1437 convert_to_pattern ();
1439 /* Install the default implicit pattern rules.
1440 This used to be done before reading the makefiles.
1441 But in that case, built-in pattern rules were in the chain
1442 before user-defined ones, so they matched first. */
1444 install_default_implicit_rules ();
1446 /* Compute implicit rule limits. */
1448 count_implicit_rule_limits ();
1450 /* Construct the listings of directories in VPATH lists. */
1452 build_vpath_lists ();
1454 /* Mark files given with -o flags as very old (00:00:01.00 Jan 1, 1970)
1455 and as having been updated already, and files given with -W flags as
1456 brand new (time-stamp as far as possible into the future). */
1458 if (old_files != 0)
1459 for (p = old_files->list; *p != 0; ++p)
1461 f = enter_command_line_file (*p);
1462 f->last_mtime = f->mtime_before_update = (FILE_TIMESTAMP) 1;
1463 f->updated = 1;
1464 f->update_status = 0;
1465 f->command_state = cs_finished;
1468 if (new_files != 0)
1470 for (p = new_files->list; *p != 0; ++p)
1472 f = enter_command_line_file (*p);
1473 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1477 /* Initialize the remote job module. */
1478 remote_setup ();
1480 if (read_makefiles != 0)
1482 /* Update any makefiles if necessary. */
1484 FILE_TIMESTAMP *makefile_mtimes = 0;
1485 unsigned int mm_idx = 0;
1486 char **nargv = argv;
1487 int nargc = argc;
1488 int orig_db_level = db_level;
1490 if (! ISDB (DB_MAKEFILES))
1491 db_level = DB_NONE;
1493 DB (DB_BASIC, (_("Updating makefiles....\n")));
1495 /* Remove any makefiles we don't want to try to update.
1496 Also record the current modtimes so we can compare them later. */
1498 register struct dep *d, *last;
1499 last = 0;
1500 d = read_makefiles;
1501 while (d != 0)
1503 register struct file *f = d->file;
1504 if (f->double_colon)
1505 for (f = f->double_colon; f != NULL; f = f->prev)
1507 if (f->deps == 0 && f->cmds != 0)
1509 /* This makefile is a :: target with commands, but
1510 no dependencies. So, it will always be remade.
1511 This might well cause an infinite loop, so don't
1512 try to remake it. (This will only happen if
1513 your makefiles are written exceptionally
1514 stupidly; but if you work for Athena, that's how
1515 you write your makefiles.) */
1517 DB (DB_EXTRA,
1518 (_("Makefile `%s' might loop; not remaking it.\n"),
1519 f->name));
1521 if (last == 0)
1522 read_makefiles = d->next;
1523 else
1524 last->next = d->next;
1526 /* Free the storage. */
1527 free ((char *) d);
1529 d = last == 0 ? read_makefiles : last->next;
1531 break;
1534 if (f == NULL || !f->double_colon)
1536 makefile_mtimes = (FILE_TIMESTAMP *)
1537 xrealloc ((char *) makefile_mtimes,
1538 (mm_idx + 1) * sizeof (FILE_TIMESTAMP));
1539 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1540 last = d;
1541 d = d->next;
1546 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1547 define_makeflags (1, 1);
1549 switch (update_goal_chain (read_makefiles, 1))
1551 case 1:
1552 default:
1553 #define BOGUS_UPDATE_STATUS 0
1554 assert (BOGUS_UPDATE_STATUS);
1555 break;
1557 case -1:
1558 /* Did nothing. */
1559 break;
1561 case 2:
1562 /* Failed to update. Figure out if we care. */
1564 /* Nonzero if any makefile was successfully remade. */
1565 int any_remade = 0;
1566 /* Nonzero if any makefile we care about failed
1567 in updating or could not be found at all. */
1568 int any_failed = 0;
1569 register unsigned int i;
1570 struct dep *d;
1572 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1574 /* Reset the considered flag; we may need to look at the file
1575 again to print an error. */
1576 d->file->considered = 0;
1578 if (d->file->updated)
1580 /* This makefile was updated. */
1581 if (d->file->update_status == 0)
1583 /* It was successfully updated. */
1584 any_remade |= (file_mtime_no_search (d->file)
1585 != makefile_mtimes[i]);
1587 else if (! (d->changed & RM_DONTCARE))
1589 FILE_TIMESTAMP mtime;
1590 /* The update failed and this makefile was not
1591 from the MAKEFILES variable, so we care. */
1592 error (NILF, _("Failed to remake makefile `%s'."),
1593 d->file->name);
1594 mtime = file_mtime_no_search (d->file);
1595 any_remade |= (mtime != (FILE_TIMESTAMP) -1
1596 && mtime != makefile_mtimes[i]);
1599 else
1600 /* This makefile was not found at all. */
1601 if (! (d->changed & RM_DONTCARE))
1603 /* This is a makefile we care about. See how much. */
1604 if (d->changed & RM_INCLUDED)
1605 /* An included makefile. We don't need
1606 to die, but we do want to complain. */
1607 error (NILF,
1608 _("Included makefile `%s' was not found."),
1609 dep_name (d));
1610 else
1612 /* A normal makefile. We must die later. */
1613 error (NILF, _("Makefile `%s' was not found"),
1614 dep_name (d));
1615 any_failed = 1;
1619 /* Reset this to empty so we get the right error message below. */
1620 read_makefiles = 0;
1622 if (any_remade)
1623 goto re_exec;
1624 if (any_failed)
1625 die (2);
1626 break;
1629 case 0:
1630 re_exec:
1631 /* Updated successfully. Re-exec ourselves. */
1633 remove_intermediates (0);
1635 if (print_data_base_flag)
1636 print_data_base ();
1638 log_working_directory (0);
1640 if (makefiles != 0)
1642 /* These names might have changed. */
1643 register unsigned int i, j = 0;
1644 for (i = 1; i < argc; ++i)
1645 if (strneq (argv[i], "-f", 2)) /* XXX */
1647 char *p = &argv[i][2];
1648 if (*p == '\0')
1649 argv[++i] = makefiles->list[j];
1650 else
1651 argv[i] = concat ("-f", makefiles->list[j], "");
1652 ++j;
1656 /* Add -o option for the stdin temporary file, if necessary. */
1657 if (stdin_nm)
1659 nargv = (char **) xmalloc ((nargc + 2) * sizeof (char *));
1660 bcopy ((char *) argv, (char *) nargv, argc * sizeof (char *));
1661 nargv[nargc++] = concat ("-o", stdin_nm, "");
1662 nargv[nargc] = 0;
1665 if (directories != 0 && directories->idx > 0)
1667 char bad;
1668 if (directory_before_chdir != 0)
1670 if (chdir (directory_before_chdir) < 0)
1672 perror_with_name ("chdir", "");
1673 bad = 1;
1675 else
1676 bad = 0;
1678 else
1679 bad = 1;
1680 if (bad)
1681 fatal (NILF, _("Couldn't change back to original directory."));
1684 #ifndef _AMIGA
1685 for (p = environ; *p != 0; ++p)
1686 if (strneq (*p, "MAKELEVEL=", 10))
1688 /* The SGI compiler apparently can't understand
1689 the concept of storing the result of a function
1690 in something other than a local variable. */
1691 char *sgi_loses;
1692 sgi_loses = (char *) alloca (40);
1693 *p = sgi_loses;
1694 sprintf (*p, "MAKELEVEL=%u", makelevel);
1695 break;
1697 #else /* AMIGA */
1699 char buffer[256];
1700 int len;
1702 len = GetVar ("MAKELEVEL", buffer, sizeof (buffer), GVF_GLOBAL_ONLY);
1704 if (len != -1)
1706 sprintf (buffer, "%u", makelevel);
1707 SetVar ("MAKELEVEL", buffer, -1, GVF_GLOBAL_ONLY);
1710 #endif
1712 if (ISDB (DB_BASIC))
1714 char **p;
1715 fputs (_("Re-executing:"), stdout);
1716 for (p = nargv; *p != 0; ++p)
1717 printf (" %s", *p);
1718 putchar ('\n');
1721 fflush (stdout);
1722 fflush (stderr);
1724 /* Close the dup'd jobserver pipe if we opened one. */
1725 if (job_rfd >= 0)
1726 close (job_rfd);
1728 #ifndef _AMIGA
1729 exec_command (nargv, environ);
1730 #else
1731 exec_command (nargv);
1732 exit (0);
1733 #endif
1734 /* NOTREACHED */
1737 db_level = orig_db_level;
1740 /* Set up `MAKEFLAGS' again for the normal targets. */
1741 define_makeflags (1, 0);
1743 /* If there is a temp file from reading a makefile from stdin, get rid of
1744 it now. */
1745 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
1746 perror_with_name (_("unlink (temporary file): "), stdin_nm);
1749 int status;
1751 /* If there were no command-line goals, use the default. */
1752 if (goals == 0)
1754 if (default_goal_file != 0)
1756 goals = (struct dep *) xmalloc (sizeof (struct dep));
1757 goals->next = 0;
1758 goals->name = 0;
1759 goals->file = default_goal_file;
1762 else
1763 lastgoal->next = 0;
1765 if (!goals)
1767 if (read_makefiles == 0)
1768 fatal (NILF, _("No targets specified and no makefile found"));
1770 fatal (NILF, _("No targets"));
1773 /* Update the goals. */
1775 DB (DB_BASIC, (_("Updating goal targets....\n")));
1777 switch (update_goal_chain (goals, 0))
1779 case -1:
1780 /* Nothing happened. */
1781 case 0:
1782 /* Updated successfully. */
1783 status = EXIT_SUCCESS;
1784 break;
1785 case 2:
1786 /* Updating failed. POSIX.2 specifies exit status >1 for this;
1787 but in VMS, there is only success and failure. */
1788 status = EXIT_FAILURE ? 2 : EXIT_FAILURE;
1789 break;
1790 case 1:
1791 /* We are under -q and would run some commands. */
1792 status = EXIT_FAILURE;
1793 break;
1794 default:
1795 abort ();
1798 /* If we detected some clock skew, generate one last warning */
1799 if (clock_skew_detected)
1800 error (NILF,
1801 _("warning: Clock skew detected. Your build may be incomplete."));
1803 /* Exit. */
1804 die (status);
1807 return 0;
1810 /* Parsing of arguments, decoding of switches. */
1812 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
1813 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
1814 (sizeof (long_option_aliases) /
1815 sizeof (long_option_aliases[0]))];
1817 /* Fill in the string and vector for getopt. */
1818 static void
1819 init_switches ()
1821 register char *p;
1822 register int c;
1823 register unsigned int i;
1825 if (options[0] != '\0')
1826 /* Already done. */
1827 return;
1829 p = options;
1831 /* Return switch and non-switch args in order, regardless of
1832 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
1833 *p++ = '-';
1835 for (i = 0; switches[i].c != '\0'; ++i)
1837 long_options[i].name = (switches[i].long_name == 0 ? "" :
1838 switches[i].long_name);
1839 long_options[i].flag = 0;
1840 long_options[i].val = switches[i].c;
1841 if (short_option (switches[i].c))
1842 *p++ = switches[i].c;
1843 switch (switches[i].type)
1845 case flag:
1846 case flag_off:
1847 case ignore:
1848 long_options[i].has_arg = no_argument;
1849 break;
1851 case string:
1852 case positive_int:
1853 case floating:
1854 if (short_option (switches[i].c))
1855 *p++ = ':';
1856 if (switches[i].noarg_value != 0)
1858 if (short_option (switches[i].c))
1859 *p++ = ':';
1860 long_options[i].has_arg = optional_argument;
1862 else
1863 long_options[i].has_arg = required_argument;
1864 break;
1867 *p = '\0';
1868 for (c = 0; c < (sizeof (long_option_aliases) /
1869 sizeof (long_option_aliases[0]));
1870 ++c)
1871 long_options[i++] = long_option_aliases[c];
1872 long_options[i].name = 0;
1875 static void
1876 handle_non_switch_argument (arg, env)
1877 char *arg;
1878 int env;
1880 /* Non-option argument. It might be a variable definition. */
1881 struct variable *v;
1882 if (arg[0] == '-' && arg[1] == '\0')
1883 /* Ignore plain `-' for compatibility. */
1884 return;
1885 v = try_variable_definition (0, arg, o_command, 0);
1886 if (v != 0)
1888 /* It is indeed a variable definition. Record a pointer to
1889 the variable for later use in define_makeflags. */
1890 struct command_variable *cv
1891 = (struct command_variable *) xmalloc (sizeof (*cv));
1892 cv->variable = v;
1893 cv->next = command_variables;
1894 command_variables = cv;
1896 else if (! env)
1898 /* Not an option or variable definition; it must be a goal
1899 target! Enter it as a file and add it to the dep chain of
1900 goals. */
1901 struct file *f = enter_command_line_file (arg);
1902 f->cmd_target = 1;
1904 if (goals == 0)
1906 goals = (struct dep *) xmalloc (sizeof (struct dep));
1907 lastgoal = goals;
1909 else
1911 lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
1912 lastgoal = lastgoal->next;
1914 lastgoal->name = 0;
1915 lastgoal->file = f;
1918 /* Add this target name to the MAKECMDGOALS variable. */
1919 struct variable *v;
1920 char *value;
1922 v = lookup_variable ("MAKECMDGOALS", 12);
1923 if (v == 0)
1924 value = f->name;
1925 else
1927 /* Paste the old and new values together */
1928 unsigned int oldlen, newlen;
1930 oldlen = strlen (v->value);
1931 newlen = strlen (f->name);
1932 value = (char *) alloca (oldlen + 1 + newlen + 1);
1933 bcopy (v->value, value, oldlen);
1934 value[oldlen] = ' ';
1935 bcopy (f->name, &value[oldlen + 1], newlen + 1);
1937 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
1942 /* Print a nice usage method. */
1944 static void
1945 print_usage (bad)
1946 int bad;
1948 register const struct command_switch *cs;
1949 FILE *usageto;
1951 if (print_version_flag)
1952 print_version ();
1954 usageto = bad ? stderr : stdout;
1956 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
1958 fputs (_("Options:\n"), usageto);
1959 for (cs = switches; cs->c != '\0'; ++cs)
1961 char buf[1024], shortarg[50], longarg[50], *p;
1963 if (!cs->description || cs->description[0] == '-')
1964 continue;
1966 switch (long_options[cs - switches].has_arg)
1968 case no_argument:
1969 shortarg[0] = longarg[0] = '\0';
1970 break;
1971 case required_argument:
1972 sprintf (longarg, "=%s", cs->argdesc);
1973 sprintf (shortarg, " %s", cs->argdesc);
1974 break;
1975 case optional_argument:
1976 sprintf (longarg, "[=%s]", cs->argdesc);
1977 sprintf (shortarg, " [%s]", cs->argdesc);
1978 break;
1981 p = buf;
1983 if (short_option (cs->c))
1985 sprintf (buf, " -%c%s", cs->c, shortarg);
1986 p += strlen (p);
1988 if (cs->long_name != 0)
1990 unsigned int i;
1991 sprintf (p, "%s--%s%s",
1992 !short_option (cs->c) ? " " : ", ",
1993 cs->long_name, longarg);
1994 p += strlen (p);
1995 for (i = 0; i < (sizeof (long_option_aliases) /
1996 sizeof (long_option_aliases[0]));
1997 ++i)
1998 if (long_option_aliases[i].val == cs->c)
2000 sprintf (p, ", --%s%s",
2001 long_option_aliases[i].name, longarg);
2002 p += strlen (p);
2006 const struct command_switch *ncs = cs;
2007 while ((++ncs)->c != '\0')
2008 if (ncs->description
2009 && ncs->description[0] == '-'
2010 && ncs->description[1] == cs->c)
2012 /* This is another switch that does the same
2013 one as the one we are processing. We want
2014 to list them all together on one line. */
2015 sprintf (p, ", -%c%s", ncs->c, shortarg);
2016 p += strlen (p);
2017 if (ncs->long_name != 0)
2019 sprintf (p, ", --%s%s", ncs->long_name, longarg);
2020 p += strlen (p);
2025 if (p - buf > DESCRIPTION_COLUMN - 2)
2026 /* The list of option names is too long to fit on the same
2027 line with the description, leaving at least two spaces.
2028 Print it on its own line instead. */
2030 fprintf (usageto, "%s\n", buf);
2031 buf[0] = '\0';
2034 fprintf (usageto, "%*s%s.\n",
2035 - DESCRIPTION_COLUMN,
2036 buf, cs->description);
2039 fprintf (usageto, _("\nReport bugs to <bug-make@gnu.org>.\n"));
2042 /* Decode switches from ARGC and ARGV.
2043 They came from the environment if ENV is nonzero. */
2045 static void
2046 decode_switches (argc, argv, env)
2047 int argc;
2048 char **argv;
2049 int env;
2051 int bad = 0;
2052 register const struct command_switch *cs;
2053 register struct stringlist *sl;
2054 register int c;
2056 /* getopt does most of the parsing for us.
2057 First, get its vectors set up. */
2059 init_switches ();
2061 /* Let getopt produce error messages for the command line,
2062 but not for options from the environment. */
2063 opterr = !env;
2064 /* Reset getopt's state. */
2065 optind = 0;
2067 while (optind < argc)
2069 /* Parse the next argument. */
2070 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2071 if (c == EOF)
2072 /* End of arguments, or "--" marker seen. */
2073 break;
2074 else if (c == 1)
2075 /* An argument not starting with a dash. */
2076 handle_non_switch_argument (optarg, env);
2077 else if (c == '?')
2078 /* Bad option. We will print a usage message and die later.
2079 But continue to parse the other options so the user can
2080 see all he did wrong. */
2081 bad = 1;
2082 else
2083 for (cs = switches; cs->c != '\0'; ++cs)
2084 if (cs->c == c)
2086 /* Whether or not we will actually do anything with
2087 this switch. We test this individually inside the
2088 switch below rather than just once outside it, so that
2089 options which are to be ignored still consume args. */
2090 int doit = !env || cs->env;
2092 switch (cs->type)
2094 default:
2095 abort ();
2097 case ignore:
2098 break;
2100 case flag:
2101 case flag_off:
2102 if (doit)
2103 *(int *) cs->value_ptr = cs->type == flag;
2104 break;
2106 case string:
2107 if (!doit)
2108 break;
2110 if (optarg == 0)
2111 optarg = cs->noarg_value;
2113 sl = *(struct stringlist **) cs->value_ptr;
2114 if (sl == 0)
2116 sl = (struct stringlist *)
2117 xmalloc (sizeof (struct stringlist));
2118 sl->max = 5;
2119 sl->idx = 0;
2120 sl->list = (char **) xmalloc (5 * sizeof (char *));
2121 *(struct stringlist **) cs->value_ptr = sl;
2123 else if (sl->idx == sl->max - 1)
2125 sl->max += 5;
2126 sl->list = (char **)
2127 xrealloc ((char *) sl->list,
2128 sl->max * sizeof (char *));
2130 sl->list[sl->idx++] = optarg;
2131 sl->list[sl->idx] = 0;
2132 break;
2134 case positive_int:
2135 if (optarg == 0 && argc > optind
2136 && ISDIGIT (argv[optind][0]))
2137 optarg = argv[optind++];
2139 if (!doit)
2140 break;
2142 if (optarg != 0)
2144 int i = atoi (optarg);
2145 if (i < 1)
2147 if (doit)
2148 error (NILF, _("the `-%c' option requires a positive integral argument"),
2149 cs->c);
2150 bad = 1;
2152 else
2153 *(unsigned int *) cs->value_ptr = i;
2155 else
2156 *(unsigned int *) cs->value_ptr
2157 = *(unsigned int *) cs->noarg_value;
2158 break;
2160 #ifndef NO_FLOAT
2161 case floating:
2162 if (optarg == 0 && optind < argc
2163 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2164 optarg = argv[optind++];
2166 if (doit)
2167 *(double *) cs->value_ptr
2168 = (optarg != 0 ? atof (optarg)
2169 : *(double *) cs->noarg_value);
2171 break;
2172 #endif
2175 /* We've found the switch. Stop looking. */
2176 break;
2180 /* There are no more options according to getting getopt, but there may
2181 be some arguments left. Since we have asked for non-option arguments
2182 to be returned in order, this only happens when there is a "--"
2183 argument to prevent later arguments from being options. */
2184 while (optind < argc)
2185 handle_non_switch_argument (argv[optind++], env);
2188 if (!env && (bad || print_usage_flag))
2190 print_usage (bad);
2191 die (bad ? 2 : 0);
2195 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2196 We do this by chopping the value into a vector of words, prepending a
2197 dash to the first word if it lacks one, and passing the vector to
2198 decode_switches. */
2200 static void
2201 decode_env_switches (envar, len)
2202 char *envar;
2203 unsigned int len;
2205 char *varref = (char *) alloca (2 + len + 2);
2206 char *value, *p;
2207 int argc;
2208 char **argv;
2210 /* Get the variable's value. */
2211 varref[0] = '$';
2212 varref[1] = '(';
2213 bcopy (envar, &varref[2], len);
2214 varref[2 + len] = ')';
2215 varref[2 + len + 1] = '\0';
2216 value = variable_expand (varref);
2218 /* Skip whitespace, and check for an empty value. */
2219 value = next_token (value);
2220 len = strlen (value);
2221 if (len == 0)
2222 return;
2224 /* Allocate a vector that is definitely big enough. */
2225 argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
2227 /* Allocate a buffer to copy the value into while we split it into words
2228 and unquote it. We must use permanent storage for this because
2229 decode_switches may store pointers into the passed argument words. */
2230 p = (char *) xmalloc (2 * len);
2232 /* getopt will look at the arguments starting at ARGV[1].
2233 Prepend a spacer word. */
2234 argv[0] = 0;
2235 argc = 1;
2236 argv[argc] = p;
2237 while (*value != '\0')
2239 if (*value == '\\' && value[1] != '\0')
2240 ++value; /* Skip the backslash. */
2241 else if (isblank (*value))
2243 /* End of the word. */
2244 *p++ = '\0';
2245 argv[++argc] = p;
2247 ++value;
2248 while (isblank (*value));
2249 continue;
2251 *p++ = *value++;
2253 *p = '\0';
2254 argv[++argc] = 0;
2256 if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
2257 /* The first word doesn't start with a dash and isn't a variable
2258 definition. Add a dash and pass it along to decode_switches. We
2259 need permanent storage for this in case decode_switches saves
2260 pointers into the value. */
2261 argv[1] = concat ("-", argv[1], "");
2263 /* Parse those words. */
2264 decode_switches (argc, argv, 1);
2267 /* Quote the string IN so that it will be interpreted as a single word with
2268 no magic by decode_env_switches; also double dollar signs to avoid
2269 variable expansion in make itself. Write the result into OUT, returning
2270 the address of the next character to be written.
2271 Allocating space for OUT twice the length of IN is always sufficient. */
2273 static char *
2274 quote_for_env (out, in)
2275 char *out, *in;
2277 while (*in != '\0')
2279 if (*in == '$')
2280 *out++ = '$';
2281 else if (isblank (*in) || *in == '\\')
2282 *out++ = '\\';
2283 *out++ = *in++;
2286 return out;
2289 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2290 command switches. Include options with args if ALL is nonzero.
2291 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2293 static void
2294 define_makeflags (all, makefile)
2295 int all, makefile;
2297 static const char ref[] = "$(MAKEOVERRIDES)";
2298 static const char posixref[] = "$(-*-command-variables-*-)";
2299 register const struct command_switch *cs;
2300 char *flagstring;
2301 register char *p;
2302 unsigned int words;
2303 struct variable *v;
2305 /* We will construct a linked list of `struct flag's describing
2306 all the flags which need to go in MAKEFLAGS. Then, once we
2307 know how many there are and their lengths, we can put them all
2308 together in a string. */
2310 struct flag
2312 struct flag *next;
2313 const struct command_switch *cs;
2314 char *arg;
2316 struct flag *flags = 0;
2317 unsigned int flagslen = 0;
2318 #define ADD_FLAG(ARG, LEN) \
2319 do { \
2320 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2321 new->cs = cs; \
2322 new->arg = (ARG); \
2323 new->next = flags; \
2324 flags = new; \
2325 if (new->arg == 0) \
2326 ++flagslen; /* Just a single flag letter. */ \
2327 else \
2328 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2329 if (!short_option (cs->c)) \
2330 /* This switch has no single-letter version, so we use the long. */ \
2331 flagslen += 2 + strlen (cs->long_name); \
2332 } while (0)
2334 for (cs = switches; cs->c != '\0'; ++cs)
2335 if (cs->toenv && (!makefile || !cs->no_makefile))
2336 switch (cs->type)
2338 default:
2339 abort ();
2341 case ignore:
2342 break;
2344 case flag:
2345 case flag_off:
2346 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2347 && (cs->default_value == 0
2348 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2349 ADD_FLAG (0, 0);
2350 break;
2352 case positive_int:
2353 if (all)
2355 if ((cs->default_value != 0
2356 && (*(unsigned int *) cs->value_ptr
2357 == *(unsigned int *) cs->default_value)))
2358 break;
2359 else if (cs->noarg_value != 0
2360 && (*(unsigned int *) cs->value_ptr ==
2361 *(unsigned int *) cs->noarg_value))
2362 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2363 else if (cs->c == 'j')
2364 /* Special case for `-j'. */
2365 ADD_FLAG ("1", 1);
2366 else
2368 char *buf = (char *) alloca (30);
2369 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2370 ADD_FLAG (buf, strlen (buf));
2373 break;
2375 #ifndef NO_FLOAT
2376 case floating:
2377 if (all)
2379 if (cs->default_value != 0
2380 && (*(double *) cs->value_ptr
2381 == *(double *) cs->default_value))
2382 break;
2383 else if (cs->noarg_value != 0
2384 && (*(double *) cs->value_ptr
2385 == *(double *) cs->noarg_value))
2386 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2387 else
2389 char *buf = (char *) alloca (100);
2390 sprintf (buf, "%g", *(double *) cs->value_ptr);
2391 ADD_FLAG (buf, strlen (buf));
2394 break;
2395 #endif
2397 case string:
2398 if (all)
2400 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2401 if (sl != 0)
2403 /* Add the elements in reverse order, because
2404 all the flags get reversed below; and the order
2405 matters for some switches (like -I). */
2406 register unsigned int i = sl->idx;
2407 while (i-- > 0)
2408 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2411 break;
2414 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2416 #undef ADD_FLAG
2418 /* Construct the value in FLAGSTRING.
2419 We allocate enough space for a preceding dash and trailing null. */
2420 flagstring = (char *) alloca (1 + flagslen + 1);
2421 bzero (flagstring, 1 + flagslen + 1);
2422 p = flagstring;
2423 words = 1;
2424 *p++ = '-';
2425 while (flags != 0)
2427 /* Add the flag letter or name to the string. */
2428 if (short_option (flags->cs->c))
2429 *p++ = flags->cs->c;
2430 else
2432 if (*p != '-')
2434 *p++ = ' ';
2435 *p++ = '-';
2437 *p++ = '-';
2438 strcpy (p, flags->cs->long_name);
2439 p += strlen (p);
2441 if (flags->arg != 0)
2443 /* A flag that takes an optional argument which in this case is
2444 omitted is specified by ARG being "". We must distinguish
2445 because a following flag appended without an intervening " -"
2446 is considered the arg for the first. */
2447 if (flags->arg[0] != '\0')
2449 /* Add its argument too. */
2450 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2451 p = quote_for_env (p, flags->arg);
2453 ++words;
2454 /* Write a following space and dash, for the next flag. */
2455 *p++ = ' ';
2456 *p++ = '-';
2458 else if (!short_option (flags->cs->c))
2460 ++words;
2461 /* Long options must each go in their own word,
2462 so we write the following space and dash. */
2463 *p++ = ' ';
2464 *p++ = '-';
2466 flags = flags->next;
2469 /* Define MFLAGS before appending variable definitions. */
2471 if (p == &flagstring[1])
2472 /* No flags. */
2473 flagstring[0] = '\0';
2474 else if (p[-1] == '-')
2476 /* Kill the final space and dash. */
2477 p -= 2;
2478 *p = '\0';
2480 else
2481 /* Terminate the string. */
2482 *p = '\0';
2484 /* Since MFLAGS is not parsed for flags, there is no reason to
2485 override any makefile redefinition. */
2486 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2488 if (all && command_variables != 0)
2490 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2491 command-line variable definitions. */
2493 if (p == &flagstring[1])
2494 /* No flags written, so elide the leading dash already written. */
2495 p = flagstring;
2496 else
2498 /* Separate the variables from the switches with a "--" arg. */
2499 if (p[-1] != '-')
2501 /* We did not already write a trailing " -". */
2502 *p++ = ' ';
2503 *p++ = '-';
2505 /* There is a trailing " -"; fill it out to " -- ". */
2506 *p++ = '-';
2507 *p++ = ' ';
2510 /* Copy in the string. */
2511 if (posix_pedantic)
2513 bcopy (posixref, p, sizeof posixref - 1);
2514 p += sizeof posixref - 1;
2516 else
2518 bcopy (ref, p, sizeof ref - 1);
2519 p += sizeof ref - 1;
2522 else if (p == &flagstring[1])
2524 words = 0;
2525 --p;
2527 else if (p[-1] == '-')
2528 /* Kill the final space and dash. */
2529 p -= 2;
2530 /* Terminate the string. */
2531 *p = '\0';
2533 v = define_variable ("MAKEFLAGS", 9,
2534 /* If there are switches, omit the leading dash
2535 unless it is a single long option with two
2536 leading dashes. */
2537 &flagstring[(flagstring[0] == '-'
2538 && flagstring[1] != '-')
2539 ? 1 : 0],
2540 /* This used to use o_env, but that lost when a
2541 makefile defined MAKEFLAGS. Makefiles set
2542 MAKEFLAGS to add switches, but we still want
2543 to redefine its value with the full set of
2544 switches. Of course, an override or command
2545 definition will still take precedence. */
2546 o_file, 1);
2547 if (! all)
2548 /* The first time we are called, set MAKEFLAGS to always be exported.
2549 We should not do this again on the second call, because that is
2550 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2551 v->export = v_export;
2554 /* Print version information. */
2556 static void
2557 print_version ()
2559 extern char *make_host;
2560 static int printed_version = 0;
2562 char *precede = print_data_base_flag ? "# " : "";
2564 if (printed_version)
2565 /* Do it only once. */
2566 return;
2568 printf ("%sGNU Make version %s", precede, version_string);
2569 if (remote_description != 0 && *remote_description != '\0')
2570 printf ("-%s", remote_description);
2572 printf (_(", by Richard Stallman and Roland McGrath.\n\
2573 %sBuilt for %s\n\
2574 %sCopyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99\n\
2575 %s\tFree Software Foundation, Inc.\n\
2576 %sThis is free software; see the source for copying conditions.\n\
2577 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2578 %sPARTICULAR PURPOSE.\n\n\
2579 %sReport bugs to <bug-make@gnu.org>.\n\n"),
2580 precede, make_host,
2581 precede, precede, precede, precede, precede, precede);
2583 printed_version = 1;
2585 /* Flush stdout so the user doesn't have to wait to see the
2586 version information while things are thought about. */
2587 fflush (stdout);
2590 /* Print a bunch of information about this and that. */
2592 static void
2593 print_data_base ()
2595 time_t when;
2597 when = time ((time_t *) 0);
2598 printf (_("\n# Make data base, printed on %s"), ctime (&when));
2600 print_variable_data_base ();
2601 print_dir_data_base ();
2602 print_rule_data_base ();
2603 print_file_data_base ();
2604 print_vpath_data_base ();
2606 when = time ((time_t *) 0);
2607 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
2610 /* Exit with STATUS, cleaning up as necessary. */
2612 void
2613 die (status)
2614 int status;
2616 static char dying = 0;
2618 if (!dying)
2620 int err;
2622 dying = 1;
2624 if (print_version_flag)
2625 print_version ();
2627 /* Wait for children to die. */
2628 for (err = status != 0; job_slots_used > 0; err = 0)
2629 reap_children (1, err);
2631 /* Let the remote job module clean up its state. */
2632 remote_cleanup ();
2634 /* Remove the intermediate files. */
2635 remove_intermediates (0);
2637 if (print_data_base_flag)
2638 print_data_base ();
2640 /* Try to move back to the original directory. This is essential on
2641 MS-DOS (where there is really only one process), and on Unix it
2642 puts core files in the original directory instead of the -C
2643 directory. Must wait until after remove_intermediates(), or unlinks
2644 of relative pathnames fail. */
2645 if (directory_before_chdir != 0)
2646 chdir (directory_before_chdir);
2648 log_working_directory (0);
2651 exit (status);
2654 /* Write a message indicating that we've just entered or
2655 left (according to ENTERING) the current directory. */
2657 void
2658 log_working_directory (entering)
2659 int entering;
2661 static int entered = 0;
2662 char *msg = entering ? _("Entering") : _("Leaving");
2664 /* Print nothing without the flag. Don't print the entering message
2665 again if we already have. Don't print the leaving message if we
2666 haven't printed the entering message. */
2667 if (! print_directory_flag || entering == entered)
2668 return;
2670 entered = entering;
2672 if (print_data_base_flag)
2673 fputs ("# ", stdout);
2675 if (makelevel == 0)
2676 printf ("%s: %s ", program, msg);
2677 else
2678 printf ("%s[%u]: %s ", program, makelevel, msg);
2680 if (starting_directory == 0)
2681 puts (_("an unknown directory"));
2682 else
2683 printf (_("directory `%s'\n"), starting_directory);