* Added the test suite to the main distribution.
[make.git] / main.c
blobf3e1135aaa7b049f02d8b7ba448461b945688bb9
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,
1304 _("Parallel jobs (-j) are not supported on this platform."));
1305 error (NILF, _("Resetting to single job (-j1) mode."));
1306 job_slots = 1;
1308 #endif
1310 #ifdef MAKE_JOBSERVER
1311 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1313 if (jobserver_fds)
1315 char *cp;
1317 if (jobserver_fds->idx > 1)
1318 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1320 /* Now parse the fds string and make sure it has the proper format. */
1322 cp = jobserver_fds->list[0];
1324 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1325 fatal (NILF,
1326 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1328 /* The combination of a pipe + !job_slots means we're using the
1329 jobserver. If !job_slots and we don't have a pipe, we can start
1330 infinite jobs. If we see both a pipe and job_slots >0 that means the
1331 user set -j explicitly. This is broken; in this case obey the user
1332 (ignore the jobserver pipe for this make) but print a message. */
1334 if (job_slots > 0)
1335 error (NILF,
1336 _("warning: -jN forced in submake: disabling jobserver mode."));
1338 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1339 handler. If this fails with EBADF, the parent has closed the pipe
1340 on us because it didn't think we were a submake. If so, print a
1341 warning then default to -j1. */
1343 else if ((job_rfd = dup (job_fds[0])) < 0)
1345 if (errno != EBADF)
1346 pfatal_with_name (_("dup jobserver"));
1348 error (NILF,
1349 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1350 job_slots = 1;
1353 if (job_slots > 0)
1355 close (job_fds[0]);
1356 close (job_fds[1]);
1357 job_fds[0] = job_fds[1] = -1;
1358 free (jobserver_fds->list);
1359 free (jobserver_fds);
1360 jobserver_fds = 0;
1364 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1365 Set up the pipe and install the fds option for our children. */
1367 if (job_slots > 1)
1369 char c = '+';
1371 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1372 pfatal_with_name (_("creating jobs pipe"));
1374 /* Every make assumes that it always has one job it can run. For the
1375 submakes it's the token they were given by their parent. For the
1376 top make, we just subtract one from the number the user wants. We
1377 want job_slots to be 0 to indicate we're using the jobserver. */
1379 while (--job_slots)
1380 while (write (job_fds[1], &c, 1) != 1)
1381 if (!EINTR_SET)
1382 pfatal_with_name (_("init jobserver pipe"));
1384 /* Fill in the jobserver_fds struct for our children. */
1386 jobserver_fds = (struct stringlist *)
1387 xmalloc (sizeof (struct stringlist));
1388 jobserver_fds->list = (char **) xmalloc (sizeof (char *));
1389 jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
1391 sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
1392 jobserver_fds->idx = 1;
1393 jobserver_fds->max = 1;
1395 #endif
1397 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1399 define_makeflags (1, 0);
1401 /* Make each `struct dep' point at the `struct file' for the file
1402 depended on. Also do magic for special targets. */
1404 snap_deps ();
1406 /* Convert old-style suffix rules to pattern rules. It is important to
1407 do this before installing the built-in pattern rules below, so that
1408 makefile-specified suffix rules take precedence over built-in pattern
1409 rules. */
1411 convert_to_pattern ();
1413 /* Install the default implicit pattern rules.
1414 This used to be done before reading the makefiles.
1415 But in that case, built-in pattern rules were in the chain
1416 before user-defined ones, so they matched first. */
1418 install_default_implicit_rules ();
1420 /* Compute implicit rule limits. */
1422 count_implicit_rule_limits ();
1424 /* Construct the listings of directories in VPATH lists. */
1426 build_vpath_lists ();
1428 /* Mark files given with -o flags as very old (00:00:01.00 Jan 1, 1970)
1429 and as having been updated already, and files given with -W flags as
1430 brand new (time-stamp as far as possible into the future). */
1432 if (old_files != 0)
1433 for (p = old_files->list; *p != 0; ++p)
1435 f = enter_command_line_file (*p);
1436 f->last_mtime = f->mtime_before_update = (FILE_TIMESTAMP) 1;
1437 f->updated = 1;
1438 f->update_status = 0;
1439 f->command_state = cs_finished;
1442 if (new_files != 0)
1444 for (p = new_files->list; *p != 0; ++p)
1446 f = enter_command_line_file (*p);
1447 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1451 /* Initialize the remote job module. */
1452 remote_setup ();
1454 if (read_makefiles != 0)
1456 /* Update any makefiles if necessary. */
1458 FILE_TIMESTAMP *makefile_mtimes = 0;
1459 unsigned int mm_idx = 0;
1460 char **nargv = argv;
1461 int nargc = argc;
1463 if (debug_flag)
1464 puts (_("Updating makefiles...."));
1466 /* Remove any makefiles we don't want to try to update.
1467 Also record the current modtimes so we can compare them later. */
1469 register struct dep *d, *last;
1470 last = 0;
1471 d = read_makefiles;
1472 while (d != 0)
1474 register struct file *f = d->file;
1475 if (f->double_colon)
1476 for (f = f->double_colon; f != NULL; f = f->prev)
1478 if (f->deps == 0 && f->cmds != 0)
1480 /* This makefile is a :: target with commands, but
1481 no dependencies. So, it will always be remade.
1482 This might well cause an infinite loop, so don't
1483 try to remake it. (This will only happen if
1484 your makefiles are written exceptionally
1485 stupidly; but if you work for Athena, that's how
1486 you write your makefiles.) */
1488 if (debug_flag)
1489 printf (_("Makefile `%s' might loop; not remaking it.\n"),
1490 f->name);
1492 if (last == 0)
1493 read_makefiles = d->next;
1494 else
1495 last->next = d->next;
1497 /* Free the storage. */
1498 free ((char *) d);
1500 d = last == 0 ? read_makefiles : last->next;
1502 break;
1505 if (f == NULL || !f->double_colon)
1507 makefile_mtimes = (FILE_TIMESTAMP *)
1508 xrealloc ((char *) makefile_mtimes,
1509 (mm_idx + 1) * sizeof (FILE_TIMESTAMP));
1510 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1511 last = d;
1512 d = d->next;
1517 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1518 define_makeflags (1, 1);
1520 switch (update_goal_chain (read_makefiles, 1))
1522 case 1:
1523 default:
1524 #define BOGUS_UPDATE_STATUS 0
1525 assert (BOGUS_UPDATE_STATUS);
1526 break;
1528 case -1:
1529 /* Did nothing. */
1530 break;
1532 case 2:
1533 /* Failed to update. Figure out if we care. */
1535 /* Nonzero if any makefile was successfully remade. */
1536 int any_remade = 0;
1537 /* Nonzero if any makefile we care about failed
1538 in updating or could not be found at all. */
1539 int any_failed = 0;
1540 register unsigned int i;
1541 struct dep *d;
1543 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1545 /* Reset the considered flag; we may need to look at the file
1546 again to print an error. */
1547 d->file->considered = 0;
1549 if (d->file->updated)
1551 /* This makefile was updated. */
1552 if (d->file->update_status == 0)
1554 /* It was successfully updated. */
1555 any_remade |= (file_mtime_no_search (d->file)
1556 != makefile_mtimes[i]);
1558 else if (! (d->changed & RM_DONTCARE))
1560 FILE_TIMESTAMP mtime;
1561 /* The update failed and this makefile was not
1562 from the MAKEFILES variable, so we care. */
1563 error (NILF, _("Failed to remake makefile `%s'."),
1564 d->file->name);
1565 mtime = file_mtime_no_search (d->file);
1566 any_remade |= (mtime != (FILE_TIMESTAMP) -1
1567 && mtime != makefile_mtimes[i]);
1570 else
1571 /* This makefile was not found at all. */
1572 if (! (d->changed & RM_DONTCARE))
1574 /* This is a makefile we care about. See how much. */
1575 if (d->changed & RM_INCLUDED)
1576 /* An included makefile. We don't need
1577 to die, but we do want to complain. */
1578 error (NILF,
1579 _("Included makefile `%s' was not found."),
1580 dep_name (d));
1581 else
1583 /* A normal makefile. We must die later. */
1584 error (NILF, _("Makefile `%s' was not found"),
1585 dep_name (d));
1586 any_failed = 1;
1590 /* Reset this to empty so we get the right error message below. */
1591 read_makefiles = 0;
1593 if (any_remade)
1594 goto re_exec;
1595 if (any_failed)
1596 die (2);
1597 break;
1600 case 0:
1601 re_exec:
1602 /* Updated successfully. Re-exec ourselves. */
1604 remove_intermediates (0);
1606 if (print_data_base_flag)
1607 print_data_base ();
1609 log_working_directory (0);
1611 if (makefiles != 0)
1613 /* These names might have changed. */
1614 register unsigned int i, j = 0;
1615 for (i = 1; i < argc; ++i)
1616 if (strneq (argv[i], "-f", 2)) /* XXX */
1618 char *p = &argv[i][2];
1619 if (*p == '\0')
1620 argv[++i] = makefiles->list[j];
1621 else
1622 argv[i] = concat ("-f", makefiles->list[j], "");
1623 ++j;
1627 /* Add -o option for the stdin temporary file, if necessary. */
1628 if (stdin_nm)
1630 nargv = (char **) xmalloc ((nargc + 2) * sizeof (char *));
1631 bcopy ((char *) argv, (char *) nargv, argc * sizeof (char *));
1632 nargv[nargc++] = concat ("-o", stdin_nm, "");
1633 nargv[nargc] = 0;
1636 if (directories != 0 && directories->idx > 0)
1638 char bad;
1639 if (directory_before_chdir != 0)
1641 if (chdir (directory_before_chdir) < 0)
1643 perror_with_name ("chdir", "");
1644 bad = 1;
1646 else
1647 bad = 0;
1649 else
1650 bad = 1;
1651 if (bad)
1652 fatal (NILF, _("Couldn't change back to original directory."));
1655 #ifndef _AMIGA
1656 for (p = environ; *p != 0; ++p)
1657 if (strneq (*p, "MAKELEVEL=", 10))
1659 /* The SGI compiler apparently can't understand
1660 the concept of storing the result of a function
1661 in something other than a local variable. */
1662 char *sgi_loses;
1663 sgi_loses = (char *) alloca (40);
1664 *p = sgi_loses;
1665 sprintf (*p, "MAKELEVEL=%u", makelevel);
1666 break;
1668 #else /* AMIGA */
1670 char buffer[256];
1671 int len;
1673 len = GetVar ("MAKELEVEL", buffer, sizeof (buffer), GVF_GLOBAL_ONLY);
1675 if (len != -1)
1677 sprintf (buffer, "%u", makelevel);
1678 SetVar ("MAKELEVEL", buffer, -1, GVF_GLOBAL_ONLY);
1681 #endif
1683 if (debug_flag)
1685 char **p;
1686 fputs (_("Re-executing:"), stdout);
1687 for (p = nargv; *p != 0; ++p)
1688 printf (" %s", *p);
1689 puts ("");
1692 fflush (stdout);
1693 fflush (stderr);
1695 /* Close the jobserver pipes if we opened any. */
1696 if (job_fds[0] >= 0)
1698 close (job_fds[0]);
1699 close (job_fds[1]);
1701 if (job_rfd >= 0)
1702 close (job_rfd);
1704 #ifndef _AMIGA
1705 exec_command (nargv, environ);
1706 #else
1707 exec_command (nargv);
1708 exit (0);
1709 #endif
1710 /* NOTREACHED */
1714 /* Set up `MAKEFLAGS' again for the normal targets. */
1715 define_makeflags (1, 0);
1717 /* If there is a temp file from reading a makefile from stdin, get rid of
1718 it now. */
1719 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
1720 perror_with_name (_("unlink (temporary file): "), stdin_nm);
1723 int status;
1725 /* If there were no command-line goals, use the default. */
1726 if (goals == 0)
1728 if (default_goal_file != 0)
1730 goals = (struct dep *) xmalloc (sizeof (struct dep));
1731 goals->next = 0;
1732 goals->name = 0;
1733 goals->file = default_goal_file;
1736 else
1737 lastgoal->next = 0;
1739 if (!goals)
1741 if (read_makefiles == 0)
1742 fatal (NILF, _("No targets specified and no makefile found"));
1744 fatal (NILF, _("No targets"));
1747 /* Update the goals. */
1749 if (debug_flag)
1750 puts (_("Updating goal targets...."));
1752 switch (update_goal_chain (goals, 0))
1754 case -1:
1755 /* Nothing happened. */
1756 case 0:
1757 /* Updated successfully. */
1758 status = EXIT_SUCCESS;
1759 break;
1760 case 2:
1761 /* Updating failed. POSIX.2 specifies exit status >1 for this;
1762 but in VMS, there is only success and failure. */
1763 status = EXIT_FAILURE ? 2 : EXIT_FAILURE;
1764 break;
1765 case 1:
1766 /* We are under -q and would run some commands. */
1767 status = EXIT_FAILURE;
1768 break;
1769 default:
1770 abort ();
1773 /* If we detected some clock skew, generate one last warning */
1774 if (clock_skew_detected)
1775 error (NILF, _("*** Warning: Clock skew detected. Your build may be incomplete."));
1777 /* Exit. */
1778 die (status);
1781 return 0;
1784 /* Parsing of arguments, decoding of switches. */
1786 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
1787 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
1788 (sizeof (long_option_aliases) /
1789 sizeof (long_option_aliases[0]))];
1791 /* Fill in the string and vector for getopt. */
1792 static void
1793 init_switches ()
1795 register char *p;
1796 register int c;
1797 register unsigned int i;
1799 if (options[0] != '\0')
1800 /* Already done. */
1801 return;
1803 p = options;
1805 /* Return switch and non-switch args in order, regardless of
1806 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
1807 *p++ = '-';
1809 for (i = 0; switches[i].c != '\0'; ++i)
1811 long_options[i].name = (switches[i].long_name == 0 ? "" :
1812 switches[i].long_name);
1813 long_options[i].flag = 0;
1814 long_options[i].val = switches[i].c;
1815 if (short_option (switches[i].c))
1816 *p++ = switches[i].c;
1817 switch (switches[i].type)
1819 case flag:
1820 case flag_off:
1821 case ignore:
1822 long_options[i].has_arg = no_argument;
1823 break;
1825 case string:
1826 case positive_int:
1827 case floating:
1828 if (short_option (switches[i].c))
1829 *p++ = ':';
1830 if (switches[i].noarg_value != 0)
1832 if (short_option (switches[i].c))
1833 *p++ = ':';
1834 long_options[i].has_arg = optional_argument;
1836 else
1837 long_options[i].has_arg = required_argument;
1838 break;
1841 *p = '\0';
1842 for (c = 0; c < (sizeof (long_option_aliases) /
1843 sizeof (long_option_aliases[0]));
1844 ++c)
1845 long_options[i++] = long_option_aliases[c];
1846 long_options[i].name = 0;
1849 static void
1850 handle_non_switch_argument (arg, env)
1851 char *arg;
1852 int env;
1854 /* Non-option argument. It might be a variable definition. */
1855 struct variable *v;
1856 if (arg[0] == '-' && arg[1] == '\0')
1857 /* Ignore plain `-' for compatibility. */
1858 return;
1859 v = try_variable_definition (0, arg, o_command);
1860 if (v != 0)
1862 /* It is indeed a variable definition. Record a pointer to
1863 the variable for later use in define_makeflags. */
1864 struct command_variable *cv
1865 = (struct command_variable *) xmalloc (sizeof (*cv));
1866 cv->variable = v;
1867 cv->next = command_variables;
1868 command_variables = cv;
1870 else if (! env)
1872 /* Not an option or variable definition; it must be a goal
1873 target! Enter it as a file and add it to the dep chain of
1874 goals. */
1875 struct file *f = enter_command_line_file (arg);
1876 f->cmd_target = 1;
1878 if (goals == 0)
1880 goals = (struct dep *) xmalloc (sizeof (struct dep));
1881 lastgoal = goals;
1883 else
1885 lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
1886 lastgoal = lastgoal->next;
1888 lastgoal->name = 0;
1889 lastgoal->file = f;
1892 /* Add this target name to the MAKECMDGOALS variable. */
1893 struct variable *v;
1894 char *value;
1896 v = lookup_variable ("MAKECMDGOALS", 12);
1897 if (v == 0)
1898 value = f->name;
1899 else
1901 /* Paste the old and new values together */
1902 unsigned int oldlen, newlen;
1904 oldlen = strlen (v->value);
1905 newlen = strlen (f->name);
1906 value = (char *) alloca (oldlen + 1 + newlen + 1);
1907 bcopy (v->value, value, oldlen);
1908 value[oldlen] = ' ';
1909 bcopy (f->name, &value[oldlen + 1], newlen + 1);
1911 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
1916 /* Print a nice usage method. */
1918 static void
1919 print_usage (bad)
1920 int bad;
1922 register const struct command_switch *cs;
1923 FILE *usageto;
1925 if (print_version_flag)
1926 print_version ();
1928 usageto = bad ? stderr : stdout;
1930 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
1932 fputs (_("Options:\n"), usageto);
1933 for (cs = switches; cs->c != '\0'; ++cs)
1935 char buf[1024], shortarg[50], longarg[50], *p;
1937 if (!cs->description || cs->description[0] == '-')
1938 continue;
1940 switch (long_options[cs - switches].has_arg)
1942 case no_argument:
1943 shortarg[0] = longarg[0] = '\0';
1944 break;
1945 case required_argument:
1946 sprintf (longarg, "=%s", cs->argdesc);
1947 sprintf (shortarg, " %s", cs->argdesc);
1948 break;
1949 case optional_argument:
1950 sprintf (longarg, "[=%s]", cs->argdesc);
1951 sprintf (shortarg, " [%s]", cs->argdesc);
1952 break;
1955 p = buf;
1957 if (short_option (cs->c))
1959 sprintf (buf, " -%c%s", cs->c, shortarg);
1960 p += strlen (p);
1962 if (cs->long_name != 0)
1964 unsigned int i;
1965 sprintf (p, "%s--%s%s",
1966 !short_option (cs->c) ? " " : ", ",
1967 cs->long_name, longarg);
1968 p += strlen (p);
1969 for (i = 0; i < (sizeof (long_option_aliases) /
1970 sizeof (long_option_aliases[0]));
1971 ++i)
1972 if (long_option_aliases[i].val == cs->c)
1974 sprintf (p, ", --%s%s",
1975 long_option_aliases[i].name, longarg);
1976 p += strlen (p);
1980 const struct command_switch *ncs = cs;
1981 while ((++ncs)->c != '\0')
1982 if (ncs->description
1983 && ncs->description[0] == '-'
1984 && ncs->description[1] == cs->c)
1986 /* This is another switch that does the same
1987 one as the one we are processing. We want
1988 to list them all together on one line. */
1989 sprintf (p, ", -%c%s", ncs->c, shortarg);
1990 p += strlen (p);
1991 if (ncs->long_name != 0)
1993 sprintf (p, ", --%s%s", ncs->long_name, longarg);
1994 p += strlen (p);
1999 if (p - buf > DESCRIPTION_COLUMN - 2)
2000 /* The list of option names is too long to fit on the same
2001 line with the description, leaving at least two spaces.
2002 Print it on its own line instead. */
2004 fprintf (usageto, "%s\n", buf);
2005 buf[0] = '\0';
2008 fprintf (usageto, "%*s%s.\n",
2009 - DESCRIPTION_COLUMN,
2010 buf, cs->description);
2014 /* Decode switches from ARGC and ARGV.
2015 They came from the environment if ENV is nonzero. */
2017 static void
2018 decode_switches (argc, argv, env)
2019 int argc;
2020 char **argv;
2021 int env;
2023 int bad = 0;
2024 register const struct command_switch *cs;
2025 register struct stringlist *sl;
2026 register int c;
2028 /* getopt does most of the parsing for us.
2029 First, get its vectors set up. */
2031 init_switches ();
2033 /* Let getopt produce error messages for the command line,
2034 but not for options from the environment. */
2035 opterr = !env;
2036 /* Reset getopt's state. */
2037 optind = 0;
2039 while (optind < argc)
2041 /* Parse the next argument. */
2042 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2043 if (c == EOF)
2044 /* End of arguments, or "--" marker seen. */
2045 break;
2046 else if (c == 1)
2047 /* An argument not starting with a dash. */
2048 handle_non_switch_argument (optarg, env);
2049 else if (c == '?')
2050 /* Bad option. We will print a usage message and die later.
2051 But continue to parse the other options so the user can
2052 see all he did wrong. */
2053 bad = 1;
2054 else
2055 for (cs = switches; cs->c != '\0'; ++cs)
2056 if (cs->c == c)
2058 /* Whether or not we will actually do anything with
2059 this switch. We test this individually inside the
2060 switch below rather than just once outside it, so that
2061 options which are to be ignored still consume args. */
2062 int doit = !env || cs->env;
2064 switch (cs->type)
2066 default:
2067 abort ();
2069 case ignore:
2070 break;
2072 case flag:
2073 case flag_off:
2074 if (doit)
2075 *(int *) cs->value_ptr = cs->type == flag;
2076 break;
2078 case string:
2079 if (!doit)
2080 break;
2082 if (optarg == 0)
2083 optarg = cs->noarg_value;
2085 sl = *(struct stringlist **) cs->value_ptr;
2086 if (sl == 0)
2088 sl = (struct stringlist *)
2089 xmalloc (sizeof (struct stringlist));
2090 sl->max = 5;
2091 sl->idx = 0;
2092 sl->list = (char **) xmalloc (5 * sizeof (char *));
2093 *(struct stringlist **) cs->value_ptr = sl;
2095 else if (sl->idx == sl->max - 1)
2097 sl->max += 5;
2098 sl->list = (char **)
2099 xrealloc ((char *) sl->list,
2100 sl->max * sizeof (char *));
2102 sl->list[sl->idx++] = optarg;
2103 sl->list[sl->idx] = 0;
2104 break;
2106 case positive_int:
2107 if (optarg == 0 && argc > optind
2108 && ISDIGIT (argv[optind][0]))
2109 optarg = argv[optind++];
2111 if (!doit)
2112 break;
2114 if (optarg != 0)
2116 int i = atoi (optarg);
2117 if (i < 1)
2119 if (doit)
2120 error (NILF, _("the `-%c' option requires a positive integral argument"),
2121 cs->c);
2122 bad = 1;
2124 else
2125 *(unsigned int *) cs->value_ptr = i;
2127 else
2128 *(unsigned int *) cs->value_ptr
2129 = *(unsigned int *) cs->noarg_value;
2130 break;
2132 #ifndef NO_FLOAT
2133 case floating:
2134 if (optarg == 0 && optind < argc
2135 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2136 optarg = argv[optind++];
2138 if (doit)
2139 *(double *) cs->value_ptr
2140 = (optarg != 0 ? atof (optarg)
2141 : *(double *) cs->noarg_value);
2143 break;
2144 #endif
2147 /* We've found the switch. Stop looking. */
2148 break;
2152 /* There are no more options according to getting getopt, but there may
2153 be some arguments left. Since we have asked for non-option arguments
2154 to be returned in order, this only happens when there is a "--"
2155 argument to prevent later arguments from being options. */
2156 while (optind < argc)
2157 handle_non_switch_argument (argv[optind++], env);
2160 if (!env && (bad || print_usage_flag))
2162 print_usage (bad);
2163 die (bad ? 2 : 0);
2167 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2168 We do this by chopping the value into a vector of words, prepending a
2169 dash to the first word if it lacks one, and passing the vector to
2170 decode_switches. */
2172 static void
2173 decode_env_switches (envar, len)
2174 char *envar;
2175 unsigned int len;
2177 char *varref = (char *) alloca (2 + len + 2);
2178 char *value, *p;
2179 int argc;
2180 char **argv;
2182 /* Get the variable's value. */
2183 varref[0] = '$';
2184 varref[1] = '(';
2185 bcopy (envar, &varref[2], len);
2186 varref[2 + len] = ')';
2187 varref[2 + len + 1] = '\0';
2188 value = variable_expand (varref);
2190 /* Skip whitespace, and check for an empty value. */
2191 value = next_token (value);
2192 len = strlen (value);
2193 if (len == 0)
2194 return;
2196 /* Allocate a vector that is definitely big enough. */
2197 argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
2199 /* Allocate a buffer to copy the value into while we split it into words
2200 and unquote it. We must use permanent storage for this because
2201 decode_switches may store pointers into the passed argument words. */
2202 p = (char *) xmalloc (2 * len);
2204 /* getopt will look at the arguments starting at ARGV[1].
2205 Prepend a spacer word. */
2206 argv[0] = 0;
2207 argc = 1;
2208 argv[argc] = p;
2209 while (*value != '\0')
2211 if (*value == '\\')
2212 ++value; /* Skip the backslash. */
2213 else if (isblank (*value))
2215 /* End of the word. */
2216 *p++ = '\0';
2217 argv[++argc] = p;
2219 ++value;
2220 while (isblank (*value));
2221 continue;
2223 *p++ = *value++;
2225 *p = '\0';
2226 argv[++argc] = 0;
2228 if (argv[1][0] != '-' && index (argv[1], '=') == 0)
2229 /* The first word doesn't start with a dash and isn't a variable
2230 definition. Add a dash and pass it along to decode_switches. We
2231 need permanent storage for this in case decode_switches saves
2232 pointers into the value. */
2233 argv[1] = concat ("-", argv[1], "");
2235 /* Parse those words. */
2236 decode_switches (argc, argv, 1);
2239 /* Quote the string IN so that it will be interpreted as a single word with
2240 no magic by the shell; if DOUBLE_DOLLARS is nonzero, also double dollar
2241 signs to avoid variable expansion in make itself. Write the result into
2242 OUT, returning the address of the next character to be written.
2243 Allocating space for OUT twice the length of IN (thrice if
2244 DOUBLE_DOLLARS is nonzero) is always sufficient. */
2246 static char *
2247 quote_as_word (out, in, double_dollars)
2248 char *out, *in;
2249 int double_dollars;
2251 while (*in != '\0')
2253 #ifdef VMS
2254 if (index ("^;'\"*?$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
2255 #else
2256 if (index ("^;'\"*?[]$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
2257 #endif
2258 *out++ = '\\';
2259 if (double_dollars && *in == '$')
2260 *out++ = '$';
2261 *out++ = *in++;
2264 return out;
2267 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2268 command switches. Include options with args if ALL is nonzero.
2269 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2271 static void
2272 define_makeflags (all, makefile)
2273 int all, makefile;
2275 static const char ref[] = "$(MAKEOVERRIDES)";
2276 static const char posixref[] = "$(-*-command-variables-*-)";
2277 register const struct command_switch *cs;
2278 char *flagstring;
2279 register char *p;
2280 unsigned int words;
2281 struct variable *v;
2283 /* We will construct a linked list of `struct flag's describing
2284 all the flags which need to go in MAKEFLAGS. Then, once we
2285 know how many there are and their lengths, we can put them all
2286 together in a string. */
2288 struct flag
2290 struct flag *next;
2291 const struct command_switch *cs;
2292 char *arg;
2294 struct flag *flags = 0;
2295 unsigned int flagslen = 0;
2296 #define ADD_FLAG(ARG, LEN) \
2297 do { \
2298 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2299 new->cs = cs; \
2300 new->arg = (ARG); \
2301 new->next = flags; \
2302 flags = new; \
2303 if (new->arg == 0) \
2304 ++flagslen; /* Just a single flag letter. */ \
2305 else \
2306 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2307 if (!short_option (cs->c)) \
2308 /* This switch has no single-letter version, so we use the long. */ \
2309 flagslen += 2 + strlen (cs->long_name); \
2310 } while (0)
2312 for (cs = switches; cs->c != '\0'; ++cs)
2313 if (cs->toenv && (!makefile || !cs->no_makefile))
2314 switch (cs->type)
2316 default:
2317 abort ();
2319 case ignore:
2320 break;
2322 case flag:
2323 case flag_off:
2324 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2325 && (cs->default_value == 0
2326 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2327 ADD_FLAG (0, 0);
2328 break;
2330 case positive_int:
2331 if (all)
2333 if ((cs->default_value != 0
2334 && (*(unsigned int *) cs->value_ptr
2335 == *(unsigned int *) cs->default_value)))
2336 break;
2337 else if (cs->noarg_value != 0
2338 && (*(unsigned int *) cs->value_ptr ==
2339 *(unsigned int *) cs->noarg_value))
2340 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2341 else if (cs->c == 'j')
2342 /* Special case for `-j'. */
2343 ADD_FLAG ("1", 1);
2344 else
2346 char *buf = (char *) alloca (30);
2347 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2348 ADD_FLAG (buf, strlen (buf));
2351 break;
2353 #ifndef NO_FLOAT
2354 case floating:
2355 if (all)
2357 if (cs->default_value != 0
2358 && (*(double *) cs->value_ptr
2359 == *(double *) cs->default_value))
2360 break;
2361 else if (cs->noarg_value != 0
2362 && (*(double *) cs->value_ptr
2363 == *(double *) cs->noarg_value))
2364 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2365 else
2367 char *buf = (char *) alloca (100);
2368 sprintf (buf, "%g", *(double *) cs->value_ptr);
2369 ADD_FLAG (buf, strlen (buf));
2372 break;
2373 #endif
2375 case string:
2376 if (all)
2378 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2379 if (sl != 0)
2381 /* Add the elements in reverse order, because
2382 all the flags get reversed below; and the order
2383 matters for some switches (like -I). */
2384 register unsigned int i = sl->idx;
2385 while (i-- > 0)
2386 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2389 break;
2392 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2394 #undef ADD_FLAG
2396 /* Construct the value in FLAGSTRING.
2397 We allocate enough space for a preceding dash and trailing null. */
2398 flagstring = (char *) alloca (1 + flagslen + 1);
2399 p = flagstring;
2400 words = 1;
2401 *p++ = '-';
2402 while (flags != 0)
2404 /* Add the flag letter or name to the string. */
2405 if (short_option (flags->cs->c))
2406 *p++ = flags->cs->c;
2407 else
2409 if (*p != '-')
2411 *p++ = ' ';
2412 *p++ = '-';
2414 *p++ = '-';
2415 strcpy (p, flags->cs->long_name);
2416 p += strlen (p);
2418 if (flags->arg != 0)
2420 /* A flag that takes an optional argument which in this case is
2421 omitted is specified by ARG being "". We must distinguish
2422 because a following flag appended without an intervening " -"
2423 is considered the arg for the first. */
2424 if (flags->arg[0] != '\0')
2426 /* Add its argument too. */
2427 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2428 p = quote_as_word (p, flags->arg, 1);
2430 ++words;
2431 /* Write a following space and dash, for the next flag. */
2432 *p++ = ' ';
2433 *p++ = '-';
2435 else if (!short_option (flags->cs->c))
2437 ++words;
2438 /* Long options must each go in their own word,
2439 so we write the following space and dash. */
2440 *p++ = ' ';
2441 *p++ = '-';
2443 flags = flags->next;
2446 /* Define MFLAGS before appending variable definitions. */
2448 if (p == &flagstring[1])
2449 /* No flags. */
2450 flagstring[0] = '\0';
2451 else if (p[-1] == '-')
2453 /* Kill the final space and dash. */
2454 p -= 2;
2455 *p = '\0';
2457 else
2458 /* Terminate the string. */
2459 *p = '\0';
2461 /* Since MFLAGS is not parsed for flags, there is no reason to
2462 override any makefile redefinition. */
2463 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2465 if (all && command_variables != 0)
2467 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2468 command-line variable definitions. */
2470 if (p == &flagstring[1])
2471 /* No flags written, so elide the leading dash already written. */
2472 p = flagstring;
2473 else
2475 /* Separate the variables from the switches with a "--" arg. */
2476 if (p[-1] != '-')
2478 /* We did not already write a trailing " -". */
2479 *p++ = ' ';
2480 *p++ = '-';
2482 /* There is a trailing " -"; fill it out to " -- ". */
2483 *p++ = '-';
2484 *p++ = ' ';
2487 /* Copy in the string. */
2488 if (posix_pedantic)
2490 bcopy (posixref, p, sizeof posixref - 1);
2491 p += sizeof posixref - 1;
2493 else
2495 bcopy (ref, p, sizeof ref - 1);
2496 p += sizeof ref - 1;
2499 else if (p == &flagstring[1])
2501 words = 0;
2502 --p;
2504 else if (p[-1] == '-')
2505 /* Kill the final space and dash. */
2506 p -= 2;
2507 /* Terminate the string. */
2508 *p = '\0';
2510 v = define_variable ("MAKEFLAGS", 9,
2511 /* If there are switches, omit the leading dash
2512 unless it is a single long option with two
2513 leading dashes. */
2514 &flagstring[(flagstring[0] == '-'
2515 && flagstring[1] != '-')
2516 ? 1 : 0],
2517 /* This used to use o_env, but that lost when a
2518 makefile defined MAKEFLAGS. Makefiles set
2519 MAKEFLAGS to add switches, but we still want
2520 to redefine its value with the full set of
2521 switches. Of course, an override or command
2522 definition will still take precedence. */
2523 o_file, 1);
2524 if (! all)
2525 /* The first time we are called, set MAKEFLAGS to always be exported.
2526 We should not do this again on the second call, because that is
2527 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2528 v->export = v_export;
2531 /* Print version information. */
2533 static void
2534 print_version ()
2536 extern char *make_host;
2537 static int printed_version = 0;
2539 char *precede = print_data_base_flag ? "# " : "";
2541 if (printed_version)
2542 /* Do it only once. */
2543 return;
2545 printf ("%sGNU Make version %s", precede, version_string);
2546 if (remote_description != 0 && *remote_description != '\0')
2547 printf ("-%s", remote_description);
2549 printf (_(", by Richard Stallman and Roland McGrath.\n\
2550 %sBuilt for %s\n\
2551 %sCopyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99\n\
2552 %s\tFree Software Foundation, Inc.\n\
2553 %sThis is free software; see the source for copying conditions.\n\
2554 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2555 %sPARTICULAR PURPOSE.\n\n\
2556 %sReport bugs to <bug-make@gnu.org>.\n\n"),
2557 precede, make_host,
2558 precede, precede, precede, precede, precede, precede);
2560 printed_version = 1;
2562 /* Flush stdout so the user doesn't have to wait to see the
2563 version information while things are thought about. */
2564 fflush (stdout);
2567 /* Print a bunch of information about this and that. */
2569 static void
2570 print_data_base ()
2572 time_t when;
2574 when = time ((time_t *) 0);
2575 printf (_("\n# Make data base, printed on %s"), ctime (&when));
2577 print_variable_data_base ();
2578 print_dir_data_base ();
2579 print_rule_data_base ();
2580 print_file_data_base ();
2581 print_vpath_data_base ();
2583 when = time ((time_t *) 0);
2584 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
2587 /* Exit with STATUS, cleaning up as necessary. */
2589 void
2590 die (status)
2591 int status;
2593 static char dying = 0;
2595 if (!dying)
2597 int err;
2599 dying = 1;
2601 if (print_version_flag)
2602 print_version ();
2604 /* Wait for children to die. */
2605 for (err = status != 0; job_slots_used > 0; err = 0)
2606 reap_children (1, err);
2608 /* Let the remote job module clean up its state. */
2609 remote_cleanup ();
2611 /* Remove the intermediate files. */
2612 remove_intermediates (0);
2614 if (print_data_base_flag)
2615 print_data_base ();
2617 /* Try to move back to the original directory. This is essential on
2618 MS-DOS (where there is really only one process), and on Unix it
2619 puts core files in the original directory instead of the -C
2620 directory. Must wait until after remove_intermediates(), or unlinks
2621 of relative pathnames fail. */
2622 if (directory_before_chdir != 0)
2623 chdir (directory_before_chdir);
2625 log_working_directory (0);
2628 exit (status);
2631 /* Write a message indicating that we've just entered or
2632 left (according to ENTERING) the current directory. */
2634 void
2635 log_working_directory (entering)
2636 int entering;
2638 static int entered = 0;
2639 char *msg = entering ? _("Entering") : _("Leaving");
2641 /* Print nothing without the flag. Don't print the entering message
2642 again if we already have. Don't print the leaving message if we
2643 haven't printed the entering message. */
2644 if (! print_directory_flag || entering == entered)
2645 return;
2647 entered = entering;
2649 if (print_data_base_flag)
2650 fputs ("# ", stdout);
2652 if (makelevel == 0)
2653 printf ("%s: %s ", program, msg);
2654 else
2655 printf ("%s[%u]: %s ", program, makelevel, msg);
2657 if (starting_directory == 0)
2658 puts (_("an unknown directory"));
2659 else
2660 printf (_("directory `%s'\n"), starting_directory);