* Oops. Fix a problem running submakes like $(MAKE) $(MFLAGS).
[make.git] / main.c
blobec92f010a0ae317f13761c02ec5a3ccb817812b2
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 /* If argv[0] is not in absolute form, prepend the current
978 directory. This can happen when Make is invoked by another DJGPP
979 program that uses a non-absolute name. */
980 if (current_directory[0] != '\0'
981 && argv[0] != 0
982 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':')))
983 argv[0] = concat (current_directory, "/", argv[0]);
984 #else /* !__MSDOS__ */
985 if (current_directory[0] != '\0'
986 && argv[0] != 0 && argv[0][0] != '/' && index (argv[0], '/') != 0)
987 argv[0] = concat (current_directory, "/", argv[0]);
988 #endif /* !__MSDOS__ */
989 #endif /* WINDOWS32 */
990 #endif
992 /* The extra indirection through $(MAKE_COMMAND) is done
993 for hysterical raisins. */
994 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
995 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
997 if (command_variables != 0)
999 struct command_variable *cv;
1000 struct variable *v;
1001 unsigned int len = 0;
1002 char *value, *p;
1004 /* Figure out how much space will be taken up by the command-line
1005 variable definitions. */
1006 for (cv = command_variables; cv != 0; cv = cv->next)
1008 v = cv->variable;
1009 len += 2 * strlen (v->name);
1010 if (! v->recursive)
1011 ++len;
1012 ++len;
1013 len += 3 * strlen (v->value);
1016 /* Now allocate a buffer big enough and fill it. */
1017 p = value = (char *) alloca (len);
1018 for (cv = command_variables; cv != 0; cv = cv->next)
1020 v = cv->variable;
1021 p = quote_as_word (p, v->name, 0);
1022 if (! v->recursive)
1023 *p++ = ':';
1024 *p++ = '=';
1025 p = quote_as_word (p, v->value, 0);
1026 *p++ = ' ';
1028 p[-1] = '\0'; /* Kill the final space and terminate. */
1030 /* Define an unchangeable variable with a name that no POSIX.2
1031 makefile could validly use for its own variable. */
1032 (void) define_variable ("-*-command-variables-*-", 23,
1033 value, o_automatic, 0);
1035 /* Define the variable; this will not override any user definition.
1036 Normally a reference to this variable is written into the value of
1037 MAKEFLAGS, allowing the user to override this value to affect the
1038 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1039 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1040 a reference to this hidden variable is written instead. */
1041 (void) define_variable ("MAKEOVERRIDES", 13,
1042 "${-*-command-variables-*-}", o_env, 1);
1045 /* If there were -C flags, move ourselves about. */
1046 if (directories != 0)
1047 for (i = 0; directories->list[i] != 0; ++i)
1049 char *dir = directories->list[i];
1050 if (dir[0] == '~')
1052 char *expanded = tilde_expand (dir);
1053 if (expanded != 0)
1054 dir = expanded;
1056 if (chdir (dir) < 0)
1057 pfatal_with_name (dir);
1058 if (dir != directories->list[i])
1059 free (dir);
1062 #ifdef WINDOWS32
1064 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1065 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1067 * The functions in dir.c can incorrectly cache information for "."
1068 * before we have changed directory and this can cause file
1069 * lookups to fail because the current directory (.) was pointing
1070 * at the wrong place when it was first evaluated.
1072 no_default_sh_exe = !find_and_set_default_shell(NULL);
1074 #endif /* WINDOWS32 */
1075 /* Figure out the level of recursion. */
1077 struct variable *v = lookup_variable ("MAKELEVEL", 9);
1078 if (v != 0 && *v->value != '\0' && *v->value != '-')
1079 makelevel = (unsigned int) atoi (v->value);
1080 else
1081 makelevel = 0;
1084 /* Except under -s, always do -w in sub-makes and under -C. */
1085 if (!silent_flag && (directories != 0 || makelevel > 0))
1086 print_directory_flag = 1;
1088 /* Let the user disable that with --no-print-directory. */
1089 if (inhibit_print_directory_flag)
1090 print_directory_flag = 0;
1092 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1093 if (no_builtin_variables_flag)
1094 no_builtin_rules_flag = 1;
1096 /* Construct the list of include directories to search. */
1098 construct_include_path (include_directories == 0 ? (char **) 0
1099 : include_directories->list);
1101 /* Figure out where we are now, after chdir'ing. */
1102 if (directories == 0)
1103 /* We didn't move, so we're still in the same place. */
1104 starting_directory = current_directory;
1105 else
1107 #ifdef WINDOWS32
1108 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1109 #else
1110 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1111 #endif
1113 #ifdef HAVE_GETCWD
1114 perror_with_name ("getcwd: ", "");
1115 #else
1116 error (NILF, "getwd: %s", current_directory);
1117 #endif
1118 starting_directory = 0;
1120 else
1121 starting_directory = current_directory;
1124 (void) define_variable ("CURDIR", 6, current_directory, o_default, 0);
1126 /* Read any stdin makefiles into temporary files. */
1128 if (makefiles != 0)
1130 register unsigned int i;
1131 for (i = 0; i < makefiles->idx; ++i)
1132 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1134 /* This makefile is standard input. Since we may re-exec
1135 and thus re-read the makefiles, we read standard input
1136 into a temporary file and read from that. */
1137 FILE *outfile;
1139 /* Make a unique filename. */
1140 #ifdef HAVE_MKTEMP
1142 #ifdef VMS
1143 static char name[] = "sys$scratch:GmXXXXXX";
1144 #else
1145 static char name[] = "/tmp/GmXXXXXX";
1146 #endif
1147 (void) mktemp (name);
1148 #else
1149 static char name[L_tmpnam];
1150 (void) tmpnam (name);
1151 #endif
1153 if (stdin_nm)
1154 fatal (NILF, _("Makefile from standard input specified twice."));
1156 outfile = fopen (name, "w");
1157 if (outfile == 0)
1158 pfatal_with_name (_("fopen (temporary file)"));
1159 while (!feof (stdin))
1161 char buf[2048];
1162 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1163 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1164 pfatal_with_name (_("fwrite (temporary file)"));
1166 (void) fclose (outfile);
1168 /* Replace the name that read_all_makefiles will
1169 see with the name of the temporary file. */
1171 char *temp;
1172 /* SGI compiler requires alloca's result be assigned simply. */
1173 temp = (char *) alloca (sizeof (name));
1174 bcopy (name, temp, sizeof (name));
1175 makefiles->list[i] = temp;
1178 /* Make sure the temporary file will not be remade. */
1179 stdin_nm = savestring (name, sizeof (name) -1);
1180 f = enter_file (stdin_nm);
1181 f->updated = 1;
1182 f->update_status = 0;
1183 f->command_state = cs_finished;
1184 /* Can't be intermediate, or it'll be removed too early for
1185 make re-exec. */
1186 f->intermediate = 0;
1187 f->dontcare = 0;
1191 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1192 /* Set up to handle children dying. This must be done before
1193 reading in the makefiles so that `shell' function calls will work.
1195 If we don't have a hanging wait we have to fall back to old, broken
1196 functionality here and rely on the signal handler and counting
1197 children.
1199 If we're using the jobs pipe we need a signal handler so that
1200 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1201 jobserver pipe in job.c if we're waiting for a token.
1203 If none of these are true, we don't need a signal handler at all. */
1205 extern RETSIGTYPE child_handler PARAMS ((int sig));
1207 # if defined HAVE_SIGACTION
1208 struct sigaction sa;
1210 bzero ((char *)&sa, sizeof (struct sigaction));
1211 sa.sa_handler = child_handler;
1212 # if defined SA_INTERRUPT
1213 /* This is supposed to be the default, but what the heck... */
1214 sa.sa_flags = SA_INTERRUPT;
1215 # endif
1216 # define HANDLESIG(s) sigaction (s, &sa, NULL)
1217 # else
1218 # define HANDLESIG(s) signal (s, child_handler)
1219 # endif
1221 /* OK, now actually install the handlers. */
1222 # if defined SIGCHLD
1223 (void) HANDLESIG (SIGCHLD);
1224 # endif
1225 # if defined SIGCLD && SIGCLD != SIGCHLD
1226 (void) HANDLESIG (SIGCLD);
1227 # endif
1229 #endif
1231 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1232 #ifdef SIGUSR1
1233 (void) signal (SIGUSR1, debug_signal_handler);
1234 #endif
1236 /* Define the initial list of suffixes for old-style rules. */
1238 set_default_suffixes ();
1240 /* Define the file rules for the built-in suffix rules. These will later
1241 be converted into pattern rules. We used to do this in
1242 install_default_implicit_rules, but since that happens after reading
1243 makefiles, it results in the built-in pattern rules taking precedence
1244 over makefile-specified suffix rules, which is wrong. */
1246 install_default_suffix_rules ();
1248 /* Define some internal and special variables. */
1250 define_automatic_variables ();
1252 /* Set up the MAKEFLAGS and MFLAGS variables
1253 so makefiles can look at them. */
1255 define_makeflags (0, 0);
1257 /* Define the default variables. */
1258 define_default_variables ();
1260 /* Read all the makefiles. */
1262 default_file = enter_file (".DEFAULT");
1264 read_makefiles
1265 = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list);
1267 #ifdef WINDOWS32
1268 /* look one last time after reading all Makefiles */
1269 if (no_default_sh_exe)
1270 no_default_sh_exe = !find_and_set_default_shell(NULL);
1272 if (no_default_sh_exe && job_slots != 1) {
1273 error (NILF, _("Do not specify -j or --jobs if sh.exe is not available."));
1274 error (NILF, _("Resetting make for single job mode."));
1275 job_slots = 1;
1277 #endif /* WINDOWS32 */
1279 #ifdef __MSDOS__
1280 /* We need to know what kind of shell we will be using. */
1282 extern int _is_unixy_shell (const char *_path);
1283 struct variable *shv = lookup_variable ("SHELL", 5);
1284 extern int unixy_shell;
1285 extern char *default_shell;
1287 if (shv && *shv->value)
1289 char *shell_path = recursively_expand(shv);
1291 if (shell_path && _is_unixy_shell (shell_path))
1292 unixy_shell = 1;
1293 else
1294 unixy_shell = 0;
1295 if (shell_path)
1296 default_shell = shell_path;
1299 #endif /* __MSDOS__ */
1301 /* Decode switches again, in case the variables were set by the makefile. */
1302 decode_env_switches ("MAKEFLAGS", 9);
1303 #if 0
1304 decode_env_switches ("MFLAGS", 6);
1305 #endif
1307 #ifdef __MSDOS__
1308 if (job_slots != 1)
1310 error (NILF,
1311 _("Parallel jobs (-j) are not supported on this platform."));
1312 error (NILF, _("Resetting to single job (-j1) mode."));
1313 job_slots = 1;
1315 #endif
1317 #ifdef MAKE_JOBSERVER
1318 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1320 if (jobserver_fds)
1322 char *cp;
1324 for (i=1; i < jobserver_fds->idx; ++i)
1325 if (!streq (jobserver_fds->list[0], jobserver_fds->list[i]))
1326 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1328 /* Now parse the fds string and make sure it has the proper format. */
1330 cp = jobserver_fds->list[0];
1332 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1333 fatal (NILF,
1334 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1336 /* The combination of a pipe + !job_slots means we're using the
1337 jobserver. If !job_slots and we don't have a pipe, we can start
1338 infinite jobs. If we see both a pipe and job_slots >0 that means the
1339 user set -j explicitly. This is broken; in this case obey the user
1340 (ignore the jobserver pipe for this make) but print a message. */
1342 if (job_slots > 0)
1343 error (NILF,
1344 _("warning: -jN forced in submake: disabling jobserver mode."));
1346 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1347 handler. If this fails with EBADF, the parent has closed the pipe
1348 on us because it didn't think we were a submake. If so, print a
1349 warning then default to -j1. */
1351 else if ((job_rfd = dup (job_fds[0])) < 0)
1353 if (errno != EBADF)
1354 pfatal_with_name (_("dup jobserver"));
1356 error (NILF,
1357 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1358 job_slots = 1;
1361 if (job_slots > 0)
1363 close (job_fds[0]);
1364 close (job_fds[1]);
1365 job_fds[0] = job_fds[1] = -1;
1366 free (jobserver_fds->list);
1367 free (jobserver_fds);
1368 jobserver_fds = 0;
1372 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1373 Set up the pipe and install the fds option for our children. */
1375 if (job_slots > 1)
1377 char c = '+';
1379 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1380 pfatal_with_name (_("creating jobs pipe"));
1382 /* Every make assumes that it always has one job it can run. For the
1383 submakes it's the token they were given by their parent. For the
1384 top make, we just subtract one from the number the user wants. We
1385 want job_slots to be 0 to indicate we're using the jobserver. */
1387 while (--job_slots)
1388 while (write (job_fds[1], &c, 1) != 1)
1389 if (!EINTR_SET)
1390 pfatal_with_name (_("init jobserver pipe"));
1392 /* Fill in the jobserver_fds struct for our children. */
1394 jobserver_fds = (struct stringlist *)
1395 xmalloc (sizeof (struct stringlist));
1396 jobserver_fds->list = (char **) xmalloc (sizeof (char *));
1397 jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
1399 sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
1400 jobserver_fds->idx = 1;
1401 jobserver_fds->max = 1;
1403 #endif
1405 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1407 define_makeflags (1, 0);
1409 /* Make each `struct dep' point at the `struct file' for the file
1410 depended on. Also do magic for special targets. */
1412 snap_deps ();
1414 /* Convert old-style suffix rules to pattern rules. It is important to
1415 do this before installing the built-in pattern rules below, so that
1416 makefile-specified suffix rules take precedence over built-in pattern
1417 rules. */
1419 convert_to_pattern ();
1421 /* Install the default implicit pattern rules.
1422 This used to be done before reading the makefiles.
1423 But in that case, built-in pattern rules were in the chain
1424 before user-defined ones, so they matched first. */
1426 install_default_implicit_rules ();
1428 /* Compute implicit rule limits. */
1430 count_implicit_rule_limits ();
1432 /* Construct the listings of directories in VPATH lists. */
1434 build_vpath_lists ();
1436 /* Mark files given with -o flags as very old (00:00:01.00 Jan 1, 1970)
1437 and as having been updated already, and files given with -W flags as
1438 brand new (time-stamp as far as possible into the future). */
1440 if (old_files != 0)
1441 for (p = old_files->list; *p != 0; ++p)
1443 f = enter_command_line_file (*p);
1444 f->last_mtime = f->mtime_before_update = (FILE_TIMESTAMP) 1;
1445 f->updated = 1;
1446 f->update_status = 0;
1447 f->command_state = cs_finished;
1450 if (new_files != 0)
1452 for (p = new_files->list; *p != 0; ++p)
1454 f = enter_command_line_file (*p);
1455 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1459 /* Initialize the remote job module. */
1460 remote_setup ();
1462 if (read_makefiles != 0)
1464 /* Update any makefiles if necessary. */
1466 FILE_TIMESTAMP *makefile_mtimes = 0;
1467 unsigned int mm_idx = 0;
1468 char **nargv = argv;
1469 int nargc = argc;
1471 if (debug_flag)
1472 puts (_("Updating makefiles...."));
1474 /* Remove any makefiles we don't want to try to update.
1475 Also record the current modtimes so we can compare them later. */
1477 register struct dep *d, *last;
1478 last = 0;
1479 d = read_makefiles;
1480 while (d != 0)
1482 register struct file *f = d->file;
1483 if (f->double_colon)
1484 for (f = f->double_colon; f != NULL; f = f->prev)
1486 if (f->deps == 0 && f->cmds != 0)
1488 /* This makefile is a :: target with commands, but
1489 no dependencies. So, it will always be remade.
1490 This might well cause an infinite loop, so don't
1491 try to remake it. (This will only happen if
1492 your makefiles are written exceptionally
1493 stupidly; but if you work for Athena, that's how
1494 you write your makefiles.) */
1496 if (debug_flag)
1497 printf (_("Makefile `%s' might loop; not remaking it.\n"),
1498 f->name);
1500 if (last == 0)
1501 read_makefiles = d->next;
1502 else
1503 last->next = d->next;
1505 /* Free the storage. */
1506 free ((char *) d);
1508 d = last == 0 ? read_makefiles : last->next;
1510 break;
1513 if (f == NULL || !f->double_colon)
1515 makefile_mtimes = (FILE_TIMESTAMP *)
1516 xrealloc ((char *) makefile_mtimes,
1517 (mm_idx + 1) * sizeof (FILE_TIMESTAMP));
1518 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1519 last = d;
1520 d = d->next;
1525 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1526 define_makeflags (1, 1);
1528 switch (update_goal_chain (read_makefiles, 1))
1530 case 1:
1531 default:
1532 #define BOGUS_UPDATE_STATUS 0
1533 assert (BOGUS_UPDATE_STATUS);
1534 break;
1536 case -1:
1537 /* Did nothing. */
1538 break;
1540 case 2:
1541 /* Failed to update. Figure out if we care. */
1543 /* Nonzero if any makefile was successfully remade. */
1544 int any_remade = 0;
1545 /* Nonzero if any makefile we care about failed
1546 in updating or could not be found at all. */
1547 int any_failed = 0;
1548 register unsigned int i;
1549 struct dep *d;
1551 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1553 /* Reset the considered flag; we may need to look at the file
1554 again to print an error. */
1555 d->file->considered = 0;
1557 if (d->file->updated)
1559 /* This makefile was updated. */
1560 if (d->file->update_status == 0)
1562 /* It was successfully updated. */
1563 any_remade |= (file_mtime_no_search (d->file)
1564 != makefile_mtimes[i]);
1566 else if (! (d->changed & RM_DONTCARE))
1568 FILE_TIMESTAMP mtime;
1569 /* The update failed and this makefile was not
1570 from the MAKEFILES variable, so we care. */
1571 error (NILF, _("Failed to remake makefile `%s'."),
1572 d->file->name);
1573 mtime = file_mtime_no_search (d->file);
1574 any_remade |= (mtime != (FILE_TIMESTAMP) -1
1575 && mtime != makefile_mtimes[i]);
1578 else
1579 /* This makefile was not found at all. */
1580 if (! (d->changed & RM_DONTCARE))
1582 /* This is a makefile we care about. See how much. */
1583 if (d->changed & RM_INCLUDED)
1584 /* An included makefile. We don't need
1585 to die, but we do want to complain. */
1586 error (NILF,
1587 _("Included makefile `%s' was not found."),
1588 dep_name (d));
1589 else
1591 /* A normal makefile. We must die later. */
1592 error (NILF, _("Makefile `%s' was not found"),
1593 dep_name (d));
1594 any_failed = 1;
1598 /* Reset this to empty so we get the right error message below. */
1599 read_makefiles = 0;
1601 if (any_remade)
1602 goto re_exec;
1603 if (any_failed)
1604 die (2);
1605 break;
1608 case 0:
1609 re_exec:
1610 /* Updated successfully. Re-exec ourselves. */
1612 remove_intermediates (0);
1614 if (print_data_base_flag)
1615 print_data_base ();
1617 log_working_directory (0);
1619 if (makefiles != 0)
1621 /* These names might have changed. */
1622 register unsigned int i, j = 0;
1623 for (i = 1; i < argc; ++i)
1624 if (strneq (argv[i], "-f", 2)) /* XXX */
1626 char *p = &argv[i][2];
1627 if (*p == '\0')
1628 argv[++i] = makefiles->list[j];
1629 else
1630 argv[i] = concat ("-f", makefiles->list[j], "");
1631 ++j;
1635 /* Add -o option for the stdin temporary file, if necessary. */
1636 if (stdin_nm)
1638 nargv = (char **) xmalloc ((nargc + 2) * sizeof (char *));
1639 bcopy ((char *) argv, (char *) nargv, argc * sizeof (char *));
1640 nargv[nargc++] = concat ("-o", stdin_nm, "");
1641 nargv[nargc] = 0;
1644 if (directories != 0 && directories->idx > 0)
1646 char bad;
1647 if (directory_before_chdir != 0)
1649 if (chdir (directory_before_chdir) < 0)
1651 perror_with_name ("chdir", "");
1652 bad = 1;
1654 else
1655 bad = 0;
1657 else
1658 bad = 1;
1659 if (bad)
1660 fatal (NILF, _("Couldn't change back to original directory."));
1663 #ifndef _AMIGA
1664 for (p = environ; *p != 0; ++p)
1665 if (strneq (*p, "MAKELEVEL=", 10))
1667 /* The SGI compiler apparently can't understand
1668 the concept of storing the result of a function
1669 in something other than a local variable. */
1670 char *sgi_loses;
1671 sgi_loses = (char *) alloca (40);
1672 *p = sgi_loses;
1673 sprintf (*p, "MAKELEVEL=%u", makelevel);
1674 break;
1676 #else /* AMIGA */
1678 char buffer[256];
1679 int len;
1681 len = GetVar ("MAKELEVEL", buffer, sizeof (buffer), GVF_GLOBAL_ONLY);
1683 if (len != -1)
1685 sprintf (buffer, "%u", makelevel);
1686 SetVar ("MAKELEVEL", buffer, -1, GVF_GLOBAL_ONLY);
1689 #endif
1691 if (debug_flag)
1693 char **p;
1694 fputs (_("Re-executing:"), stdout);
1695 for (p = nargv; *p != 0; ++p)
1696 printf (" %s", *p);
1697 puts ("");
1700 fflush (stdout);
1701 fflush (stderr);
1703 /* Close the jobserver pipes if we opened any. */
1704 if (job_fds[0] >= 0)
1706 close (job_fds[0]);
1707 close (job_fds[1]);
1709 if (job_rfd >= 0)
1710 close (job_rfd);
1712 #ifndef _AMIGA
1713 exec_command (nargv, environ);
1714 #else
1715 exec_command (nargv);
1716 exit (0);
1717 #endif
1718 /* NOTREACHED */
1722 /* Set up `MAKEFLAGS' again for the normal targets. */
1723 define_makeflags (1, 0);
1725 /* If there is a temp file from reading a makefile from stdin, get rid of
1726 it now. */
1727 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
1728 perror_with_name (_("unlink (temporary file): "), stdin_nm);
1731 int status;
1733 /* If there were no command-line goals, use the default. */
1734 if (goals == 0)
1736 if (default_goal_file != 0)
1738 goals = (struct dep *) xmalloc (sizeof (struct dep));
1739 goals->next = 0;
1740 goals->name = 0;
1741 goals->file = default_goal_file;
1744 else
1745 lastgoal->next = 0;
1747 if (!goals)
1749 if (read_makefiles == 0)
1750 fatal (NILF, _("No targets specified and no makefile found"));
1752 fatal (NILF, _("No targets"));
1755 /* Update the goals. */
1757 if (debug_flag)
1758 puts (_("Updating goal targets...."));
1760 switch (update_goal_chain (goals, 0))
1762 case -1:
1763 /* Nothing happened. */
1764 case 0:
1765 /* Updated successfully. */
1766 status = EXIT_SUCCESS;
1767 break;
1768 case 2:
1769 /* Updating failed. POSIX.2 specifies exit status >1 for this;
1770 but in VMS, there is only success and failure. */
1771 status = EXIT_FAILURE ? 2 : EXIT_FAILURE;
1772 break;
1773 case 1:
1774 /* We are under -q and would run some commands. */
1775 status = EXIT_FAILURE;
1776 break;
1777 default:
1778 abort ();
1781 /* If we detected some clock skew, generate one last warning */
1782 if (clock_skew_detected)
1783 error (NILF, _("*** Warning: Clock skew detected. Your build may be incomplete."));
1785 /* Exit. */
1786 die (status);
1789 return 0;
1792 /* Parsing of arguments, decoding of switches. */
1794 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
1795 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
1796 (sizeof (long_option_aliases) /
1797 sizeof (long_option_aliases[0]))];
1799 /* Fill in the string and vector for getopt. */
1800 static void
1801 init_switches ()
1803 register char *p;
1804 register int c;
1805 register unsigned int i;
1807 if (options[0] != '\0')
1808 /* Already done. */
1809 return;
1811 p = options;
1813 /* Return switch and non-switch args in order, regardless of
1814 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
1815 *p++ = '-';
1817 for (i = 0; switches[i].c != '\0'; ++i)
1819 long_options[i].name = (switches[i].long_name == 0 ? "" :
1820 switches[i].long_name);
1821 long_options[i].flag = 0;
1822 long_options[i].val = switches[i].c;
1823 if (short_option (switches[i].c))
1824 *p++ = switches[i].c;
1825 switch (switches[i].type)
1827 case flag:
1828 case flag_off:
1829 case ignore:
1830 long_options[i].has_arg = no_argument;
1831 break;
1833 case string:
1834 case positive_int:
1835 case floating:
1836 if (short_option (switches[i].c))
1837 *p++ = ':';
1838 if (switches[i].noarg_value != 0)
1840 if (short_option (switches[i].c))
1841 *p++ = ':';
1842 long_options[i].has_arg = optional_argument;
1844 else
1845 long_options[i].has_arg = required_argument;
1846 break;
1849 *p = '\0';
1850 for (c = 0; c < (sizeof (long_option_aliases) /
1851 sizeof (long_option_aliases[0]));
1852 ++c)
1853 long_options[i++] = long_option_aliases[c];
1854 long_options[i].name = 0;
1857 static void
1858 handle_non_switch_argument (arg, env)
1859 char *arg;
1860 int env;
1862 /* Non-option argument. It might be a variable definition. */
1863 struct variable *v;
1864 if (arg[0] == '-' && arg[1] == '\0')
1865 /* Ignore plain `-' for compatibility. */
1866 return;
1867 v = try_variable_definition (0, arg, o_command);
1868 if (v != 0)
1870 /* It is indeed a variable definition. Record a pointer to
1871 the variable for later use in define_makeflags. */
1872 struct command_variable *cv
1873 = (struct command_variable *) xmalloc (sizeof (*cv));
1874 cv->variable = v;
1875 cv->next = command_variables;
1876 command_variables = cv;
1878 else if (! env)
1880 /* Not an option or variable definition; it must be a goal
1881 target! Enter it as a file and add it to the dep chain of
1882 goals. */
1883 struct file *f = enter_command_line_file (arg);
1884 f->cmd_target = 1;
1886 if (goals == 0)
1888 goals = (struct dep *) xmalloc (sizeof (struct dep));
1889 lastgoal = goals;
1891 else
1893 lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
1894 lastgoal = lastgoal->next;
1896 lastgoal->name = 0;
1897 lastgoal->file = f;
1900 /* Add this target name to the MAKECMDGOALS variable. */
1901 struct variable *v;
1902 char *value;
1904 v = lookup_variable ("MAKECMDGOALS", 12);
1905 if (v == 0)
1906 value = f->name;
1907 else
1909 /* Paste the old and new values together */
1910 unsigned int oldlen, newlen;
1912 oldlen = strlen (v->value);
1913 newlen = strlen (f->name);
1914 value = (char *) alloca (oldlen + 1 + newlen + 1);
1915 bcopy (v->value, value, oldlen);
1916 value[oldlen] = ' ';
1917 bcopy (f->name, &value[oldlen + 1], newlen + 1);
1919 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
1924 /* Print a nice usage method. */
1926 static void
1927 print_usage (bad)
1928 int bad;
1930 register const struct command_switch *cs;
1931 FILE *usageto;
1933 if (print_version_flag)
1934 print_version ();
1936 usageto = bad ? stderr : stdout;
1938 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
1940 fputs (_("Options:\n"), usageto);
1941 for (cs = switches; cs->c != '\0'; ++cs)
1943 char buf[1024], shortarg[50], longarg[50], *p;
1945 if (!cs->description || cs->description[0] == '-')
1946 continue;
1948 switch (long_options[cs - switches].has_arg)
1950 case no_argument:
1951 shortarg[0] = longarg[0] = '\0';
1952 break;
1953 case required_argument:
1954 sprintf (longarg, "=%s", cs->argdesc);
1955 sprintf (shortarg, " %s", cs->argdesc);
1956 break;
1957 case optional_argument:
1958 sprintf (longarg, "[=%s]", cs->argdesc);
1959 sprintf (shortarg, " [%s]", cs->argdesc);
1960 break;
1963 p = buf;
1965 if (short_option (cs->c))
1967 sprintf (buf, " -%c%s", cs->c, shortarg);
1968 p += strlen (p);
1970 if (cs->long_name != 0)
1972 unsigned int i;
1973 sprintf (p, "%s--%s%s",
1974 !short_option (cs->c) ? " " : ", ",
1975 cs->long_name, longarg);
1976 p += strlen (p);
1977 for (i = 0; i < (sizeof (long_option_aliases) /
1978 sizeof (long_option_aliases[0]));
1979 ++i)
1980 if (long_option_aliases[i].val == cs->c)
1982 sprintf (p, ", --%s%s",
1983 long_option_aliases[i].name, longarg);
1984 p += strlen (p);
1988 const struct command_switch *ncs = cs;
1989 while ((++ncs)->c != '\0')
1990 if (ncs->description
1991 && ncs->description[0] == '-'
1992 && ncs->description[1] == cs->c)
1994 /* This is another switch that does the same
1995 one as the one we are processing. We want
1996 to list them all together on one line. */
1997 sprintf (p, ", -%c%s", ncs->c, shortarg);
1998 p += strlen (p);
1999 if (ncs->long_name != 0)
2001 sprintf (p, ", --%s%s", ncs->long_name, longarg);
2002 p += strlen (p);
2007 if (p - buf > DESCRIPTION_COLUMN - 2)
2008 /* The list of option names is too long to fit on the same
2009 line with the description, leaving at least two spaces.
2010 Print it on its own line instead. */
2012 fprintf (usageto, "%s\n", buf);
2013 buf[0] = '\0';
2016 fprintf (usageto, "%*s%s.\n",
2017 - DESCRIPTION_COLUMN,
2018 buf, cs->description);
2022 /* Decode switches from ARGC and ARGV.
2023 They came from the environment if ENV is nonzero. */
2025 static void
2026 decode_switches (argc, argv, env)
2027 int argc;
2028 char **argv;
2029 int env;
2031 int bad = 0;
2032 register const struct command_switch *cs;
2033 register struct stringlist *sl;
2034 register int c;
2036 /* getopt does most of the parsing for us.
2037 First, get its vectors set up. */
2039 init_switches ();
2041 /* Let getopt produce error messages for the command line,
2042 but not for options from the environment. */
2043 opterr = !env;
2044 /* Reset getopt's state. */
2045 optind = 0;
2047 while (optind < argc)
2049 /* Parse the next argument. */
2050 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2051 if (c == EOF)
2052 /* End of arguments, or "--" marker seen. */
2053 break;
2054 else if (c == 1)
2055 /* An argument not starting with a dash. */
2056 handle_non_switch_argument (optarg, env);
2057 else if (c == '?')
2058 /* Bad option. We will print a usage message and die later.
2059 But continue to parse the other options so the user can
2060 see all he did wrong. */
2061 bad = 1;
2062 else
2063 for (cs = switches; cs->c != '\0'; ++cs)
2064 if (cs->c == c)
2066 /* Whether or not we will actually do anything with
2067 this switch. We test this individually inside the
2068 switch below rather than just once outside it, so that
2069 options which are to be ignored still consume args. */
2070 int doit = !env || cs->env;
2072 switch (cs->type)
2074 default:
2075 abort ();
2077 case ignore:
2078 break;
2080 case flag:
2081 case flag_off:
2082 if (doit)
2083 *(int *) cs->value_ptr = cs->type == flag;
2084 break;
2086 case string:
2087 if (!doit)
2088 break;
2090 if (optarg == 0)
2091 optarg = cs->noarg_value;
2093 sl = *(struct stringlist **) cs->value_ptr;
2094 if (sl == 0)
2096 sl = (struct stringlist *)
2097 xmalloc (sizeof (struct stringlist));
2098 sl->max = 5;
2099 sl->idx = 0;
2100 sl->list = (char **) xmalloc (5 * sizeof (char *));
2101 *(struct stringlist **) cs->value_ptr = sl;
2103 else if (sl->idx == sl->max - 1)
2105 sl->max += 5;
2106 sl->list = (char **)
2107 xrealloc ((char *) sl->list,
2108 sl->max * sizeof (char *));
2110 sl->list[sl->idx++] = optarg;
2111 sl->list[sl->idx] = 0;
2112 break;
2114 case positive_int:
2115 if (optarg == 0 && argc > optind
2116 && ISDIGIT (argv[optind][0]))
2117 optarg = argv[optind++];
2119 if (!doit)
2120 break;
2122 if (optarg != 0)
2124 int i = atoi (optarg);
2125 if (i < 1)
2127 if (doit)
2128 error (NILF, _("the `-%c' option requires a positive integral argument"),
2129 cs->c);
2130 bad = 1;
2132 else
2133 *(unsigned int *) cs->value_ptr = i;
2135 else
2136 *(unsigned int *) cs->value_ptr
2137 = *(unsigned int *) cs->noarg_value;
2138 break;
2140 #ifndef NO_FLOAT
2141 case floating:
2142 if (optarg == 0 && optind < argc
2143 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2144 optarg = argv[optind++];
2146 if (doit)
2147 *(double *) cs->value_ptr
2148 = (optarg != 0 ? atof (optarg)
2149 : *(double *) cs->noarg_value);
2151 break;
2152 #endif
2155 /* We've found the switch. Stop looking. */
2156 break;
2160 /* There are no more options according to getting getopt, but there may
2161 be some arguments left. Since we have asked for non-option arguments
2162 to be returned in order, this only happens when there is a "--"
2163 argument to prevent later arguments from being options. */
2164 while (optind < argc)
2165 handle_non_switch_argument (argv[optind++], env);
2168 if (!env && (bad || print_usage_flag))
2170 print_usage (bad);
2171 die (bad ? 2 : 0);
2175 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2176 We do this by chopping the value into a vector of words, prepending a
2177 dash to the first word if it lacks one, and passing the vector to
2178 decode_switches. */
2180 static void
2181 decode_env_switches (envar, len)
2182 char *envar;
2183 unsigned int len;
2185 char *varref = (char *) alloca (2 + len + 2);
2186 char *value, *p;
2187 int argc;
2188 char **argv;
2190 /* Get the variable's value. */
2191 varref[0] = '$';
2192 varref[1] = '(';
2193 bcopy (envar, &varref[2], len);
2194 varref[2 + len] = ')';
2195 varref[2 + len + 1] = '\0';
2196 value = variable_expand (varref);
2198 /* Skip whitespace, and check for an empty value. */
2199 value = next_token (value);
2200 len = strlen (value);
2201 if (len == 0)
2202 return;
2204 /* Allocate a vector that is definitely big enough. */
2205 argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
2207 /* Allocate a buffer to copy the value into while we split it into words
2208 and unquote it. We must use permanent storage for this because
2209 decode_switches may store pointers into the passed argument words. */
2210 p = (char *) xmalloc (2 * len);
2212 /* getopt will look at the arguments starting at ARGV[1].
2213 Prepend a spacer word. */
2214 argv[0] = 0;
2215 argc = 1;
2216 argv[argc] = p;
2217 while (*value != '\0')
2219 if (*value == '\\')
2220 ++value; /* Skip the backslash. */
2221 else if (isblank (*value))
2223 /* End of the word. */
2224 *p++ = '\0';
2225 argv[++argc] = p;
2227 ++value;
2228 while (isblank (*value));
2229 continue;
2231 *p++ = *value++;
2233 *p = '\0';
2234 argv[++argc] = 0;
2236 if (argv[1][0] != '-' && index (argv[1], '=') == 0)
2237 /* The first word doesn't start with a dash and isn't a variable
2238 definition. Add a dash and pass it along to decode_switches. We
2239 need permanent storage for this in case decode_switches saves
2240 pointers into the value. */
2241 argv[1] = concat ("-", argv[1], "");
2243 /* Parse those words. */
2244 decode_switches (argc, argv, 1);
2247 /* Quote the string IN so that it will be interpreted as a single word with
2248 no magic by the shell; if DOUBLE_DOLLARS is nonzero, also double dollar
2249 signs to avoid variable expansion in make itself. Write the result into
2250 OUT, returning the address of the next character to be written.
2251 Allocating space for OUT twice the length of IN (thrice if
2252 DOUBLE_DOLLARS is nonzero) is always sufficient. */
2254 static char *
2255 quote_as_word (out, in, double_dollars)
2256 char *out, *in;
2257 int double_dollars;
2259 while (*in != '\0')
2261 #ifdef VMS
2262 if (index ("^;'\"*?$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
2263 #else
2264 if (index ("^;'\"*?[]$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
2265 #endif
2266 *out++ = '\\';
2267 if (double_dollars && *in == '$')
2268 *out++ = '$';
2269 *out++ = *in++;
2272 return out;
2275 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2276 command switches. Include options with args if ALL is nonzero.
2277 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2279 static void
2280 define_makeflags (all, makefile)
2281 int all, makefile;
2283 static const char ref[] = "$(MAKEOVERRIDES)";
2284 static const char posixref[] = "$(-*-command-variables-*-)";
2285 register const struct command_switch *cs;
2286 char *flagstring;
2287 register char *p;
2288 unsigned int words;
2289 struct variable *v;
2291 /* We will construct a linked list of `struct flag's describing
2292 all the flags which need to go in MAKEFLAGS. Then, once we
2293 know how many there are and their lengths, we can put them all
2294 together in a string. */
2296 struct flag
2298 struct flag *next;
2299 const struct command_switch *cs;
2300 char *arg;
2302 struct flag *flags = 0;
2303 unsigned int flagslen = 0;
2304 #define ADD_FLAG(ARG, LEN) \
2305 do { \
2306 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2307 new->cs = cs; \
2308 new->arg = (ARG); \
2309 new->next = flags; \
2310 flags = new; \
2311 if (new->arg == 0) \
2312 ++flagslen; /* Just a single flag letter. */ \
2313 else \
2314 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2315 if (!short_option (cs->c)) \
2316 /* This switch has no single-letter version, so we use the long. */ \
2317 flagslen += 2 + strlen (cs->long_name); \
2318 } while (0)
2320 for (cs = switches; cs->c != '\0'; ++cs)
2321 if (cs->toenv && (!makefile || !cs->no_makefile))
2322 switch (cs->type)
2324 default:
2325 abort ();
2327 case ignore:
2328 break;
2330 case flag:
2331 case flag_off:
2332 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2333 && (cs->default_value == 0
2334 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2335 ADD_FLAG (0, 0);
2336 break;
2338 case positive_int:
2339 if (all)
2341 if ((cs->default_value != 0
2342 && (*(unsigned int *) cs->value_ptr
2343 == *(unsigned int *) cs->default_value)))
2344 break;
2345 else if (cs->noarg_value != 0
2346 && (*(unsigned int *) cs->value_ptr ==
2347 *(unsigned int *) cs->noarg_value))
2348 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2349 else if (cs->c == 'j')
2350 /* Special case for `-j'. */
2351 ADD_FLAG ("1", 1);
2352 else
2354 char *buf = (char *) alloca (30);
2355 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2356 ADD_FLAG (buf, strlen (buf));
2359 break;
2361 #ifndef NO_FLOAT
2362 case floating:
2363 if (all)
2365 if (cs->default_value != 0
2366 && (*(double *) cs->value_ptr
2367 == *(double *) cs->default_value))
2368 break;
2369 else if (cs->noarg_value != 0
2370 && (*(double *) cs->value_ptr
2371 == *(double *) cs->noarg_value))
2372 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2373 else
2375 char *buf = (char *) alloca (100);
2376 sprintf (buf, "%g", *(double *) cs->value_ptr);
2377 ADD_FLAG (buf, strlen (buf));
2380 break;
2381 #endif
2383 case string:
2384 if (all)
2386 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2387 if (sl != 0)
2389 /* Add the elements in reverse order, because
2390 all the flags get reversed below; and the order
2391 matters for some switches (like -I). */
2392 register unsigned int i = sl->idx;
2393 while (i-- > 0)
2394 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2397 break;
2400 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2402 #undef ADD_FLAG
2404 /* Construct the value in FLAGSTRING.
2405 We allocate enough space for a preceding dash and trailing null. */
2406 flagstring = (char *) alloca (1 + flagslen + 1);
2407 bzero (flagstring, 1 + flagslen + 1);
2408 p = flagstring;
2409 words = 1;
2410 *p++ = '-';
2411 while (flags != 0)
2413 /* Add the flag letter or name to the string. */
2414 if (short_option (flags->cs->c))
2415 *p++ = flags->cs->c;
2416 else
2418 if (*p != '-')
2420 *p++ = ' ';
2421 *p++ = '-';
2423 *p++ = '-';
2424 strcpy (p, flags->cs->long_name);
2425 p += strlen (p);
2427 if (flags->arg != 0)
2429 /* A flag that takes an optional argument which in this case is
2430 omitted is specified by ARG being "". We must distinguish
2431 because a following flag appended without an intervening " -"
2432 is considered the arg for the first. */
2433 if (flags->arg[0] != '\0')
2435 /* Add its argument too. */
2436 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2437 p = quote_as_word (p, flags->arg, 1);
2439 ++words;
2440 /* Write a following space and dash, for the next flag. */
2441 *p++ = ' ';
2442 *p++ = '-';
2444 else if (!short_option (flags->cs->c))
2446 ++words;
2447 /* Long options must each go in their own word,
2448 so we write the following space and dash. */
2449 *p++ = ' ';
2450 *p++ = '-';
2452 flags = flags->next;
2455 /* Define MFLAGS before appending variable definitions. */
2457 if (p == &flagstring[1])
2458 /* No flags. */
2459 flagstring[0] = '\0';
2460 else if (p[-1] == '-')
2462 /* Kill the final space and dash. */
2463 p -= 2;
2464 *p = '\0';
2466 else
2467 /* Terminate the string. */
2468 *p = '\0';
2470 /* Since MFLAGS is not parsed for flags, there is no reason to
2471 override any makefile redefinition. */
2472 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2474 if (all && command_variables != 0)
2476 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2477 command-line variable definitions. */
2479 if (p == &flagstring[1])
2480 /* No flags written, so elide the leading dash already written. */
2481 p = flagstring;
2482 else
2484 /* Separate the variables from the switches with a "--" arg. */
2485 if (p[-1] != '-')
2487 /* We did not already write a trailing " -". */
2488 *p++ = ' ';
2489 *p++ = '-';
2491 /* There is a trailing " -"; fill it out to " -- ". */
2492 *p++ = '-';
2493 *p++ = ' ';
2496 /* Copy in the string. */
2497 if (posix_pedantic)
2499 bcopy (posixref, p, sizeof posixref - 1);
2500 p += sizeof posixref - 1;
2502 else
2504 bcopy (ref, p, sizeof ref - 1);
2505 p += sizeof ref - 1;
2508 else if (p == &flagstring[1])
2510 words = 0;
2511 --p;
2513 else if (p[-1] == '-')
2514 /* Kill the final space and dash. */
2515 p -= 2;
2516 /* Terminate the string. */
2517 *p = '\0';
2519 v = define_variable ("MAKEFLAGS", 9,
2520 /* If there are switches, omit the leading dash
2521 unless it is a single long option with two
2522 leading dashes. */
2523 &flagstring[(flagstring[0] == '-'
2524 && flagstring[1] != '-')
2525 ? 1 : 0],
2526 /* This used to use o_env, but that lost when a
2527 makefile defined MAKEFLAGS. Makefiles set
2528 MAKEFLAGS to add switches, but we still want
2529 to redefine its value with the full set of
2530 switches. Of course, an override or command
2531 definition will still take precedence. */
2532 o_file, 1);
2533 if (! all)
2534 /* The first time we are called, set MAKEFLAGS to always be exported.
2535 We should not do this again on the second call, because that is
2536 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2537 v->export = v_export;
2540 /* Print version information. */
2542 static void
2543 print_version ()
2545 extern char *make_host;
2546 static int printed_version = 0;
2548 char *precede = print_data_base_flag ? "# " : "";
2550 if (printed_version)
2551 /* Do it only once. */
2552 return;
2554 printf ("%sGNU Make version %s", precede, version_string);
2555 if (remote_description != 0 && *remote_description != '\0')
2556 printf ("-%s", remote_description);
2558 printf (_(", by Richard Stallman and Roland McGrath.\n\
2559 %sBuilt for %s\n\
2560 %sCopyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99\n\
2561 %s\tFree Software Foundation, Inc.\n\
2562 %sThis is free software; see the source for copying conditions.\n\
2563 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2564 %sPARTICULAR PURPOSE.\n\n\
2565 %sReport bugs to <bug-make@gnu.org>.\n\n"),
2566 precede, make_host,
2567 precede, precede, precede, precede, precede, precede);
2569 printed_version = 1;
2571 /* Flush stdout so the user doesn't have to wait to see the
2572 version information while things are thought about. */
2573 fflush (stdout);
2576 /* Print a bunch of information about this and that. */
2578 static void
2579 print_data_base ()
2581 time_t when;
2583 when = time ((time_t *) 0);
2584 printf (_("\n# Make data base, printed on %s"), ctime (&when));
2586 print_variable_data_base ();
2587 print_dir_data_base ();
2588 print_rule_data_base ();
2589 print_file_data_base ();
2590 print_vpath_data_base ();
2592 when = time ((time_t *) 0);
2593 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
2596 /* Exit with STATUS, cleaning up as necessary. */
2598 void
2599 die (status)
2600 int status;
2602 static char dying = 0;
2604 if (!dying)
2606 int err;
2608 dying = 1;
2610 if (print_version_flag)
2611 print_version ();
2613 /* Wait for children to die. */
2614 for (err = status != 0; job_slots_used > 0; err = 0)
2615 reap_children (1, err);
2617 /* Let the remote job module clean up its state. */
2618 remote_cleanup ();
2620 /* Remove the intermediate files. */
2621 remove_intermediates (0);
2623 if (print_data_base_flag)
2624 print_data_base ();
2626 /* Try to move back to the original directory. This is essential on
2627 MS-DOS (where there is really only one process), and on Unix it
2628 puts core files in the original directory instead of the -C
2629 directory. Must wait until after remove_intermediates(), or unlinks
2630 of relative pathnames fail. */
2631 if (directory_before_chdir != 0)
2632 chdir (directory_before_chdir);
2634 log_working_directory (0);
2637 exit (status);
2640 /* Write a message indicating that we've just entered or
2641 left (according to ENTERING) the current directory. */
2643 void
2644 log_working_directory (entering)
2645 int entering;
2647 static int entered = 0;
2648 char *msg = entering ? _("Entering") : _("Leaving");
2650 /* Print nothing without the flag. Don't print the entering message
2651 again if we already have. Don't print the leaving message if we
2652 haven't printed the entering message. */
2653 if (! print_directory_flag || entering == entered)
2654 return;
2656 entered = entering;
2658 if (print_data_base_flag)
2659 fputs ("# ", stdout);
2661 if (makelevel == 0)
2662 printf ("%s: %s ", program, msg);
2663 else
2664 printf ("%s[%u]: %s ", program, makelevel, msg);
2666 if (starting_directory == 0)
2667 puts (_("an unknown directory"));
2668 else
2669 printf (_("directory `%s'\n"), starting_directory);