* Large file support for AIX, HP-UX, and IRIX.
[make.git] / main.c
blob6253ca818f59fa8189af6571d3be17f75228e554
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 "getopt.h"
28 #include <assert.h>
29 #ifdef _AMIGA
30 # include <dos/dos.h>
31 # include <proto/dos.h>
32 #endif
33 #ifdef WINDOWS32
34 #include <windows.h>
35 #include "pathstuff.h"
36 #endif
37 #if defined(MAKE_JOBSERVER) && defined(HAVE_FCNTL_H)
38 # include <fcntl.h>
39 #endif
41 #ifdef _AMIGA
42 int __stack = 20000; /* Make sure we have 20K of stack space */
43 #endif
45 extern void init_dir PARAMS ((void));
46 extern void remote_setup PARAMS ((void));
47 extern void remote_cleanup PARAMS ((void));
48 extern RETSIGTYPE fatal_error_signal PARAMS ((int sig));
50 extern void print_variable_data_base PARAMS ((void));
51 extern void print_dir_data_base PARAMS ((void));
52 extern void print_rule_data_base PARAMS ((void));
53 extern void print_file_data_base PARAMS ((void));
54 extern void print_vpath_data_base PARAMS ((void));
56 #if defined HAVE_WAITPID || defined HAVE_WAIT3
57 # define HAVE_WAIT_NOHANG
58 #endif
60 #ifndef HAVE_UNISTD_H
61 extern int chdir ();
62 #endif
63 #ifndef STDC_HEADERS
64 # ifndef sun /* Sun has an incorrect decl in a header. */
65 extern void exit PARAMS ((int)) __attribute__ ((noreturn));
66 # endif
67 extern double atof ();
68 #endif
69 extern char *mktemp ();
71 static void print_data_base PARAMS ((void));
72 static void print_version PARAMS ((void));
73 static void decode_switches PARAMS ((int argc, char **argv, int env));
74 static void decode_env_switches PARAMS ((char *envar, unsigned int len));
75 static void define_makeflags PARAMS ((int all, int makefile));
76 static char *quote_as_word PARAMS ((char *out, char *in, int double_dollars));
78 /* The structure that describes an accepted command switch. */
80 struct command_switch
82 int c; /* The switch character. */
84 enum /* Type of the value. */
86 flag, /* Turn int flag on. */
87 flag_off, /* Turn int flag off. */
88 string, /* One string per switch. */
89 positive_int, /* A positive integer. */
90 floating, /* A floating-point number (double). */
91 ignore /* Ignored. */
92 } type;
94 char *value_ptr; /* Pointer to the value-holding variable. */
96 unsigned int env:1; /* Can come from MAKEFLAGS. */
97 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
98 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
100 char *noarg_value; /* Pointer to value used if no argument is given. */
101 char *default_value;/* Pointer to default value. */
103 char *long_name; /* Long option name. */
104 char *argdesc; /* Descriptive word for argument. */
105 char *description; /* Description for usage message. */
106 /* 0 means internal; don't display help. */
109 /* True if C is a switch value that corresponds to a short option. */
111 #define short_option(c) ((c) <= CHAR_MAX)
113 /* The structure used to hold the list of strings given
114 in command switches of a type that takes string arguments. */
116 struct stringlist
118 char **list; /* Nil-terminated list of strings. */
119 unsigned int idx; /* Index into above. */
120 unsigned int max; /* Number of pointers allocated. */
124 /* The recognized command switches. */
126 /* Nonzero means do not print commands to be executed (-s). */
128 int silent_flag;
130 /* Nonzero means just touch the files
131 that would appear to need remaking (-t) */
133 int touch_flag;
135 /* Nonzero means just print what commands would need to be executed,
136 don't actually execute them (-n). */
138 int just_print_flag;
140 /* Print debugging trace info (-d). */
142 int debug_flag = 0;
144 #ifdef WINDOWS32
145 /* Suspend make in main for a short time to allow debugger to attach */
147 int suspend_flag = 0;
148 #endif
150 /* Environment variables override makefile definitions. */
152 int env_overrides = 0;
154 /* Nonzero means ignore status codes returned by commands
155 executed to remake files. Just treat them all as successful (-i). */
157 int ignore_errors_flag = 0;
159 /* Nonzero means don't remake anything, just print the data base
160 that results from reading the makefile (-p). */
162 int print_data_base_flag = 0;
164 /* Nonzero means don't remake anything; just return a nonzero status
165 if the specified targets are not up to date (-q). */
167 int question_flag = 0;
169 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
171 int no_builtin_rules_flag = 0;
172 int no_builtin_variables_flag = 0;
174 /* Nonzero means keep going even if remaking some file fails (-k). */
176 int keep_going_flag;
177 int default_keep_going_flag = 0;
179 /* Nonzero means print directory before starting and when done (-w). */
181 int print_directory_flag = 0;
183 /* Nonzero means ignore print_directory_flag and never print the directory.
184 This is necessary because print_directory_flag is set implicitly. */
186 int inhibit_print_directory_flag = 0;
188 /* Nonzero means print version information. */
190 int print_version_flag = 0;
192 /* List of makefiles given with -f switches. */
194 static struct stringlist *makefiles = 0;
196 /* Number of job slots (commands that can be run at once). */
198 unsigned int job_slots = 1;
199 unsigned int default_job_slots = 1;
201 /* Value of job_slots that means no limit. */
203 static unsigned int inf_jobs = 0;
205 /* File descriptors for the jobs pipe. */
207 static struct stringlist *jobserver_fds = 0;
209 int job_fds[2] = { -1, -1 };
210 int job_rfd = -1;
212 /* Maximum load average at which multiple jobs will be run.
213 Negative values mean unlimited, while zero means limit to
214 zero load (which could be useful to start infinite jobs remotely
215 but one at a time locally). */
216 #ifndef NO_FLOAT
217 double max_load_average = -1.0;
218 double default_load_average = -1.0;
219 #else
220 int max_load_average = -1;
221 int default_load_average = -1;
222 #endif
224 /* List of directories given with -C switches. */
226 static struct stringlist *directories = 0;
228 /* List of include directories given with -I switches. */
230 static struct stringlist *include_directories = 0;
232 /* List of files given with -o switches. */
234 static struct stringlist *old_files = 0;
236 /* List of files given with -W switches. */
238 static struct stringlist *new_files = 0;
240 /* If nonzero, we should just print usage and exit. */
242 static int print_usage_flag = 0;
244 /* If nonzero, we should print a warning message
245 for each reference to an undefined variable. */
247 int warn_undefined_variables_flag;
249 /* The table of command switches. */
251 static const struct command_switch switches[] =
253 { 'b', ignore, 0, 0, 0, 0, 0, 0,
254 0, 0,
255 _("Ignored for compatibility") },
256 { 'C', string, (char *) &directories, 0, 0, 0, 0, 0,
257 "directory", _("DIRECTORY"),
258 _("Change to DIRECTORY before doing anything") },
259 { 'd', flag, (char *) &debug_flag, 1, 1, 0, 0, 0,
260 "debug", 0,
261 _("Print lots of debugging information") },
262 #ifdef WINDOWS32
263 { 'D', flag, (char *) &suspend_flag, 1, 1, 0, 0, 0,
264 "suspend-for-debug", 0,
265 _("Suspend process to allow a debugger to attach") },
266 #endif
267 { 'e', flag, (char *) &env_overrides, 1, 1, 0, 0, 0,
268 "environment-overrides", 0,
269 _("Environment variables override makefiles") },
270 { 'f', string, (char *) &makefiles, 0, 0, 0, 0, 0,
271 "file", _("FILE"),
272 _("Read FILE as a makefile") },
273 { 'h', flag, (char *) &print_usage_flag, 0, 0, 0, 0, 0,
274 "help", 0,
275 _("Print this message and exit") },
276 { 'i', flag, (char *) &ignore_errors_flag, 1, 1, 0, 0, 0,
277 "ignore-errors", 0,
278 _("Ignore errors from commands") },
279 { 'I', string, (char *) &include_directories, 1, 1, 0, 0, 0,
280 "include-dir", _("DIRECTORY"),
281 _("Search DIRECTORY for included makefiles") },
282 { 'j',
283 positive_int, (char *) &job_slots, 1, 1, 0,
284 (char *) &inf_jobs, (char *) &default_job_slots,
285 "jobs", "N",
286 _("Allow N jobs at once; infinite jobs with no arg") },
287 { CHAR_MAX+1, string, (char *) &jobserver_fds, 1, 1, 0, 0, 0,
288 "jobserver-fds", 0,
289 0 },
290 { 'k', flag, (char *) &keep_going_flag, 1, 1, 0,
291 0, (char *) &default_keep_going_flag,
292 "keep-going", 0,
293 _("Keep going when some targets can't be made") },
294 #ifndef NO_FLOAT
295 { 'l', floating, (char *) &max_load_average, 1, 1, 0,
296 (char *) &default_load_average, (char *) &default_load_average,
297 "load-average", "N",
298 _("Don't start multiple jobs unless load is below N") },
299 #else
300 { 'l', positive_int, (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 #endif
305 { 'm', ignore, 0, 0, 0, 0, 0, 0,
306 0, 0,
307 "-b" },
308 { 'n', flag, (char *) &just_print_flag, 1, 1, 1, 0, 0,
309 "just-print", 0,
310 _("Don't actually run any commands; just print them") },
311 { 'o', string, (char *) &old_files, 0, 0, 0, 0, 0,
312 "old-file", _("FILE"),
313 _("Consider FILE to be very old and don't remake it") },
314 { 'p', flag, (char *) &print_data_base_flag, 1, 1, 0, 0, 0,
315 "print-data-base", 0,
316 _("Print make's internal database") },
317 { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0,
318 "question", 0,
319 _("Run no commands; exit status says if up to date") },
320 { 'r', flag, (char *) &no_builtin_rules_flag, 1, 1, 0, 0, 0,
321 "no-builtin-rules", 0,
322 _("Disable the built-in implicit rules") },
323 { 'R', flag, (char *) &no_builtin_variables_flag, 1, 1, 0, 0, 0,
324 "no-builtin-variables", 0,
325 _("Disable the built-in variable settings") },
326 { 's', flag, (char *) &silent_flag, 1, 1, 0, 0, 0,
327 "silent", 0,
328 _("Don't echo commands") },
329 { 'S', flag_off, (char *) &keep_going_flag, 1, 1, 0,
330 0, (char *) &default_keep_going_flag,
331 "no-keep-going", 0,
332 _("Turns off -k") },
333 { 't', flag, (char *) &touch_flag, 1, 1, 1, 0, 0,
334 "touch", 0,
335 _("Touch targets instead of remaking them") },
336 { 'v', flag, (char *) &print_version_flag, 1, 1, 0, 0, 0,
337 "version", 0,
338 _("Print the version number of make and exit") },
339 { 'w', flag, (char *) &print_directory_flag, 1, 1, 0, 0, 0,
340 "print-directory", 0,
341 _("Print the current directory") },
342 { CHAR_MAX+2, flag, (char *) &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
343 "no-print-directory", 0,
344 _("Turn off -w, even if it was turned on implicitly") },
345 { 'W', string, (char *) &new_files, 0, 0, 0, 0, 0,
346 "what-if", _("FILE"),
347 _("Consider FILE to be infinitely new") },
348 { CHAR_MAX+3, flag, (char *) &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
349 "warn-undefined-variables", 0,
350 _("Warn when an undefined variable is referenced") },
351 { '\0', }
354 /* Secondary long names for options. */
356 static struct option long_option_aliases[] =
358 { "quiet", no_argument, 0, 's' },
359 { "stop", no_argument, 0, 'S' },
360 { "new-file", required_argument, 0, 'W' },
361 { "assume-new", required_argument, 0, 'W' },
362 { "assume-old", required_argument, 0, 'o' },
363 { "max-load", optional_argument, 0, 'l' },
364 { "dry-run", no_argument, 0, 'n' },
365 { "recon", no_argument, 0, 'n' },
366 { "makefile", required_argument, 0, 'f' },
369 /* The usage message prints the descriptions of options starting in
370 this column. Make sure it leaves enough room for the longest
371 description to fit in less than 80 characters. */
373 #define DESCRIPTION_COLUMN 30
375 /* List of goal targets. */
377 static struct dep *goals, *lastgoal;
379 /* List of variables which were defined on the command line
380 (or, equivalently, in MAKEFLAGS). */
382 struct command_variable
384 struct command_variable *next;
385 struct variable *variable;
387 static struct command_variable *command_variables;
389 /* The name we were invoked with. */
391 char *program;
393 /* Our current directory before processing any -C options. */
395 char *directory_before_chdir;
397 /* Our current directory after processing all -C options. */
399 char *starting_directory;
401 /* Value of the MAKELEVEL variable at startup (or 0). */
403 unsigned int makelevel;
405 /* First file defined in the makefile whose name does not
406 start with `.'. This is the default to remake if the
407 command line does not specify. */
409 struct file *default_goal_file;
411 /* Pointer to structure for the file .DEFAULT
412 whose commands are used for any file that has none of its own.
413 This is zero if the makefiles do not define .DEFAULT. */
415 struct file *default_file;
417 /* Nonzero if we have seen the magic `.POSIX' target.
418 This turns on pedantic compliance with POSIX.2. */
420 int posix_pedantic;
422 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
423 print one warning about it during the run, and (b) we can print a final
424 warning at the end of the run. */
426 int clock_skew_detected;
428 /* Mask of signals that are being caught with fatal_error_signal. */
430 #ifdef POSIX
431 sigset_t fatal_signal_set;
432 #else
433 #ifdef HAVE_SIGSETMASK
434 int fatal_signal_mask;
435 #endif
436 #endif
438 static struct file *
439 enter_command_line_file (name)
440 char *name;
442 if (name[0] == '\0')
443 fatal (NILF, _("empty string invalid as file name"));
445 if (name[0] == '~')
447 char *expanded = tilde_expand (name);
448 if (expanded != 0)
449 name = expanded; /* Memory leak; I don't care. */
452 /* This is also done in parse_file_seq, so this is redundant
453 for names read from makefiles. It is here for names passed
454 on the command line. */
455 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
457 name += 2;
458 while (*name == '/')
459 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
460 ++name;
463 if (*name == '\0')
465 /* It was all slashes! Move back to the dot and truncate
466 it after the first slash, so it becomes just "./". */
468 --name;
469 while (name[0] != '.');
470 name[2] = '\0';
473 return enter_file (xstrdup (name));
476 /* Toggle -d on receipt of SIGUSR1. */
478 static RETSIGTYPE
479 debug_signal_handler (sig)
480 int sig;
482 debug_flag = ! debug_flag;
485 #ifdef WINDOWS32
487 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
488 * exception and print it to stderr instead.
490 * If debug_flag not set, just print a simple message and exit.
491 * If debug_flag set, print a more verbose message.
492 * If compiled for DEBUG, let exception pass through to GUI so that
493 * debuggers can attach.
495 LONG WINAPI
496 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
498 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
499 LPSTR cmdline = GetCommandLine();
500 LPSTR prg = strtok(cmdline, " ");
501 CHAR errmsg[1024];
502 #ifdef USE_EVENT_LOG
503 HANDLE hEventSource;
504 LPTSTR lpszStrings[1];
505 #endif
507 if (!debug_flag)
509 sprintf(errmsg, _("%s: Interrupt/Exception caught "), prg);
510 sprintf(&errmsg[strlen(errmsg)],
511 "(code = 0x%x, addr = 0x%x)\r\n",
512 exrec->ExceptionCode, exrec->ExceptionAddress);
513 fprintf(stderr, errmsg);
514 exit(255);
517 sprintf(errmsg,
518 _("\r\nUnhandled exception filter called from program %s\r\n"), prg);
519 sprintf(&errmsg[strlen(errmsg)], "ExceptionCode = %x\r\n",
520 exrec->ExceptionCode);
521 sprintf(&errmsg[strlen(errmsg)], "ExceptionFlags = %x\r\n",
522 exrec->ExceptionFlags);
523 sprintf(&errmsg[strlen(errmsg)], "ExceptionAddress = %x\r\n",
524 exrec->ExceptionAddress);
526 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
527 && exrec->NumberParameters >= 2)
528 sprintf(&errmsg[strlen(errmsg)],
529 _("Access violation: %s operation at address %x\r\n"),
530 exrec->ExceptionInformation[0] ? _("write"): _("read"),
531 exrec->ExceptionInformation[1]);
533 /* turn this on if we want to put stuff in the event log too */
534 #ifdef USE_EVENT_LOG
535 hEventSource = RegisterEventSource(NULL, "GNU Make");
536 lpszStrings[0] = errmsg;
538 if (hEventSource != NULL)
540 ReportEvent(hEventSource, /* handle of event source */
541 EVENTLOG_ERROR_TYPE, /* event type */
542 0, /* event category */
543 0, /* event ID */
544 NULL, /* current user's SID */
545 1, /* strings in lpszStrings */
546 0, /* no bytes of raw data */
547 lpszStrings, /* array of error strings */
548 NULL); /* no raw data */
550 (VOID) DeregisterEventSource(hEventSource);
552 #endif
554 /* Write the error to stderr too */
555 fprintf(stderr, errmsg);
557 #ifdef DEBUG
558 return EXCEPTION_CONTINUE_SEARCH;
559 #else
560 exit(255);
561 return (255); /* not reached */
562 #endif
566 * On WIN32 systems we don't have the luxury of a /bin directory that
567 * is mapped globally to every drive mounted to the system. Since make could
568 * be invoked from any drive, and we don't want to propogate /bin/sh
569 * to every single drive. Allow ourselves a chance to search for
570 * a value for default shell here (if the default path does not exist).
574 find_and_set_default_shell(char *token)
576 int sh_found = 0;
577 char* search_token;
578 PATH_VAR(sh_path);
579 extern char *default_shell;
581 if (!token)
582 search_token = default_shell;
583 else
584 search_token = token;
586 if (!no_default_sh_exe &&
587 (token == NULL || !strcmp(search_token, default_shell))) {
588 /* no new information, path already set or known */
589 sh_found = 1;
590 } else if (file_exists_p(search_token)) {
591 /* search token path was found */
592 sprintf(sh_path, "%s", search_token);
593 default_shell = xstrdup(w32ify(sh_path,0));
594 if (debug_flag)
595 printf(_("find_and_set_shell setting default_shell = %s\n"), default_shell);
596 sh_found = 1;
597 } else {
598 char *p;
599 struct variable *v = lookup_variable ("Path", 4);
602 * Search Path for shell
604 if (v && v->value) {
605 char *ep;
607 p = v->value;
608 ep = strchr(p, PATH_SEPARATOR_CHAR);
610 while (ep && *ep) {
611 *ep = '\0';
613 if (dir_file_exists_p(p, search_token)) {
614 sprintf(sh_path, "%s/%s", p, search_token);
615 default_shell = xstrdup(w32ify(sh_path,0));
616 sh_found = 1;
617 *ep = PATH_SEPARATOR_CHAR;
619 /* terminate loop */
620 p += strlen(p);
621 } else {
622 *ep = PATH_SEPARATOR_CHAR;
623 p = ++ep;
626 ep = strchr(p, PATH_SEPARATOR_CHAR);
629 /* be sure to check last element of Path */
630 if (p && *p && dir_file_exists_p(p, search_token)) {
631 sprintf(sh_path, "%s/%s", p, search_token);
632 default_shell = xstrdup(w32ify(sh_path,0));
633 sh_found = 1;
636 if (debug_flag && sh_found)
637 printf(_("find_and_set_shell path search set default_shell = %s\n"), default_shell);
641 /* naive test */
642 if (!unixy_shell && sh_found &&
643 (strstr(default_shell, "sh") || strstr(default_shell, "SH"))) {
644 unixy_shell = 1;
645 batch_mode_shell = 0;
648 #ifdef BATCH_MODE_ONLY_SHELL
649 batch_mode_shell = 1;
650 #endif
652 return (sh_found);
654 #endif /* WINDOWS32 */
656 #ifdef __MSDOS__
658 static void
659 msdos_return_to_initial_directory ()
661 if (directory_before_chdir)
662 chdir (directory_before_chdir);
664 #endif
666 #ifndef _AMIGA
668 main (argc, argv, envp)
669 int argc;
670 char **argv;
671 char **envp;
672 #else
673 int main (int argc, char ** argv)
674 #endif
676 static char *stdin_nm = 0;
677 register struct file *f;
678 register unsigned int i;
679 char **p;
680 struct dep *read_makefiles;
681 PATH_VAR (current_directory);
682 #ifdef WINDOWS32
683 char *unix_path = NULL;
684 char *windows32_path = NULL;
686 SetUnhandledExceptionFilter(handle_runtime_exceptions);
688 /* start off assuming we have no shell */
689 unixy_shell = 0;
690 no_default_sh_exe = 1;
691 #endif
693 default_goal_file = 0;
694 reading_file = 0;
696 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
697 /* Request the most powerful version of `system', to
698 make up for the dumb default shell. */
699 __system_flags = (__system_redirect
700 | __system_use_shell
701 | __system_allow_multiple_cmds
702 | __system_allow_long_cmds
703 | __system_handle_null_commands
704 | __system_emulate_chdir);
706 #endif
708 #if !defined (HAVE_STRSIGNAL) && !defined (HAVE_SYS_SIGLIST)
709 signame_init ();
710 #endif
712 #ifdef POSIX
713 sigemptyset (&fatal_signal_set);
714 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
715 #else
716 #ifdef HAVE_SIGSETMASK
717 fatal_signal_mask = 0;
718 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
719 #else
720 #define ADD_SIG(sig)
721 #endif
722 #endif
724 #define FATAL_SIG(sig) \
725 if (signal ((sig), fatal_error_signal) == SIG_IGN) \
726 (void) signal ((sig), SIG_IGN); \
727 else \
728 ADD_SIG (sig);
730 #ifdef SIGHUP
731 FATAL_SIG (SIGHUP);
732 #endif
733 #ifdef SIGQUIT
734 FATAL_SIG (SIGQUIT);
735 #endif
736 FATAL_SIG (SIGINT);
737 FATAL_SIG (SIGTERM);
739 #ifdef SIGDANGER
740 FATAL_SIG (SIGDANGER);
741 #endif
742 #ifdef SIGXCPU
743 FATAL_SIG (SIGXCPU);
744 #endif
745 #ifdef SIGXFSZ
746 FATAL_SIG (SIGXFSZ);
747 #endif
749 #undef FATAL_SIG
751 /* Do not ignore the child-death signal. This must be done before
752 any children could possibly be created; otherwise, the wait
753 functions won't work on systems with the SVR4 ECHILD brain
754 damage, if our invoker is ignoring this signal. */
756 #ifdef HAVE_WAIT_NOHANG
757 # if defined SIGCHLD
758 (void) signal (SIGCHLD, SIG_DFL);
759 # endif
760 # if defined SIGCLD && SIGCLD != SIGCHLD
761 (void) signal (SIGCLD, SIG_DFL);
762 # endif
763 #endif
765 /* Make sure stdout is line-buffered. */
767 #ifdef HAVE_SETLINEBUF
768 setlinebuf (stdout);
769 #else
770 #ifndef SETVBUF_REVERSED
771 setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
772 #else /* setvbuf not reversed. */
773 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
774 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
775 #endif /* setvbuf reversed. */
776 #endif /* setlinebuf missing. */
778 /* Figure out where this program lives. */
780 if (argv[0] == 0)
781 argv[0] = "";
782 if (argv[0][0] == '\0')
783 program = "make";
784 else
786 #ifdef VMS
787 program = rindex (argv[0], ']');
788 #else
789 program = rindex (argv[0], '/');
790 #endif
791 #ifdef __MSDOS__
792 if (program == 0)
793 program = rindex (argv[0], '\\');
794 else
796 /* Some weird environments might pass us argv[0] with
797 both kinds of slashes; we must find the rightmost. */
798 char *p = rindex (argv[0], '\\');
799 if (p && p > program)
800 program = p;
802 if (program == 0 && argv[0][1] == ':')
803 program = argv[0] + 1;
804 #endif
805 if (program == 0)
806 program = argv[0];
807 else
808 ++program;
811 /* Set up to access user data (files). */
812 user_access ();
814 /* Figure out where we are. */
816 #ifdef WINDOWS32
817 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
818 #else
819 if (getcwd (current_directory, GET_PATH_MAX) == 0)
820 #endif
822 #ifdef HAVE_GETCWD
823 perror_with_name ("getcwd: ", "");
824 #else
825 error (NILF, "getwd: %s", current_directory);
826 #endif
827 current_directory[0] = '\0';
828 directory_before_chdir = 0;
830 else
831 directory_before_chdir = xstrdup (current_directory);
832 #ifdef __MSDOS__
833 /* Make sure we will return to the initial directory, come what may. */
834 atexit (msdos_return_to_initial_directory);
835 #endif
837 /* Read in variables from the environment. It is important that this be
838 done before $(MAKE) is figured out so its definitions will not be
839 from the environment. */
841 #ifndef _AMIGA
842 for (i = 0; envp[i] != 0; ++i)
844 int do_not_define;
845 register char *ep = envp[i];
847 /* by default, everything gets defined and exported */
848 do_not_define = 0;
850 while (*ep != '=')
851 ++ep;
852 #ifdef WINDOWS32
853 if (!unix_path && strneq(envp[i], "PATH=", 5))
854 unix_path = ep+1;
855 else if (!windows32_path && !strnicmp(envp[i], "Path=", 5)) {
856 do_not_define = 1; /* it gets defined after loop exits */
857 windows32_path = ep+1;
859 #endif
860 /* The result of pointer arithmetic is cast to unsigned int for
861 machines where ptrdiff_t is a different size that doesn't widen
862 the same. */
863 if (!do_not_define)
864 define_variable (envp[i], (unsigned int) (ep - envp[i]),
865 ep + 1, o_env, 1)
866 /* Force exportation of every variable culled from the environment.
867 We used to rely on target_environment's v_default code to do this.
868 But that does not work for the case where an environment variable
869 is redefined in a makefile with `override'; it should then still
870 be exported, because it was originally in the environment. */
871 ->export = v_export;
873 #ifdef WINDOWS32
875 * Make sure that this particular spelling of 'Path' is available
877 if (windows32_path)
878 define_variable("Path", 4, windows32_path, o_env, 1)->export = v_export;
879 else if (unix_path)
880 define_variable("Path", 4, unix_path, o_env, 1)->export = v_export;
881 else
882 define_variable("Path", 4, "", o_env, 1)->export = v_export;
885 * PATH defaults to Path iff PATH not found and Path is found.
887 if (!unix_path && windows32_path)
888 define_variable("PATH", 4, windows32_path, o_env, 1)->export = v_export;
889 #endif
890 #else /* For Amiga, read the ENV: device, ignoring all dirs */
892 BPTR env, file, old;
893 char buffer[1024];
894 int len;
895 __aligned struct FileInfoBlock fib;
897 env = Lock ("ENV:", ACCESS_READ);
898 if (env)
900 old = CurrentDir (DupLock(env));
901 Examine (env, &fib);
903 while (ExNext (env, &fib))
905 if (fib.fib_DirEntryType < 0) /* File */
907 /* Define an empty variable. It will be filled in
908 variable_lookup(). Makes startup quite a bit
909 faster. */
910 define_variable (fib.fib_FileName,
911 strlen (fib.fib_FileName),
912 "", o_env, 1)->export = v_export;
915 UnLock (env);
916 UnLock(CurrentDir(old));
919 #endif
921 /* Decode the switches. */
923 decode_env_switches ("MAKEFLAGS", 9);
924 #if 0
925 /* People write things like:
926 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
927 and we set the -p, -i and -e switches. Doesn't seem quite right. */
928 decode_env_switches ("MFLAGS", 6);
929 #endif
930 decode_switches (argc, argv, 0);
931 #ifdef WINDOWS32
932 if (suspend_flag) {
933 fprintf(stderr, "%s (pid = %d)\n", argv[0], GetCurrentProcessId());
934 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
935 Sleep(30 * 1000);
936 fprintf(stderr, _("done sleep(30). Continuing.\n"));
938 #endif
940 /* Print version information. */
942 if (print_version_flag || print_data_base_flag || debug_flag)
943 print_version ();
945 /* `make --version' is supposed to just print the version and exit. */
946 if (print_version_flag)
947 die (0);
949 #ifndef VMS
950 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
951 (If it is a relative pathname with a slash, prepend our directory name
952 so the result will run the same program regardless of the current dir.
953 If it is a name with no slash, we can only hope that PATH did not
954 find it in the current directory.) */
955 #ifdef WINDOWS32
957 * Convert from backslashes to forward slashes for
958 * programs like sh which don't like them. Shouldn't
959 * matter if the path is one way or the other for
960 * CreateProcess().
962 if (strpbrk(argv[0], "/:\\") ||
963 strstr(argv[0], "..") ||
964 strneq(argv[0], "//", 2))
965 argv[0] = xstrdup(w32ify(argv[0],1));
966 #else /* WINDOWS32 */
967 #ifdef __MSDOS__
968 if (strchr (argv[0], '\\'))
970 char *p;
972 argv[0] = xstrdup (argv[0]);
973 for (p = argv[0]; *p; p++)
974 if (*p == '\\')
975 *p = '/';
977 #else /* !__MSDOS__ */
978 if (current_directory[0] != '\0'
979 && argv[0] != 0 && argv[0][0] != '/' && index (argv[0], '/') != 0)
980 argv[0] = concat (current_directory, "/", argv[0]);
981 #endif /* !__MSDOS__ */
982 #endif /* WINDOWS32 */
983 #endif
985 /* The extra indirection through $(MAKE_COMMAND) is done
986 for hysterical raisins. */
987 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
988 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
990 if (command_variables != 0)
992 struct command_variable *cv;
993 struct variable *v;
994 unsigned int len = 0;
995 char *value, *p;
997 /* Figure out how much space will be taken up by the command-line
998 variable definitions. */
999 for (cv = command_variables; cv != 0; cv = cv->next)
1001 v = cv->variable;
1002 len += 2 * strlen (v->name);
1003 if (! v->recursive)
1004 ++len;
1005 ++len;
1006 len += 3 * strlen (v->value);
1009 /* Now allocate a buffer big enough and fill it. */
1010 p = value = (char *) alloca (len);
1011 for (cv = command_variables; cv != 0; cv = cv->next)
1013 v = cv->variable;
1014 p = quote_as_word (p, v->name, 0);
1015 if (! v->recursive)
1016 *p++ = ':';
1017 *p++ = '=';
1018 p = quote_as_word (p, v->value, 0);
1019 *p++ = ' ';
1021 p[-1] = '\0'; /* Kill the final space and terminate. */
1023 /* Define an unchangeable variable with a name that no POSIX.2
1024 makefile could validly use for its own variable. */
1025 (void) define_variable ("-*-command-variables-*-", 23,
1026 value, o_automatic, 0);
1028 /* Define the variable; this will not override any user definition.
1029 Normally a reference to this variable is written into the value of
1030 MAKEFLAGS, allowing the user to override this value to affect the
1031 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1032 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1033 a reference to this hidden variable is written instead. */
1034 (void) define_variable ("MAKEOVERRIDES", 13,
1035 "${-*-command-variables-*-}", o_env, 1);
1038 /* If there were -C flags, move ourselves about. */
1039 if (directories != 0)
1040 for (i = 0; directories->list[i] != 0; ++i)
1042 char *dir = directories->list[i];
1043 if (dir[0] == '~')
1045 char *expanded = tilde_expand (dir);
1046 if (expanded != 0)
1047 dir = expanded;
1049 if (chdir (dir) < 0)
1050 pfatal_with_name (dir);
1051 if (dir != directories->list[i])
1052 free (dir);
1055 #ifdef WINDOWS32
1057 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1058 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1060 * The functions in dir.c can incorrectly cache information for "."
1061 * before we have changed directory and this can cause file
1062 * lookups to fail because the current directory (.) was pointing
1063 * at the wrong place when it was first evaluated.
1065 no_default_sh_exe = !find_and_set_default_shell(NULL);
1067 #endif /* WINDOWS32 */
1068 /* Figure out the level of recursion. */
1070 struct variable *v = lookup_variable ("MAKELEVEL", 9);
1071 if (v != 0 && *v->value != '\0' && *v->value != '-')
1072 makelevel = (unsigned int) atoi (v->value);
1073 else
1074 makelevel = 0;
1077 /* Except under -s, always do -w in sub-makes and under -C. */
1078 if (!silent_flag && (directories != 0 || makelevel > 0))
1079 print_directory_flag = 1;
1081 /* Let the user disable that with --no-print-directory. */
1082 if (inhibit_print_directory_flag)
1083 print_directory_flag = 0;
1085 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1086 if (no_builtin_variables_flag)
1087 no_builtin_rules_flag = 1;
1089 /* Construct the list of include directories to search. */
1091 construct_include_path (include_directories == 0 ? (char **) 0
1092 : include_directories->list);
1094 /* Figure out where we are now, after chdir'ing. */
1095 if (directories == 0)
1096 /* We didn't move, so we're still in the same place. */
1097 starting_directory = current_directory;
1098 else
1100 #ifdef WINDOWS32
1101 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1102 #else
1103 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1104 #endif
1106 #ifdef HAVE_GETCWD
1107 perror_with_name ("getcwd: ", "");
1108 #else
1109 error (NILF, "getwd: %s", current_directory);
1110 #endif
1111 starting_directory = 0;
1113 else
1114 starting_directory = current_directory;
1117 (void) define_variable ("CURDIR", 6, current_directory, o_default, 0);
1119 /* Read any stdin makefiles into temporary files. */
1121 if (makefiles != 0)
1123 register unsigned int i;
1124 for (i = 0; i < makefiles->idx; ++i)
1125 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1127 /* This makefile is standard input. Since we may re-exec
1128 and thus re-read the makefiles, we read standard input
1129 into a temporary file and read from that. */
1130 FILE *outfile;
1132 /* Make a unique filename. */
1133 #ifdef HAVE_MKTEMP
1135 #ifdef VMS
1136 static char name[] = "sys$scratch:GmXXXXXX";
1137 #else
1138 static char name[] = "/tmp/GmXXXXXX";
1139 #endif
1140 (void) mktemp (name);
1141 #else
1142 static char name[L_tmpnam];
1143 (void) tmpnam (name);
1144 #endif
1146 if (stdin_nm)
1147 fatal (NILF, _("Makefile from standard input specified twice."));
1149 outfile = fopen (name, "w");
1150 if (outfile == 0)
1151 pfatal_with_name (_("fopen (temporary file)"));
1152 while (!feof (stdin))
1154 char buf[2048];
1155 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1156 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1157 pfatal_with_name (_("fwrite (temporary file)"));
1159 (void) fclose (outfile);
1161 /* Replace the name that read_all_makefiles will
1162 see with the name of the temporary file. */
1164 char *temp;
1165 /* SGI compiler requires alloca's result be assigned simply. */
1166 temp = (char *) alloca (sizeof (name));
1167 bcopy (name, temp, sizeof (name));
1168 makefiles->list[i] = temp;
1171 /* Make sure the temporary file will not be remade. */
1172 stdin_nm = savestring (name, sizeof (name) -1);
1173 f = enter_file (stdin_nm);
1174 f->updated = 1;
1175 f->update_status = 0;
1176 f->command_state = cs_finished;
1177 /* Can't be intermediate, or it'll be removed too early for
1178 make re-exec. */
1179 f->intermediate = 0;
1180 f->dontcare = 0;
1184 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1185 /* Set up to handle children dying. This must be done before
1186 reading in the makefiles so that `shell' function calls will work.
1188 If we don't have a hanging wait we have to fall back to old, broken
1189 functionality here and rely on the signal handler and counting
1190 children.
1192 If we're using the jobs pipe we need a signal handler so that
1193 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1194 jobserver pipe in job.c if we're waiting for a token.
1196 If none of these are true, we don't need a signal handler at all. */
1198 extern RETSIGTYPE child_handler PARAMS ((int sig));
1200 # if defined HAVE_SIGACTION
1201 struct sigaction sa;
1203 bzero ((char *)&sa, sizeof (struct sigaction));
1204 sa.sa_handler = child_handler;
1205 # if defined SA_INTERRUPT
1206 /* This is supposed to be the default, but what the heck... */
1207 sa.sa_flags = SA_INTERRUPT;
1208 # endif
1209 # define HANDLESIG(s) sigaction (s, &sa, NULL)
1210 # else
1211 # define HANDLESIG(s) signal (s, child_handler)
1212 # endif
1214 /* OK, now actually install the handlers. */
1215 # if defined SIGCHLD
1216 (void) HANDLESIG (SIGCHLD);
1217 # endif
1218 # if defined SIGCLD && SIGCLD != SIGCHLD
1219 (void) HANDLESIG (SIGCLD);
1220 # endif
1222 #endif
1224 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1225 #ifdef SIGUSR1
1226 (void) signal (SIGUSR1, debug_signal_handler);
1227 #endif
1229 /* Define the initial list of suffixes for old-style rules. */
1231 set_default_suffixes ();
1233 /* Define the file rules for the built-in suffix rules. These will later
1234 be converted into pattern rules. We used to do this in
1235 install_default_implicit_rules, but since that happens after reading
1236 makefiles, it results in the built-in pattern rules taking precedence
1237 over makefile-specified suffix rules, which is wrong. */
1239 install_default_suffix_rules ();
1241 /* Define some internal and special variables. */
1243 define_automatic_variables ();
1245 /* Set up the MAKEFLAGS and MFLAGS variables
1246 so makefiles can look at them. */
1248 define_makeflags (0, 0);
1250 /* Define the default variables. */
1251 define_default_variables ();
1253 /* Read all the makefiles. */
1255 default_file = enter_file (".DEFAULT");
1257 read_makefiles
1258 = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list);
1260 #ifdef WINDOWS32
1261 /* look one last time after reading all Makefiles */
1262 if (no_default_sh_exe)
1263 no_default_sh_exe = !find_and_set_default_shell(NULL);
1265 if (no_default_sh_exe && job_slots != 1) {
1266 error (NILF, _("Do not specify -j or --jobs if sh.exe is not available."));
1267 error (NILF, _("Resetting make for single job mode."));
1268 job_slots = 1;
1270 #endif /* WINDOWS32 */
1272 #ifdef __MSDOS__
1273 /* We need to know what kind of shell we will be using. */
1275 extern int _is_unixy_shell (const char *_path);
1276 struct variable *shv = lookup_variable ("SHELL", 5);
1277 extern int unixy_shell;
1278 extern char *default_shell;
1280 if (shv && *shv->value)
1282 char *shell_path = recursively_expand(shv);
1284 if (shell_path && _is_unixy_shell (shell_path))
1285 unixy_shell = 1;
1286 else
1287 unixy_shell = 0;
1288 if (shell_path)
1289 default_shell = shell_path;
1292 #endif /* __MSDOS__ */
1294 /* Decode switches again, in case the variables were set by the makefile. */
1295 decode_env_switches ("MAKEFLAGS", 9);
1296 #if 0
1297 decode_env_switches ("MFLAGS", 6);
1298 #endif
1300 #ifdef __MSDOS__
1301 if (job_slots != 1)
1303 error (NILF, _("Parallel jobs (-j) are not supported on MS-DOS."));
1304 error (NILF, _("Resetting to single job mode."));
1305 job_slots = 1;
1307 #endif
1309 #ifdef MAKE_JOBSERVER
1310 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1312 if (jobserver_fds)
1314 char *cp;
1316 if (jobserver_fds->idx > 1)
1317 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1319 /* The combination of a pipe + !job_slots means we're using the
1320 jobserver. If !job_slots and we don't have a pipe, we can start
1321 infinite jobs. */
1323 if (job_slots != 0)
1324 fatal (NILF, _("internal error: --jobserver-fds unexpected"));
1326 /* Now parse the fds string and make sure it has the proper format. */
1328 cp = jobserver_fds->list[0];
1330 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1331 fatal (NILF,
1332 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1334 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1335 handler. If this fails with EBADF, the parent has closed the pipe
1336 on us because it didn't think we were a submake. If so, print a
1337 warning then default to -j1. */
1339 if ((job_rfd = dup (job_fds[0])) < 0)
1341 if (errno != EBADF)
1342 pfatal_with_name (_("dup jobserver"));
1344 error (NILF,
1345 _("warning: jobserver unavailable (using -j1). Add `+' to parent make rule."));
1346 job_slots = 1;
1347 job_fds[0] = job_fds[1] = -1;
1348 free (jobserver_fds->list);
1349 free (jobserver_fds);
1350 jobserver_fds = 0;
1354 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1355 Set up the pipe and install the fds option for our children. */
1357 else if (job_slots > 1)
1359 char c = '+';
1361 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1362 pfatal_with_name (_("creating jobs pipe"));
1364 /* Every make assumes that it always has one job it can run. For the
1365 submakes it's the token they were given by their parent. For the
1366 top make, we just subtract one from the number the user wants. We
1367 want job_slots to be 0 to indicate we're using the jobserver. */
1369 while (--job_slots)
1370 while (write (job_fds[1], &c, 1) != 1)
1371 if (!EINTR_SET)
1372 pfatal_with_name (_("init jobserver pipe"));
1374 /* Fill in the jobserver_fds struct for our children. */
1376 jobserver_fds = (struct stringlist *)
1377 xmalloc (sizeof (struct stringlist));
1378 jobserver_fds->list = (char **) xmalloc (sizeof (char *));
1379 jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
1381 sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
1382 jobserver_fds->idx = 1;
1383 jobserver_fds->max = 1;
1385 #endif
1387 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1389 define_makeflags (1, 0);
1391 /* Make each `struct dep' point at the `struct file' for the file
1392 depended on. Also do magic for special targets. */
1394 snap_deps ();
1396 /* Convert old-style suffix rules to pattern rules. It is important to
1397 do this before installing the built-in pattern rules below, so that
1398 makefile-specified suffix rules take precedence over built-in pattern
1399 rules. */
1401 convert_to_pattern ();
1403 /* Install the default implicit pattern rules.
1404 This used to be done before reading the makefiles.
1405 But in that case, built-in pattern rules were in the chain
1406 before user-defined ones, so they matched first. */
1408 install_default_implicit_rules ();
1410 /* Compute implicit rule limits. */
1412 count_implicit_rule_limits ();
1414 /* Construct the listings of directories in VPATH lists. */
1416 build_vpath_lists ();
1418 /* Mark files given with -o flags as very old (00:00:01.00 Jan 1, 1970)
1419 and as having been updated already, and files given with -W flags as
1420 brand new (time-stamp as far as possible into the future). */
1422 if (old_files != 0)
1423 for (p = old_files->list; *p != 0; ++p)
1425 f = enter_command_line_file (*p);
1426 f->last_mtime = f->mtime_before_update = (FILE_TIMESTAMP) 1;
1427 f->updated = 1;
1428 f->update_status = 0;
1429 f->command_state = cs_finished;
1432 if (new_files != 0)
1434 for (p = new_files->list; *p != 0; ++p)
1436 f = enter_command_line_file (*p);
1437 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1441 /* Initialize the remote job module. */
1442 remote_setup ();
1444 if (read_makefiles != 0)
1446 /* Update any makefiles if necessary. */
1448 FILE_TIMESTAMP *makefile_mtimes = 0;
1449 unsigned int mm_idx = 0;
1450 char **nargv = argv;
1451 int nargc = argc;
1453 if (debug_flag)
1454 puts (_("Updating makefiles...."));
1456 /* Remove any makefiles we don't want to try to update.
1457 Also record the current modtimes so we can compare them later. */
1459 register struct dep *d, *last;
1460 last = 0;
1461 d = read_makefiles;
1462 while (d != 0)
1464 register struct file *f = d->file;
1465 if (f->double_colon)
1466 for (f = f->double_colon; f != NULL; f = f->prev)
1468 if (f->deps == 0 && f->cmds != 0)
1470 /* This makefile is a :: target with commands, but
1471 no dependencies. So, it will always be remade.
1472 This might well cause an infinite loop, so don't
1473 try to remake it. (This will only happen if
1474 your makefiles are written exceptionally
1475 stupidly; but if you work for Athena, that's how
1476 you write your makefiles.) */
1478 if (debug_flag)
1479 printf (_("Makefile `%s' might loop; not remaking it.\n"),
1480 f->name);
1482 if (last == 0)
1483 read_makefiles = d->next;
1484 else
1485 last->next = d->next;
1487 /* Free the storage. */
1488 free ((char *) d);
1490 d = last == 0 ? read_makefiles : last->next;
1492 break;
1495 if (f == NULL || !f->double_colon)
1497 makefile_mtimes = (FILE_TIMESTAMP *)
1498 xrealloc ((char *) makefile_mtimes,
1499 (mm_idx + 1) * sizeof (FILE_TIMESTAMP));
1500 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1501 last = d;
1502 d = d->next;
1507 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1508 define_makeflags (1, 1);
1510 switch (update_goal_chain (read_makefiles, 1))
1512 case 1:
1513 default:
1514 #define BOGUS_UPDATE_STATUS 0
1515 assert (BOGUS_UPDATE_STATUS);
1516 break;
1518 case -1:
1519 /* Did nothing. */
1520 break;
1522 case 2:
1523 /* Failed to update. Figure out if we care. */
1525 /* Nonzero if any makefile was successfully remade. */
1526 int any_remade = 0;
1527 /* Nonzero if any makefile we care about failed
1528 in updating or could not be found at all. */
1529 int any_failed = 0;
1530 register unsigned int i;
1531 struct dep *d;
1533 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1535 /* Reset the considered flag; we may need to look at the file
1536 again to print an error. */
1537 d->file->considered = 0;
1539 if (d->file->updated)
1541 /* This makefile was updated. */
1542 if (d->file->update_status == 0)
1544 /* It was successfully updated. */
1545 any_remade |= (file_mtime_no_search (d->file)
1546 != makefile_mtimes[i]);
1548 else if (! (d->changed & RM_DONTCARE))
1550 FILE_TIMESTAMP mtime;
1551 /* The update failed and this makefile was not
1552 from the MAKEFILES variable, so we care. */
1553 error (NILF, _("Failed to remake makefile `%s'."),
1554 d->file->name);
1555 mtime = file_mtime_no_search (d->file);
1556 any_remade |= (mtime != (FILE_TIMESTAMP) -1
1557 && mtime != makefile_mtimes[i]);
1560 else
1561 /* This makefile was not found at all. */
1562 if (! (d->changed & RM_DONTCARE))
1564 /* This is a makefile we care about. See how much. */
1565 if (d->changed & RM_INCLUDED)
1566 /* An included makefile. We don't need
1567 to die, but we do want to complain. */
1568 error (NILF,
1569 _("Included makefile `%s' was not found."),
1570 dep_name (d));
1571 else
1573 /* A normal makefile. We must die later. */
1574 error (NILF, _("Makefile `%s' was not found"),
1575 dep_name (d));
1576 any_failed = 1;
1580 /* Reset this to empty so we get the right error message below. */
1581 read_makefiles = 0;
1583 if (any_remade)
1584 goto re_exec;
1585 if (any_failed)
1586 die (2);
1587 break;
1590 case 0:
1591 re_exec:
1592 /* Updated successfully. Re-exec ourselves. */
1594 remove_intermediates (0);
1596 if (print_data_base_flag)
1597 print_data_base ();
1599 log_working_directory (0);
1601 if (makefiles != 0)
1603 /* These names might have changed. */
1604 register unsigned int i, j = 0;
1605 for (i = 1; i < argc; ++i)
1606 if (strneq (argv[i], "-f", 2)) /* XXX */
1608 char *p = &argv[i][2];
1609 if (*p == '\0')
1610 argv[++i] = makefiles->list[j];
1611 else
1612 argv[i] = concat ("-f", makefiles->list[j], "");
1613 ++j;
1617 /* Add -o option for the stdin temporary file, if necessary. */
1618 if (stdin_nm)
1620 nargv = (char **) xmalloc ((nargc + 2) * sizeof (char *));
1621 bcopy ((char *) argv, (char *) nargv, argc * sizeof (char *));
1622 nargv[nargc++] = concat ("-o", stdin_nm, "");
1623 nargv[nargc] = 0;
1626 if (directories != 0 && directories->idx > 0)
1628 char bad;
1629 if (directory_before_chdir != 0)
1631 if (chdir (directory_before_chdir) < 0)
1633 perror_with_name ("chdir", "");
1634 bad = 1;
1636 else
1637 bad = 0;
1639 else
1640 bad = 1;
1641 if (bad)
1642 fatal (NILF, _("Couldn't change back to original directory."));
1645 #ifndef _AMIGA
1646 for (p = environ; *p != 0; ++p)
1647 if (strneq (*p, "MAKELEVEL=", 10))
1649 /* The SGI compiler apparently can't understand
1650 the concept of storing the result of a function
1651 in something other than a local variable. */
1652 char *sgi_loses;
1653 sgi_loses = (char *) alloca (40);
1654 *p = sgi_loses;
1655 sprintf (*p, "MAKELEVEL=%u", makelevel);
1656 break;
1658 #else /* AMIGA */
1660 char buffer[256];
1661 int len;
1663 len = GetVar ("MAKELEVEL", buffer, sizeof (buffer), GVF_GLOBAL_ONLY);
1665 if (len != -1)
1667 sprintf (buffer, "%u", makelevel);
1668 SetVar ("MAKELEVEL", buffer, -1, GVF_GLOBAL_ONLY);
1671 #endif
1673 if (debug_flag)
1675 char **p;
1676 fputs (_("Re-executing:"), stdout);
1677 for (p = nargv; *p != 0; ++p)
1678 printf (" %s", *p);
1679 puts ("");
1682 fflush (stdout);
1683 fflush (stderr);
1685 #ifndef _AMIGA
1686 exec_command (nargv, environ);
1687 #else
1688 exec_command (nargv);
1689 exit (0);
1690 #endif
1691 /* NOTREACHED */
1695 /* Set up `MAKEFLAGS' again for the normal targets. */
1696 define_makeflags (1, 0);
1698 /* If there is a temp file from reading a makefile from stdin, get rid of
1699 it now. */
1700 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
1701 perror_with_name (_("unlink (temporary file): "), stdin_nm);
1704 int status;
1706 /* If there were no command-line goals, use the default. */
1707 if (goals == 0)
1709 if (default_goal_file != 0)
1711 goals = (struct dep *) xmalloc (sizeof (struct dep));
1712 goals->next = 0;
1713 goals->name = 0;
1714 goals->file = default_goal_file;
1717 else
1718 lastgoal->next = 0;
1720 if (!goals)
1722 if (read_makefiles == 0)
1723 fatal (NILF, _("No targets specified and no makefile found"));
1725 fatal (NILF, _("No targets"));
1728 /* Update the goals. */
1730 if (debug_flag)
1731 puts (_("Updating goal targets...."));
1733 switch (update_goal_chain (goals, 0))
1735 case -1:
1736 /* Nothing happened. */
1737 case 0:
1738 /* Updated successfully. */
1739 status = EXIT_SUCCESS;
1740 break;
1741 case 2:
1742 /* Updating failed. POSIX.2 specifies exit status >1 for this;
1743 but in VMS, there is only success and failure. */
1744 status = EXIT_FAILURE ? 2 : EXIT_FAILURE;
1745 break;
1746 case 1:
1747 /* We are under -q and would run some commands. */
1748 status = EXIT_FAILURE;
1749 break;
1750 default:
1751 abort ();
1754 /* If we detected some clock skew, generate one last warning */
1755 if (clock_skew_detected)
1756 error (NILF, _("*** Warning: Clock skew detected. Your build may be incomplete."));
1758 /* Exit. */
1759 die (status);
1762 return 0;
1765 /* Parsing of arguments, decoding of switches. */
1767 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
1768 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
1769 (sizeof (long_option_aliases) /
1770 sizeof (long_option_aliases[0]))];
1772 /* Fill in the string and vector for getopt. */
1773 static void
1774 init_switches ()
1776 register char *p;
1777 register int c;
1778 register unsigned int i;
1780 if (options[0] != '\0')
1781 /* Already done. */
1782 return;
1784 p = options;
1786 /* Return switch and non-switch args in order, regardless of
1787 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
1788 *p++ = '-';
1790 for (i = 0; switches[i].c != '\0'; ++i)
1792 long_options[i].name = (switches[i].long_name == 0 ? "" :
1793 switches[i].long_name);
1794 long_options[i].flag = 0;
1795 long_options[i].val = switches[i].c;
1796 if (short_option (switches[i].c))
1797 *p++ = switches[i].c;
1798 switch (switches[i].type)
1800 case flag:
1801 case flag_off:
1802 case ignore:
1803 long_options[i].has_arg = no_argument;
1804 break;
1806 case string:
1807 case positive_int:
1808 case floating:
1809 if (short_option (switches[i].c))
1810 *p++ = ':';
1811 if (switches[i].noarg_value != 0)
1813 if (short_option (switches[i].c))
1814 *p++ = ':';
1815 long_options[i].has_arg = optional_argument;
1817 else
1818 long_options[i].has_arg = required_argument;
1819 break;
1822 *p = '\0';
1823 for (c = 0; c < (sizeof (long_option_aliases) /
1824 sizeof (long_option_aliases[0]));
1825 ++c)
1826 long_options[i++] = long_option_aliases[c];
1827 long_options[i].name = 0;
1830 static void
1831 handle_non_switch_argument (arg, env)
1832 char *arg;
1833 int env;
1835 /* Non-option argument. It might be a variable definition. */
1836 struct variable *v;
1837 if (arg[0] == '-' && arg[1] == '\0')
1838 /* Ignore plain `-' for compatibility. */
1839 return;
1840 v = try_variable_definition (0, arg, o_command);
1841 if (v != 0)
1843 /* It is indeed a variable definition. Record a pointer to
1844 the variable for later use in define_makeflags. */
1845 struct command_variable *cv
1846 = (struct command_variable *) xmalloc (sizeof (*cv));
1847 cv->variable = v;
1848 cv->next = command_variables;
1849 command_variables = cv;
1851 else if (! env)
1853 /* Not an option or variable definition; it must be a goal
1854 target! Enter it as a file and add it to the dep chain of
1855 goals. */
1856 struct file *f = enter_command_line_file (arg);
1857 f->cmd_target = 1;
1859 if (goals == 0)
1861 goals = (struct dep *) xmalloc (sizeof (struct dep));
1862 lastgoal = goals;
1864 else
1866 lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
1867 lastgoal = lastgoal->next;
1869 lastgoal->name = 0;
1870 lastgoal->file = f;
1873 /* Add this target name to the MAKECMDGOALS variable. */
1874 struct variable *v;
1875 char *value;
1877 v = lookup_variable ("MAKECMDGOALS", 12);
1878 if (v == 0)
1879 value = f->name;
1880 else
1882 /* Paste the old and new values together */
1883 unsigned int oldlen, newlen;
1885 oldlen = strlen (v->value);
1886 newlen = strlen (f->name);
1887 value = (char *) alloca (oldlen + 1 + newlen + 1);
1888 bcopy (v->value, value, oldlen);
1889 value[oldlen] = ' ';
1890 bcopy (f->name, &value[oldlen + 1], newlen + 1);
1892 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
1897 /* Print a nice usage method. */
1899 static void
1900 print_usage (bad)
1901 int bad;
1903 register const struct command_switch *cs;
1904 FILE *usageto;
1906 if (print_version_flag)
1907 print_version ();
1909 usageto = bad ? stderr : stdout;
1911 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
1913 fputs (_("Options:\n"), usageto);
1914 for (cs = switches; cs->c != '\0'; ++cs)
1916 char buf[1024], shortarg[50], longarg[50], *p;
1918 if (!cs->description || cs->description[0] == '-')
1919 continue;
1921 switch (long_options[cs - switches].has_arg)
1923 case no_argument:
1924 shortarg[0] = longarg[0] = '\0';
1925 break;
1926 case required_argument:
1927 sprintf (longarg, "=%s", cs->argdesc);
1928 sprintf (shortarg, " %s", cs->argdesc);
1929 break;
1930 case optional_argument:
1931 sprintf (longarg, "[=%s]", cs->argdesc);
1932 sprintf (shortarg, " [%s]", cs->argdesc);
1933 break;
1936 p = buf;
1938 if (short_option (cs->c))
1940 sprintf (buf, " -%c%s", cs->c, shortarg);
1941 p += strlen (p);
1943 if (cs->long_name != 0)
1945 unsigned int i;
1946 sprintf (p, "%s--%s%s",
1947 !short_option (cs->c) ? " " : ", ",
1948 cs->long_name, longarg);
1949 p += strlen (p);
1950 for (i = 0; i < (sizeof (long_option_aliases) /
1951 sizeof (long_option_aliases[0]));
1952 ++i)
1953 if (long_option_aliases[i].val == cs->c)
1955 sprintf (p, ", --%s%s",
1956 long_option_aliases[i].name, longarg);
1957 p += strlen (p);
1961 const struct command_switch *ncs = cs;
1962 while ((++ncs)->c != '\0')
1963 if (ncs->description
1964 && ncs->description[0] == '-'
1965 && ncs->description[1] == cs->c)
1967 /* This is another switch that does the same
1968 one as the one we are processing. We want
1969 to list them all together on one line. */
1970 sprintf (p, ", -%c%s", ncs->c, shortarg);
1971 p += strlen (p);
1972 if (ncs->long_name != 0)
1974 sprintf (p, ", --%s%s", ncs->long_name, longarg);
1975 p += strlen (p);
1980 if (p - buf > DESCRIPTION_COLUMN - 2)
1981 /* The list of option names is too long to fit on the same
1982 line with the description, leaving at least two spaces.
1983 Print it on its own line instead. */
1985 fprintf (usageto, "%s\n", buf);
1986 buf[0] = '\0';
1989 fprintf (usageto, "%*s%s.\n",
1990 - DESCRIPTION_COLUMN,
1991 buf, cs->description);
1995 /* Decode switches from ARGC and ARGV.
1996 They came from the environment if ENV is nonzero. */
1998 static void
1999 decode_switches (argc, argv, env)
2000 int argc;
2001 char **argv;
2002 int env;
2004 int bad = 0;
2005 register const struct command_switch *cs;
2006 register struct stringlist *sl;
2007 register int c;
2009 /* getopt does most of the parsing for us.
2010 First, get its vectors set up. */
2012 init_switches ();
2014 /* Let getopt produce error messages for the command line,
2015 but not for options from the environment. */
2016 opterr = !env;
2017 /* Reset getopt's state. */
2018 optind = 0;
2020 while (optind < argc)
2022 /* Parse the next argument. */
2023 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2024 if (c == EOF)
2025 /* End of arguments, or "--" marker seen. */
2026 break;
2027 else if (c == 1)
2028 /* An argument not starting with a dash. */
2029 handle_non_switch_argument (optarg, env);
2030 else if (c == '?')
2031 /* Bad option. We will print a usage message and die later.
2032 But continue to parse the other options so the user can
2033 see all he did wrong. */
2034 bad = 1;
2035 else
2036 for (cs = switches; cs->c != '\0'; ++cs)
2037 if (cs->c == c)
2039 /* Whether or not we will actually do anything with
2040 this switch. We test this individually inside the
2041 switch below rather than just once outside it, so that
2042 options which are to be ignored still consume args. */
2043 int doit = !env || cs->env;
2045 switch (cs->type)
2047 default:
2048 abort ();
2050 case ignore:
2051 break;
2053 case flag:
2054 case flag_off:
2055 if (doit)
2056 *(int *) cs->value_ptr = cs->type == flag;
2057 break;
2059 case string:
2060 if (!doit)
2061 break;
2063 if (optarg == 0)
2064 optarg = cs->noarg_value;
2066 sl = *(struct stringlist **) cs->value_ptr;
2067 if (sl == 0)
2069 sl = (struct stringlist *)
2070 xmalloc (sizeof (struct stringlist));
2071 sl->max = 5;
2072 sl->idx = 0;
2073 sl->list = (char **) xmalloc (5 * sizeof (char *));
2074 *(struct stringlist **) cs->value_ptr = sl;
2076 else if (sl->idx == sl->max - 1)
2078 sl->max += 5;
2079 sl->list = (char **)
2080 xrealloc ((char *) sl->list,
2081 sl->max * sizeof (char *));
2083 sl->list[sl->idx++] = optarg;
2084 sl->list[sl->idx] = 0;
2085 break;
2087 case positive_int:
2088 if (optarg == 0 && argc > optind
2089 && ISDIGIT (argv[optind][0]))
2090 optarg = argv[optind++];
2092 if (!doit)
2093 break;
2095 if (optarg != 0)
2097 int i = atoi (optarg);
2098 if (i < 1)
2100 if (doit)
2101 error (NILF, _("the `-%c' option requires a positive integral argument"),
2102 cs->c);
2103 bad = 1;
2105 else
2106 *(unsigned int *) cs->value_ptr = i;
2108 else
2109 *(unsigned int *) cs->value_ptr
2110 = *(unsigned int *) cs->noarg_value;
2111 break;
2113 #ifndef NO_FLOAT
2114 case floating:
2115 if (optarg == 0 && optind < argc
2116 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2117 optarg = argv[optind++];
2119 if (doit)
2120 *(double *) cs->value_ptr
2121 = (optarg != 0 ? atof (optarg)
2122 : *(double *) cs->noarg_value);
2124 break;
2125 #endif
2128 /* We've found the switch. Stop looking. */
2129 break;
2133 /* There are no more options according to getting getopt, but there may
2134 be some arguments left. Since we have asked for non-option arguments
2135 to be returned in order, this only happens when there is a "--"
2136 argument to prevent later arguments from being options. */
2137 while (optind < argc)
2138 handle_non_switch_argument (argv[optind++], env);
2141 if (!env && (bad || print_usage_flag))
2143 print_usage (bad);
2144 die (bad ? 2 : 0);
2148 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2149 We do this by chopping the value into a vector of words, prepending a
2150 dash to the first word if it lacks one, and passing the vector to
2151 decode_switches. */
2153 static void
2154 decode_env_switches (envar, len)
2155 char *envar;
2156 unsigned int len;
2158 char *varref = (char *) alloca (2 + len + 2);
2159 char *value, *p;
2160 int argc;
2161 char **argv;
2163 /* Get the variable's value. */
2164 varref[0] = '$';
2165 varref[1] = '(';
2166 bcopy (envar, &varref[2], len);
2167 varref[2 + len] = ')';
2168 varref[2 + len + 1] = '\0';
2169 value = variable_expand (varref);
2171 /* Skip whitespace, and check for an empty value. */
2172 value = next_token (value);
2173 len = strlen (value);
2174 if (len == 0)
2175 return;
2177 /* Allocate a vector that is definitely big enough. */
2178 argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
2180 /* Allocate a buffer to copy the value into while we split it into words
2181 and unquote it. We must use permanent storage for this because
2182 decode_switches may store pointers into the passed argument words. */
2183 p = (char *) xmalloc (2 * len);
2185 /* getopt will look at the arguments starting at ARGV[1].
2186 Prepend a spacer word. */
2187 argv[0] = 0;
2188 argc = 1;
2189 argv[argc] = p;
2190 while (*value != '\0')
2192 if (*value == '\\')
2193 ++value; /* Skip the backslash. */
2194 else if (isblank (*value))
2196 /* End of the word. */
2197 *p++ = '\0';
2198 argv[++argc] = p;
2200 ++value;
2201 while (isblank (*value));
2202 continue;
2204 *p++ = *value++;
2206 *p = '\0';
2207 argv[++argc] = 0;
2209 if (argv[1][0] != '-' && index (argv[1], '=') == 0)
2210 /* The first word doesn't start with a dash and isn't a variable
2211 definition. Add a dash and pass it along to decode_switches. We
2212 need permanent storage for this in case decode_switches saves
2213 pointers into the value. */
2214 argv[1] = concat ("-", argv[1], "");
2216 /* Parse those words. */
2217 decode_switches (argc, argv, 1);
2220 /* Quote the string IN so that it will be interpreted as a single word with
2221 no magic by the shell; if DOUBLE_DOLLARS is nonzero, also double dollar
2222 signs to avoid variable expansion in make itself. Write the result into
2223 OUT, returning the address of the next character to be written.
2224 Allocating space for OUT twice the length of IN (thrice if
2225 DOUBLE_DOLLARS is nonzero) is always sufficient. */
2227 static char *
2228 quote_as_word (out, in, double_dollars)
2229 char *out, *in;
2230 int double_dollars;
2232 while (*in != '\0')
2234 #ifdef VMS
2235 if (index ("^;'\"*?$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
2236 #else
2237 if (index ("^;'\"*?[]$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
2238 #endif
2239 *out++ = '\\';
2240 if (double_dollars && *in == '$')
2241 *out++ = '$';
2242 *out++ = *in++;
2245 return out;
2248 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2249 command switches. Include options with args if ALL is nonzero.
2250 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2252 static void
2253 define_makeflags (all, makefile)
2254 int all, makefile;
2256 static const char ref[] = "$(MAKEOVERRIDES)";
2257 static const char posixref[] = "$(-*-command-variables-*-)";
2258 register const struct command_switch *cs;
2259 char *flagstring;
2260 register char *p;
2261 unsigned int words;
2262 struct variable *v;
2264 /* We will construct a linked list of `struct flag's describing
2265 all the flags which need to go in MAKEFLAGS. Then, once we
2266 know how many there are and their lengths, we can put them all
2267 together in a string. */
2269 struct flag
2271 struct flag *next;
2272 const struct command_switch *cs;
2273 char *arg;
2275 struct flag *flags = 0;
2276 unsigned int flagslen = 0;
2277 #define ADD_FLAG(ARG, LEN) \
2278 do { \
2279 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2280 new->cs = cs; \
2281 new->arg = (ARG); \
2282 new->next = flags; \
2283 flags = new; \
2284 if (new->arg == 0) \
2285 ++flagslen; /* Just a single flag letter. */ \
2286 else \
2287 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2288 if (!short_option (cs->c)) \
2289 /* This switch has no single-letter version, so we use the long. */ \
2290 flagslen += 2 + strlen (cs->long_name); \
2291 } while (0)
2293 for (cs = switches; cs->c != '\0'; ++cs)
2294 if (cs->toenv && (!makefile || !cs->no_makefile))
2295 switch (cs->type)
2297 default:
2298 abort ();
2300 case ignore:
2301 break;
2303 case flag:
2304 case flag_off:
2305 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2306 && (cs->default_value == 0
2307 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2308 ADD_FLAG (0, 0);
2309 break;
2311 case positive_int:
2312 if (all)
2314 if ((cs->default_value != 0
2315 && (*(unsigned int *) cs->value_ptr
2316 == *(unsigned int *) cs->default_value)))
2317 break;
2318 else if (cs->noarg_value != 0
2319 && (*(unsigned int *) cs->value_ptr ==
2320 *(unsigned int *) cs->noarg_value))
2321 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2322 else if (cs->c == 'j')
2323 /* Special case for `-j'. */
2324 ADD_FLAG ("1", 1);
2325 else
2327 char *buf = (char *) alloca (30);
2328 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2329 ADD_FLAG (buf, strlen (buf));
2332 break;
2334 #ifndef NO_FLOAT
2335 case floating:
2336 if (all)
2338 if (cs->default_value != 0
2339 && (*(double *) cs->value_ptr
2340 == *(double *) cs->default_value))
2341 break;
2342 else if (cs->noarg_value != 0
2343 && (*(double *) cs->value_ptr
2344 == *(double *) cs->noarg_value))
2345 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2346 else
2348 char *buf = (char *) alloca (100);
2349 sprintf (buf, "%g", *(double *) cs->value_ptr);
2350 ADD_FLAG (buf, strlen (buf));
2353 break;
2354 #endif
2356 case string:
2357 if (all)
2359 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2360 if (sl != 0)
2362 /* Add the elements in reverse order, because
2363 all the flags get reversed below; and the order
2364 matters for some switches (like -I). */
2365 register unsigned int i = sl->idx;
2366 while (i-- > 0)
2367 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2370 break;
2373 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2375 #undef ADD_FLAG
2377 /* Construct the value in FLAGSTRING.
2378 We allocate enough space for a preceding dash and trailing null. */
2379 flagstring = (char *) alloca (1 + flagslen + 1);
2380 p = flagstring;
2381 words = 1;
2382 *p++ = '-';
2383 while (flags != 0)
2385 /* Add the flag letter or name to the string. */
2386 if (!short_option (flags->cs->c))
2388 *p++ = '-';
2389 strcpy (p, flags->cs->long_name);
2390 p += strlen (p);
2392 else
2393 *p++ = flags->cs->c;
2394 if (flags->arg != 0)
2396 /* A flag that takes an optional argument which in this case is
2397 omitted is specified by ARG being "". We must distinguish
2398 because a following flag appended without an intervening " -"
2399 is considered the arg for the first. */
2400 if (flags->arg[0] != '\0')
2402 /* Add its argument too. */
2403 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2404 p = quote_as_word (p, flags->arg, 1);
2406 ++words;
2407 /* Write a following space and dash, for the next flag. */
2408 *p++ = ' ';
2409 *p++ = '-';
2411 else if (!short_option (flags->cs->c))
2413 ++words;
2414 /* Long options must each go in their own word,
2415 so we write the following space and dash. */
2416 *p++ = ' ';
2417 *p++ = '-';
2419 flags = flags->next;
2422 /* Define MFLAGS before appending variable definitions. */
2424 if (p == &flagstring[1])
2425 /* No flags. */
2426 flagstring[0] = '\0';
2427 else if (p[-1] == '-')
2429 /* Kill the final space and dash. */
2430 p -= 2;
2431 *p = '\0';
2433 else
2434 /* Terminate the string. */
2435 *p = '\0';
2437 /* Since MFLAGS is not parsed for flags, there is no reason to
2438 override any makefile redefinition. */
2439 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2441 if (all && command_variables != 0)
2443 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2444 command-line variable definitions. */
2446 if (p == &flagstring[1])
2447 /* No flags written, so elide the leading dash already written. */
2448 p = flagstring;
2449 else
2451 /* Separate the variables from the switches with a "--" arg. */
2452 if (p[-1] != '-')
2454 /* We did not already write a trailing " -". */
2455 *p++ = ' ';
2456 *p++ = '-';
2458 /* There is a trailing " -"; fill it out to " -- ". */
2459 *p++ = '-';
2460 *p++ = ' ';
2463 /* Copy in the string. */
2464 if (posix_pedantic)
2466 bcopy (posixref, p, sizeof posixref - 1);
2467 p += sizeof posixref - 1;
2469 else
2471 bcopy (ref, p, sizeof ref - 1);
2472 p += sizeof ref - 1;
2475 else if (p == &flagstring[1])
2477 words = 0;
2478 --p;
2480 else if (p[-1] == '-')
2481 /* Kill the final space and dash. */
2482 p -= 2;
2483 /* Terminate the string. */
2484 *p = '\0';
2486 v = define_variable ("MAKEFLAGS", 9,
2487 /* If there are switches, omit the leading dash
2488 unless it is a single long option with two
2489 leading dashes. */
2490 &flagstring[(flagstring[0] == '-'
2491 && flagstring[1] != '-')
2492 ? 1 : 0],
2493 /* This used to use o_env, but that lost when a
2494 makefile defined MAKEFLAGS. Makefiles set
2495 MAKEFLAGS to add switches, but we still want
2496 to redefine its value with the full set of
2497 switches. Of course, an override or command
2498 definition will still take precedence. */
2499 o_file, 1);
2500 if (! all)
2501 /* The first time we are called, set MAKEFLAGS to always be exported.
2502 We should not do this again on the second call, because that is
2503 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2504 v->export = v_export;
2507 /* Print version information. */
2509 static void
2510 print_version ()
2512 static int printed_version = 0;
2514 char *precede = print_data_base_flag ? "# " : "";
2516 if (printed_version)
2517 /* Do it only once. */
2518 return;
2520 printf ("%sGNU Make version %s", precede, version_string);
2521 if (remote_description != 0 && *remote_description != '\0')
2522 printf ("-%s", remote_description);
2524 printf (_(", by Richard Stallman and Roland McGrath.\n\
2525 %sCopyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99\n\
2526 %s\tFree Software Foundation, Inc.\n\
2527 %sThis is free software; see the source for copying conditions.\n\
2528 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2529 %sPARTICULAR PURPOSE.\n\n\
2530 %sReport bugs to <bug-make@gnu.org>.\n\n"),
2531 precede, precede, precede, precede, precede, precede);
2533 printed_version = 1;
2535 /* Flush stdout so the user doesn't have to wait to see the
2536 version information while things are thought about. */
2537 fflush (stdout);
2540 /* Print a bunch of information about this and that. */
2542 static void
2543 print_data_base ()
2545 time_t when;
2547 when = time ((time_t *) 0);
2548 printf (_("\n# Make data base, printed on %s"), ctime (&when));
2550 print_variable_data_base ();
2551 print_dir_data_base ();
2552 print_rule_data_base ();
2553 print_file_data_base ();
2554 print_vpath_data_base ();
2556 when = time ((time_t *) 0);
2557 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
2560 /* Exit with STATUS, cleaning up as necessary. */
2562 void
2563 die (status)
2564 int status;
2566 static char dying = 0;
2568 if (!dying)
2570 int err;
2572 dying = 1;
2574 if (print_version_flag)
2575 print_version ();
2577 /* Wait for children to die. */
2578 for (err = status != 0; job_slots_used > 0; err = 0)
2579 reap_children (1, err);
2581 /* Let the remote job module clean up its state. */
2582 remote_cleanup ();
2584 /* Remove the intermediate files. */
2585 remove_intermediates (0);
2587 if (print_data_base_flag)
2588 print_data_base ();
2590 /* Try to move back to the original directory. This is essential on
2591 MS-DOS (where there is really only one process), and on Unix it
2592 puts core files in the original directory instead of the -C
2593 directory. Must wait until after remove_intermediates(), or unlinks
2594 of relative pathnames fail. */
2595 if (directory_before_chdir != 0)
2596 chdir (directory_before_chdir);
2598 log_working_directory (0);
2601 exit (status);
2604 /* Write a message indicating that we've just entered or
2605 left (according to ENTERING) the current directory. */
2607 void
2608 log_working_directory (entering)
2609 int entering;
2611 static int entered = 0;
2612 char *msg = entering ? _("Entering") : _("Leaving");
2614 /* Print nothing without the flag. Don't print the entering message
2615 again if we already have. Don't print the leaving message if we
2616 haven't printed the entering message. */
2617 if (! print_directory_flag || entering == entered)
2618 return;
2620 entered = entering;
2622 if (print_data_base_flag)
2623 fputs ("# ", stdout);
2625 if (makelevel == 0)
2626 printf ("%s: %s ", program, msg);
2627 else
2628 printf ("%s[%u]: %s ", program, makelevel, msg);
2630 if (starting_directory == 0)
2631 puts (_("an unknown directory"));
2632 else
2633 printf (_("directory `%s'\n"), starting_directory);