Update the test template. A few fixes in run_make_test().
[make/kirr.git] / main.c
blob5cb387ffd2bbe42da0948a975ed77e63bb83b720
1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1994, 1995, 1996, 1997, 1998, 1999,
3 2002, 2003 Free Software Foundation, Inc.
4 This file is part of GNU Make.
6 GNU Make is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Make is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Make; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19 MA 02111-1307, USA. */
21 #include "make.h"
22 #include "dep.h"
23 #include "filedef.h"
24 #include "variable.h"
25 #include "job.h"
26 #include "commands.h"
27 #include "rule.h"
28 #include "debug.h"
29 #include "getopt.h"
31 #include <assert.h>
32 #ifdef _AMIGA
33 # include <dos/dos.h>
34 # include <proto/dos.h>
35 #endif
36 #ifdef WINDOWS32
37 #include <windows.h>
38 #include <io.h>
39 #include "pathstuff.h"
40 #endif
41 #ifdef __EMX__
42 # include <sys/types.h>
43 # include <sys/wait.h>
44 #endif
45 #ifdef HAVE_FCNTL_H
46 # include <fcntl.h>
47 #endif
49 #ifdef _AMIGA
50 int __stack = 20000; /* Make sure we have 20K of stack space */
51 #endif
53 extern void init_dir PARAMS ((void));
54 extern void remote_setup PARAMS ((void));
55 extern void remote_cleanup PARAMS ((void));
56 extern RETSIGTYPE fatal_error_signal PARAMS ((int sig));
58 extern void print_variable_data_base PARAMS ((void));
59 extern void print_dir_data_base PARAMS ((void));
60 extern void print_rule_data_base PARAMS ((void));
61 extern void print_file_data_base PARAMS ((void));
62 extern void print_vpath_data_base PARAMS ((void));
64 #if defined HAVE_WAITPID || defined HAVE_WAIT3
65 # define HAVE_WAIT_NOHANG
66 #endif
68 #ifndef HAVE_UNISTD_H
69 extern int chdir ();
70 #endif
71 #ifndef STDC_HEADERS
72 # ifndef sun /* Sun has an incorrect decl in a header. */
73 extern void exit PARAMS ((int)) __attribute__ ((noreturn));
74 # endif
75 extern double atof ();
76 #endif
78 static void print_data_base PARAMS ((void));
79 static void print_version PARAMS ((void));
80 static void decode_switches PARAMS ((int argc, char **argv, int env));
81 static void decode_env_switches PARAMS ((char *envar, unsigned int len));
82 static void define_makeflags PARAMS ((int all, int makefile));
83 static char *quote_for_env PARAMS ((char *out, char *in));
84 static void initialize_global_hash_tables PARAMS ((void));
87 /* The structure that describes an accepted command switch. */
89 struct command_switch
91 int c; /* The switch character. */
93 enum /* Type of the value. */
95 flag, /* Turn int flag on. */
96 flag_off, /* Turn int flag off. */
97 string, /* One string per switch. */
98 positive_int, /* A positive integer. */
99 floating, /* A floating-point number (double). */
100 ignore /* Ignored. */
101 } type;
103 char *value_ptr; /* Pointer to the value-holding variable. */
105 unsigned int env:1; /* Can come from MAKEFLAGS. */
106 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
107 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
109 char *noarg_value; /* Pointer to value used if no argument is given. */
110 char *default_value;/* Pointer to default value. */
112 char *long_name; /* Long option name. */
115 /* True if C is a switch value that corresponds to a short option. */
117 #define short_option(c) ((c) <= CHAR_MAX)
119 /* The structure used to hold the list of strings given
120 in command switches of a type that takes string arguments. */
122 struct stringlist
124 char **list; /* Nil-terminated list of strings. */
125 unsigned int idx; /* Index into above. */
126 unsigned int max; /* Number of pointers allocated. */
130 /* The recognized command switches. */
132 /* Nonzero means do not print commands to be executed (-s). */
134 int silent_flag;
136 /* Nonzero means just touch the files
137 that would appear to need remaking (-t) */
139 int touch_flag;
141 /* Nonzero means just print what commands would need to be executed,
142 don't actually execute them (-n). */
144 int just_print_flag;
146 /* Print debugging info (--debug). */
148 static struct stringlist *db_flags;
149 static int debug_flag = 0;
151 int db_level = 0;
153 #ifdef WINDOWS32
154 /* Suspend make in main for a short time to allow debugger to attach */
156 int suspend_flag = 0;
157 #endif
159 /* Environment variables override makefile definitions. */
161 int env_overrides = 0;
163 /* Nonzero means ignore status codes returned by commands
164 executed to remake files. Just treat them all as successful (-i). */
166 int ignore_errors_flag = 0;
168 /* Nonzero means don't remake anything, just print the data base
169 that results from reading the makefile (-p). */
171 int print_data_base_flag = 0;
173 /* Nonzero means don't remake anything; just return a nonzero status
174 if the specified targets are not up to date (-q). */
176 int question_flag = 0;
178 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
180 int no_builtin_rules_flag = 0;
181 int no_builtin_variables_flag = 0;
183 /* Nonzero means keep going even if remaking some file fails (-k). */
185 int keep_going_flag;
186 int default_keep_going_flag = 0;
188 /* Nonzero means print directory before starting and when done (-w). */
190 int print_directory_flag = 0;
192 /* Nonzero means ignore print_directory_flag and never print the directory.
193 This is necessary because print_directory_flag is set implicitly. */
195 int inhibit_print_directory_flag = 0;
197 /* Nonzero means print version information. */
199 int print_version_flag = 0;
201 /* List of makefiles given with -f switches. */
203 static struct stringlist *makefiles = 0;
205 /* Number of job slots (commands that can be run at once). */
207 unsigned int job_slots = 1;
208 unsigned int default_job_slots = 1;
210 /* Value of job_slots that means no limit. */
212 static unsigned int inf_jobs = 0;
214 /* File descriptors for the jobs pipe. */
216 static struct stringlist *jobserver_fds = 0;
218 int job_fds[2] = { -1, -1 };
219 int job_rfd = -1;
221 /* Maximum load average at which multiple jobs will be run.
222 Negative values mean unlimited, while zero means limit to
223 zero load (which could be useful to start infinite jobs remotely
224 but one at a time locally). */
225 #ifndef NO_FLOAT
226 double max_load_average = -1.0;
227 double default_load_average = -1.0;
228 #else
229 int max_load_average = -1;
230 int default_load_average = -1;
231 #endif
233 /* List of directories given with -C switches. */
235 static struct stringlist *directories = 0;
237 /* List of include directories given with -I switches. */
239 static struct stringlist *include_directories = 0;
241 /* List of files given with -o switches. */
243 static struct stringlist *old_files = 0;
245 /* List of files given with -W switches. */
247 static struct stringlist *new_files = 0;
249 /* If nonzero, we should just print usage and exit. */
251 static int print_usage_flag = 0;
253 /* If nonzero, we should print a warning message
254 for each reference to an undefined variable. */
256 int warn_undefined_variables_flag;
258 /* If nonzero, always build all targets, regardless of whether
259 they appear out of date or not. */
261 int always_make_flag = 0;
263 /* If nonzero, we're in the "try to rebuild makefiles" phase. */
265 int rebuilding_makefiles = 0;
268 /* The usage output. We write it this way to make life easier for the
269 translators, especially those trying to translate to right-to-left
270 languages like Hebrew. */
272 static const char *const usage[] =
274 N_("Options:\n"),
275 N_("\
276 -b, -m Ignored for compatibility.\n"),
277 N_("\
278 -B, --always-make Unconditionally make all targets.\n"),
279 N_("\
280 -C DIRECTORY, --directory=DIRECTORY\n\
281 Change to DIRECTORY before doing anything.\n"),
282 N_("\
283 -d Print lots of debugging information.\n"),
284 N_("\
285 --debug[=FLAGS] Print various types of debugging information.\n"),
286 N_("\
287 -e, --environment-overrides\n\
288 Environment variables override makefiles.\n"),
289 N_("\
290 -f FILE, --file=FILE, --makefile=FILE\n\
291 Read FILE as a makefile.\n"),
292 N_("\
293 -h, --help Print this message and exit.\n"),
294 N_("\
295 -i, --ignore-errors Ignore errors from commands.\n"),
296 N_("\
297 -I DIRECTORY, --include-dir=DIRECTORY\n\
298 Search DIRECTORY for included makefiles.\n"),
299 N_("\
300 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
301 N_("\
302 -k, --keep-going Keep going when some targets can't be made.\n"),
303 N_("\
304 -l [N], --load-average[=N], --max-load[=N]\n\
305 Don't start multiple jobs unless load is below N.\n"),
306 N_("\
307 -n, --just-print, --dry-run, --recon\n\
308 Don't actually run any commands; just print them.\n"),
309 N_("\
310 -o FILE, --old-file=FILE, --assume-old=FILE\n\
311 Consider FILE to be very old and don't remake it.\n"),
312 N_("\
313 -p, --print-data-base Print make's internal database.\n"),
314 N_("\
315 -q, --question Run no commands; exit status says if up to date.\n"),
316 N_("\
317 -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
318 N_("\
319 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
320 N_("\
321 -s, --silent, --quiet Don't echo commands.\n"),
322 N_("\
323 -S, --no-keep-going, --stop\n\
324 Turns off -k.\n"),
325 N_("\
326 -t, --touch Touch targets instead of remaking them.\n"),
327 N_("\
328 -v, --version Print the version number of make and exit.\n"),
329 N_("\
330 -w, --print-directory Print the current directory.\n"),
331 N_("\
332 --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
333 N_("\
334 -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
335 Consider FILE to be infinitely new.\n"),
336 N_("\
337 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
338 NULL
341 /* The table of command switches. */
343 static const struct command_switch switches[] =
345 { 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
346 { 'B', flag, (char *) &always_make_flag, 1, 1, 0, 0, 0, "always-make" },
347 { 'C', string, (char *) &directories, 0, 0, 0, 0, 0, "directory" },
348 { 'd', flag, (char *) &debug_flag, 1, 1, 0, 0, 0, 0 },
349 { CHAR_MAX+1, string, (char *) &db_flags, 1, 1, 0, "basic", 0, "debug" },
350 #ifdef WINDOWS32
351 { 'D', flag, (char *) &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
352 #endif
353 { 'e', flag, (char *) &env_overrides, 1, 1, 0, 0, 0,
354 "environment-overrides", },
355 { 'f', string, (char *) &makefiles, 0, 0, 0, 0, 0, "file" },
356 { 'h', flag, (char *) &print_usage_flag, 0, 0, 0, 0, 0, "help" },
357 { 'i', flag, (char *) &ignore_errors_flag, 1, 1, 0, 0, 0,
358 "ignore-errors" },
359 { 'I', string, (char *) &include_directories, 1, 1, 0, 0, 0,
360 "include-dir" },
361 { 'j', positive_int, (char *) &job_slots, 1, 1, 0, (char *) &inf_jobs,
362 (char *) &default_job_slots, "jobs" },
363 { CHAR_MAX+2, string, (char *) &jobserver_fds, 1, 1, 0, 0, 0,
364 "jobserver-fds" },
365 { 'k', flag, (char *) &keep_going_flag, 1, 1, 0, 0,
366 (char *) &default_keep_going_flag, "keep-going" },
367 #ifndef NO_FLOAT
368 { 'l', floating, (char *) &max_load_average, 1, 1, 0,
369 (char *) &default_load_average, (char *) &default_load_average,
370 "load-average" },
371 #else
372 { 'l', positive_int, (char *) &max_load_average, 1, 1, 0,
373 (char *) &default_load_average, (char *) &default_load_average,
374 "load-average" },
375 #endif
376 { 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
377 { 'n', flag, (char *) &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
378 { 'o', string, (char *) &old_files, 0, 0, 0, 0, 0, "old-file" },
379 { 'p', flag, (char *) &print_data_base_flag, 1, 1, 0, 0, 0,
380 "print-data-base" },
381 { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0, "question" },
382 { 'r', flag, (char *) &no_builtin_rules_flag, 1, 1, 0, 0, 0,
383 "no-builtin-rules" },
384 { 'R', flag, (char *) &no_builtin_variables_flag, 1, 1, 0, 0, 0,
385 "no-builtin-variables" },
386 { 's', flag, (char *) &silent_flag, 1, 1, 0, 0, 0, "silent" },
387 { 'S', flag_off, (char *) &keep_going_flag, 1, 1, 0, 0,
388 (char *) &default_keep_going_flag, "no-keep-going" },
389 { 't', flag, (char *) &touch_flag, 1, 1, 1, 0, 0, "touch" },
390 { 'v', flag, (char *) &print_version_flag, 1, 1, 0, 0, 0, "version" },
391 { 'w', flag, (char *) &print_directory_flag, 1, 1, 0, 0, 0,
392 "print-directory" },
393 { CHAR_MAX+3, flag, (char *) &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
394 "no-print-directory" },
395 { 'W', string, (char *) &new_files, 0, 0, 0, 0, 0, "what-if" },
396 { CHAR_MAX+4, flag, (char *) &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
397 "warn-undefined-variables" },
398 { 0 }
401 /* Secondary long names for options. */
403 static struct option long_option_aliases[] =
405 { "quiet", no_argument, 0, 's' },
406 { "stop", no_argument, 0, 'S' },
407 { "new-file", required_argument, 0, 'W' },
408 { "assume-new", required_argument, 0, 'W' },
409 { "assume-old", required_argument, 0, 'o' },
410 { "max-load", optional_argument, 0, 'l' },
411 { "dry-run", no_argument, 0, 'n' },
412 { "recon", no_argument, 0, 'n' },
413 { "makefile", required_argument, 0, 'f' },
416 /* List of goal targets. */
418 static struct dep *goals, *lastgoal;
420 /* List of variables which were defined on the command line
421 (or, equivalently, in MAKEFLAGS). */
423 struct command_variable
425 struct command_variable *next;
426 struct variable *variable;
428 static struct command_variable *command_variables;
430 /* The name we were invoked with. */
432 char *program;
434 /* Our current directory before processing any -C options. */
436 char *directory_before_chdir;
438 /* Our current directory after processing all -C options. */
440 char *starting_directory;
442 /* Value of the MAKELEVEL variable at startup (or 0). */
444 unsigned int makelevel;
446 /* First file defined in the makefile whose name does not
447 start with `.'. This is the default to remake if the
448 command line does not specify. */
450 struct file *default_goal_file;
452 /* Pointer to structure for the file .DEFAULT
453 whose commands are used for any file that has none of its own.
454 This is zero if the makefiles do not define .DEFAULT. */
456 struct file *default_file;
458 /* Nonzero if we have seen the magic `.POSIX' target.
459 This turns on pedantic compliance with POSIX.2. */
461 int posix_pedantic;
463 /* Nonzero if we have seen the `.NOTPARALLEL' target.
464 This turns off parallel builds for this invocation of make. */
466 int not_parallel;
468 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
469 print one warning about it during the run, and (b) we can print a final
470 warning at the end of the run. */
472 int clock_skew_detected;
474 /* Mask of signals that are being caught with fatal_error_signal. */
476 #ifdef POSIX
477 sigset_t fatal_signal_set;
478 #else
479 # ifdef HAVE_SIGSETMASK
480 int fatal_signal_mask;
481 # endif
482 #endif
484 #if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
485 # if !defined HAVE_SIGACTION
486 # define bsd_signal signal
487 # else
488 typedef RETSIGTYPE (*bsd_signal_ret_t) ();
490 static bsd_signal_ret_t
491 bsd_signal (int sig, bsd_signal_ret_t func)
493 struct sigaction act, oact;
494 act.sa_handler = func;
495 act.sa_flags = SA_RESTART;
496 sigemptyset (&act.sa_mask);
497 sigaddset (&act.sa_mask, sig);
498 if (sigaction (sig, &act, &oact) != 0)
499 return SIG_ERR;
500 return oact.sa_handler;
502 # endif
503 #endif
505 static void
506 initialize_global_hash_tables (void)
508 init_hash_global_variable_set ();
509 init_hash_files ();
510 hash_init_directories ();
511 hash_init_function_table ();
514 static struct file *
515 enter_command_line_file (char *name)
517 if (name[0] == '\0')
518 fatal (NILF, _("empty string invalid as file name"));
520 if (name[0] == '~')
522 char *expanded = tilde_expand (name);
523 if (expanded != 0)
524 name = expanded; /* Memory leak; I don't care. */
527 /* This is also done in parse_file_seq, so this is redundant
528 for names read from makefiles. It is here for names passed
529 on the command line. */
530 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
532 name += 2;
533 while (*name == '/')
534 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
535 ++name;
538 if (*name == '\0')
540 /* It was all slashes! Move back to the dot and truncate
541 it after the first slash, so it becomes just "./". */
543 --name;
544 while (name[0] != '.');
545 name[2] = '\0';
548 return enter_file (xstrdup (name));
551 /* Toggle -d on receipt of SIGUSR1. */
553 #ifdef SIGUSR1
554 static RETSIGTYPE
555 debug_signal_handler (int sig UNUSED)
557 db_level = db_level ? DB_NONE : DB_BASIC;
559 #endif
561 static void
562 decode_debug_flags (void)
564 char **pp;
566 if (debug_flag)
567 db_level = DB_ALL;
569 if (!db_flags)
570 return;
572 for (pp=db_flags->list; *pp; ++pp)
574 const char *p = *pp;
576 while (1)
578 switch (tolower (p[0]))
580 case 'a':
581 db_level |= DB_ALL;
582 break;
583 case 'b':
584 db_level |= DB_BASIC;
585 break;
586 case 'i':
587 db_level |= DB_BASIC | DB_IMPLICIT;
588 break;
589 case 'j':
590 db_level |= DB_JOBS;
591 break;
592 case 'm':
593 db_level |= DB_BASIC | DB_MAKEFILES;
594 break;
595 case 'v':
596 db_level |= DB_BASIC | DB_VERBOSE;
597 break;
598 default:
599 fatal (NILF, _("unknown debug level specification `%s'"), p);
602 while (*(++p) != '\0')
603 if (*p == ',' || *p == ' ')
604 break;
606 if (*p == '\0')
607 break;
609 ++p;
614 #ifdef WINDOWS32
616 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
617 * exception and print it to stderr instead.
619 * If ! DB_VERBOSE, just print a simple message and exit.
620 * If DB_VERBOSE, print a more verbose message.
621 * If compiled for DEBUG, let exception pass through to GUI so that
622 * debuggers can attach.
624 LONG WINAPI
625 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
627 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
628 LPSTR cmdline = GetCommandLine();
629 LPSTR prg = strtok(cmdline, " ");
630 CHAR errmsg[1024];
631 #ifdef USE_EVENT_LOG
632 HANDLE hEventSource;
633 LPTSTR lpszStrings[1];
634 #endif
636 if (! ISDB (DB_VERBOSE))
638 sprintf(errmsg,
639 _("%s: Interrupt/Exception caught (code = 0x%x, addr = 0x%x)\n"),
640 prg, exrec->ExceptionCode, exrec->ExceptionAddress);
641 fprintf(stderr, errmsg);
642 exit(255);
645 sprintf(errmsg,
646 _("\nUnhandled exception filter called from program %s\nExceptionCode = %x\nExceptionFlags = %x\nExceptionAddress = %x\n"),
647 prg, exrec->ExceptionCode, exrec->ExceptionFlags,
648 exrec->ExceptionAddress);
650 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
651 && exrec->NumberParameters >= 2)
652 sprintf(&errmsg[strlen(errmsg)],
653 (exrec->ExceptionInformation[0]
654 ? _("Access violation: write operation at address %x\n")
655 : _("Access violation: read operation at address %x\n")),
656 exrec->ExceptionInformation[1]);
658 /* turn this on if we want to put stuff in the event log too */
659 #ifdef USE_EVENT_LOG
660 hEventSource = RegisterEventSource(NULL, "GNU Make");
661 lpszStrings[0] = errmsg;
663 if (hEventSource != NULL)
665 ReportEvent(hEventSource, /* handle of event source */
666 EVENTLOG_ERROR_TYPE, /* event type */
667 0, /* event category */
668 0, /* event ID */
669 NULL, /* current user's SID */
670 1, /* strings in lpszStrings */
671 0, /* no bytes of raw data */
672 lpszStrings, /* array of error strings */
673 NULL); /* no raw data */
675 (VOID) DeregisterEventSource(hEventSource);
677 #endif
679 /* Write the error to stderr too */
680 fprintf(stderr, errmsg);
682 #ifdef DEBUG
683 return EXCEPTION_CONTINUE_SEARCH;
684 #else
685 exit(255);
686 return (255); /* not reached */
687 #endif
691 * On WIN32 systems we don't have the luxury of a /bin directory that
692 * is mapped globally to every drive mounted to the system. Since make could
693 * be invoked from any drive, and we don't want to propogate /bin/sh
694 * to every single drive. Allow ourselves a chance to search for
695 * a value for default shell here (if the default path does not exist).
699 find_and_set_default_shell (char *token)
701 int sh_found = 0;
702 char *search_token;
703 char *tokend;
704 PATH_VAR(sh_path);
705 extern char *default_shell;
707 if (!token)
708 search_token = default_shell;
709 else
710 search_token = token;
713 /* If the user explicitly requests the DOS cmd shell, obey that request.
714 However, make sure that's what they really want by requiring the value
715 of SHELL either equal, or have a final path element of, "cmd" or
716 "cmd.exe" case-insensitive. */
717 tokend = search_token + strlen (search_token) - 3;
718 if (((tokend == search_token
719 || (tokend > search_token
720 && (tokend[-1] == '/' || tokend[-1] == '\\')))
721 && strcmpi (tokend, "cmd"))
722 || ((tokend - 4 == search_token
723 || (tokend - 4 > search_token
724 && (tokend[-5] == '/' || tokend[-5] == '\\')))
725 && strcmpi (tokend - 4, "cmd.exe"))) {
726 batch_mode_shell = 1;
727 unixy_shell = 0;
728 sh_found = 0;
729 } else if (!no_default_sh_exe &&
730 (token == NULL || !strcmp (search_token, default_shell))) {
731 /* no new information, path already set or known */
732 sh_found = 1;
733 } else if (file_exists_p(search_token)) {
734 /* search token path was found */
735 sprintf(sh_path, "%s", search_token);
736 default_shell = xstrdup(w32ify(sh_path,0));
737 DB (DB_VERBOSE,
738 (_("find_and_set_shell setting default_shell = %s\n"), default_shell));
739 sh_found = 1;
740 } else {
741 char *p;
742 struct variable *v = lookup_variable ("Path", 4);
745 * Search Path for shell
747 if (v && v->value) {
748 char *ep;
750 p = v->value;
751 ep = strchr(p, PATH_SEPARATOR_CHAR);
753 while (ep && *ep) {
754 *ep = '\0';
756 if (dir_file_exists_p(p, search_token)) {
757 sprintf(sh_path, "%s/%s", p, search_token);
758 default_shell = xstrdup(w32ify(sh_path,0));
759 sh_found = 1;
760 *ep = PATH_SEPARATOR_CHAR;
762 /* terminate loop */
763 p += strlen(p);
764 } else {
765 *ep = PATH_SEPARATOR_CHAR;
766 p = ++ep;
769 ep = strchr(p, PATH_SEPARATOR_CHAR);
772 /* be sure to check last element of Path */
773 if (p && *p && dir_file_exists_p(p, search_token)) {
774 sprintf(sh_path, "%s/%s", p, search_token);
775 default_shell = xstrdup(w32ify(sh_path,0));
776 sh_found = 1;
779 if (sh_found)
780 DB (DB_VERBOSE,
781 (_("find_and_set_shell path search set default_shell = %s\n"),
782 default_shell));
786 /* naive test */
787 if (!unixy_shell && sh_found &&
788 (strstr(default_shell, "sh") || strstr(default_shell, "SH"))) {
789 unixy_shell = 1;
790 batch_mode_shell = 0;
793 #ifdef BATCH_MODE_ONLY_SHELL
794 batch_mode_shell = 1;
795 #endif
797 return (sh_found);
799 #endif /* WINDOWS32 */
801 #ifdef __MSDOS__
803 static void
804 msdos_return_to_initial_directory (void)
806 if (directory_before_chdir)
807 chdir (directory_before_chdir);
809 #endif
811 extern char *mktemp PARAMS ((char *template));
812 extern int mkstemp PARAMS ((char *template));
814 FILE *
815 open_tmpfile(char **name, const char *template)
817 int fd;
819 #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
820 # define TEMPLATE_LEN strlen (template)
821 #else
822 # define TEMPLATE_LEN L_tmpnam
823 #endif
824 *name = xmalloc (TEMPLATE_LEN + 1);
825 strcpy (*name, template);
827 #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
828 /* It's safest to use mkstemp(), if we can. */
829 fd = mkstemp (*name);
830 if (fd == -1)
831 return 0;
832 return fdopen (fd, "w");
833 #else
834 # ifdef HAVE_MKTEMP
835 (void) mktemp (*name);
836 # else
837 (void) tmpnam (*name);
838 # endif
840 # ifdef HAVE_FDOPEN
841 /* Can't use mkstemp(), but guard against a race condition. */
842 fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
843 if (fd == -1)
844 return 0;
845 return fdopen (fd, "w");
846 # else
847 /* Not secure, but what can we do? */
848 return fopen (*name, "w");
849 # endif
850 #endif
854 #ifdef _AMIGA
856 main (int argc, char **argv)
857 #else
859 main (int argc, char **argv, char **envp)
860 #endif
862 static char *stdin_nm = 0;
863 struct file *f;
864 int i;
865 int makefile_status = MAKE_SUCCESS;
866 char **p;
867 struct dep *read_makefiles;
868 PATH_VAR (current_directory);
869 #ifdef WINDOWS32
870 char *unix_path = NULL;
871 char *windows32_path = NULL;
873 SetUnhandledExceptionFilter(handle_runtime_exceptions);
875 /* start off assuming we have no shell */
876 unixy_shell = 0;
877 no_default_sh_exe = 1;
878 #endif
880 /* Needed for OS/2 */
881 initialize_main(&argc, &argv);
883 default_goal_file = 0;
884 reading_file = 0;
886 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
887 /* Request the most powerful version of `system', to
888 make up for the dumb default shell. */
889 __system_flags = (__system_redirect
890 | __system_use_shell
891 | __system_allow_multiple_cmds
892 | __system_allow_long_cmds
893 | __system_handle_null_commands
894 | __system_emulate_chdir);
896 #endif
898 /* Set up gettext/internationalization support. */
899 setlocale (LC_ALL, "");
900 bindtextdomain (PACKAGE, LOCALEDIR);
901 textdomain (PACKAGE);
903 #ifdef POSIX
904 sigemptyset (&fatal_signal_set);
905 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
906 #else
907 #ifdef HAVE_SIGSETMASK
908 fatal_signal_mask = 0;
909 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
910 #else
911 #define ADD_SIG(sig)
912 #endif
913 #endif
915 #define FATAL_SIG(sig) \
916 if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
917 bsd_signal (sig, SIG_IGN); \
918 else \
919 ADD_SIG (sig);
921 #ifdef SIGHUP
922 FATAL_SIG (SIGHUP);
923 #endif
924 #ifdef SIGQUIT
925 FATAL_SIG (SIGQUIT);
926 #endif
927 FATAL_SIG (SIGINT);
928 FATAL_SIG (SIGTERM);
930 #ifdef __MSDOS__
931 /* Windows 9X delivers FP exceptions in child programs to their
932 parent! We don't want Make to die when a child divides by zero,
933 so we work around that lossage by catching SIGFPE. */
934 FATAL_SIG (SIGFPE);
935 #endif
937 #ifdef SIGDANGER
938 FATAL_SIG (SIGDANGER);
939 #endif
940 #ifdef SIGXCPU
941 FATAL_SIG (SIGXCPU);
942 #endif
943 #ifdef SIGXFSZ
944 FATAL_SIG (SIGXFSZ);
945 #endif
947 #undef FATAL_SIG
949 /* Do not ignore the child-death signal. This must be done before
950 any children could possibly be created; otherwise, the wait
951 functions won't work on systems with the SVR4 ECHILD brain
952 damage, if our invoker is ignoring this signal. */
954 #ifdef HAVE_WAIT_NOHANG
955 # if defined SIGCHLD
956 (void) bsd_signal (SIGCHLD, SIG_DFL);
957 # endif
958 # if defined SIGCLD && SIGCLD != SIGCHLD
959 (void) bsd_signal (SIGCLD, SIG_DFL);
960 # endif
961 #endif
963 /* Make sure stdout is line-buffered. */
965 #ifdef HAVE_SETVBUF
966 # ifdef SETVBUF_REVERSED
967 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
968 # else /* setvbuf not reversed. */
969 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
970 setvbuf (stdout, (char *) 0, _IOLBF, BUFSIZ);
971 # endif /* setvbuf reversed. */
972 #elif HAVE_SETLINEBUF
973 setlinebuf (stdout);
974 #endif /* setlinebuf missing. */
976 /* Figure out where this program lives. */
978 if (argv[0] == 0)
979 argv[0] = "";
980 if (argv[0][0] == '\0')
981 program = "make";
982 else
984 #ifdef VMS
985 program = strrchr (argv[0], ']');
986 #else
987 program = strrchr (argv[0], '/');
988 #endif
989 #if defined(__MSDOS__) || defined(__EMX__)
990 if (program == 0)
991 program = strrchr (argv[0], '\\');
992 else
994 /* Some weird environments might pass us argv[0] with
995 both kinds of slashes; we must find the rightmost. */
996 char *p = strrchr (argv[0], '\\');
997 if (p && p > program)
998 program = p;
1000 if (program == 0 && argv[0][1] == ':')
1001 program = argv[0] + 1;
1002 #endif
1003 if (program == 0)
1004 program = argv[0];
1005 else
1006 ++program;
1009 /* Set up to access user data (files). */
1010 user_access ();
1012 initialize_global_hash_tables ();
1014 /* Figure out where we are. */
1016 #ifdef WINDOWS32
1017 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1018 #else
1019 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1020 #endif
1022 #ifdef HAVE_GETCWD
1023 perror_with_name ("getcwd: ", "");
1024 #else
1025 error (NILF, "getwd: %s", current_directory);
1026 #endif
1027 current_directory[0] = '\0';
1028 directory_before_chdir = 0;
1030 else
1031 directory_before_chdir = xstrdup (current_directory);
1032 #ifdef __MSDOS__
1033 /* Make sure we will return to the initial directory, come what may. */
1034 atexit (msdos_return_to_initial_directory);
1035 #endif
1037 /* Initialize the special variables. */
1038 define_variable (".VARIABLES", 10, "", o_default, 0)->special = 1;
1039 /* define_variable (".TARGETS", 8, "", o_default, 0); */
1041 /* Read in variables from the environment. It is important that this be
1042 done before $(MAKE) is figured out so its definitions will not be
1043 from the environment. */
1045 #ifndef _AMIGA
1046 for (i = 0; envp[i] != 0; ++i)
1048 int do_not_define;
1049 register char *ep = envp[i];
1051 /* by default, everything gets defined and exported */
1052 do_not_define = 0;
1054 while (*ep != '=')
1055 ++ep;
1056 #ifdef WINDOWS32
1057 if (!unix_path && strneq(envp[i], "PATH=", 5))
1058 unix_path = ep+1;
1059 else if (!windows32_path && !strnicmp(envp[i], "Path=", 5)) {
1060 do_not_define = 1; /* it gets defined after loop exits */
1061 windows32_path = ep+1;
1063 #endif
1064 /* The result of pointer arithmetic is cast to unsigned int for
1065 machines where ptrdiff_t is a different size that doesn't widen
1066 the same. */
1067 if (!do_not_define)
1068 define_variable (envp[i], (unsigned int) (ep - envp[i]),
1069 ep + 1, o_env, 1)
1070 /* Force exportation of every variable culled from the environment.
1071 We used to rely on target_environment's v_default code to do this.
1072 But that does not work for the case where an environment variable
1073 is redefined in a makefile with `override'; it should then still
1074 be exported, because it was originally in the environment. */
1075 ->export = v_export;
1077 #ifdef WINDOWS32
1079 * Make sure that this particular spelling of 'Path' is available
1081 if (windows32_path)
1082 define_variable("Path", 4, windows32_path, o_env, 1)->export = v_export;
1083 else if (unix_path)
1084 define_variable("Path", 4, unix_path, o_env, 1)->export = v_export;
1085 else
1086 define_variable("Path", 4, "", o_env, 1)->export = v_export;
1089 * PATH defaults to Path iff PATH not found and Path is found.
1091 if (!unix_path && windows32_path)
1092 define_variable("PATH", 4, windows32_path, o_env, 1)->export = v_export;
1093 #endif
1094 #else /* For Amiga, read the ENV: device, ignoring all dirs */
1096 BPTR env, file, old;
1097 char buffer[1024];
1098 int len;
1099 __aligned struct FileInfoBlock fib;
1101 env = Lock ("ENV:", ACCESS_READ);
1102 if (env)
1104 old = CurrentDir (DupLock(env));
1105 Examine (env, &fib);
1107 while (ExNext (env, &fib))
1109 if (fib.fib_DirEntryType < 0) /* File */
1111 /* Define an empty variable. It will be filled in
1112 variable_lookup(). Makes startup quite a bit
1113 faster. */
1114 define_variable (fib.fib_FileName,
1115 strlen (fib.fib_FileName),
1116 "", o_env, 1)->export = v_export;
1119 UnLock (env);
1120 UnLock(CurrentDir(old));
1123 #endif
1125 /* Decode the switches. */
1127 decode_env_switches ("MAKEFLAGS", 9);
1128 #if 0
1129 /* People write things like:
1130 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
1131 and we set the -p, -i and -e switches. Doesn't seem quite right. */
1132 decode_env_switches ("MFLAGS", 6);
1133 #endif
1134 decode_switches (argc, argv, 0);
1135 #ifdef WINDOWS32
1136 if (suspend_flag) {
1137 fprintf(stderr, "%s (pid = %d)\n", argv[0], GetCurrentProcessId());
1138 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
1139 Sleep(30 * 1000);
1140 fprintf(stderr, _("done sleep(30). Continuing.\n"));
1142 #endif
1144 decode_debug_flags ();
1146 /* Print version information. */
1148 if (print_version_flag || print_data_base_flag || db_level)
1149 print_version ();
1151 /* `make --version' is supposed to just print the version and exit. */
1152 if (print_version_flag)
1153 die (0);
1155 #ifndef VMS
1156 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
1157 (If it is a relative pathname with a slash, prepend our directory name
1158 so the result will run the same program regardless of the current dir.
1159 If it is a name with no slash, we can only hope that PATH did not
1160 find it in the current directory.) */
1161 #ifdef WINDOWS32
1163 * Convert from backslashes to forward slashes for
1164 * programs like sh which don't like them. Shouldn't
1165 * matter if the path is one way or the other for
1166 * CreateProcess().
1168 if (strpbrk(argv[0], "/:\\") ||
1169 strstr(argv[0], "..") ||
1170 strneq(argv[0], "//", 2))
1171 argv[0] = xstrdup(w32ify(argv[0],1));
1172 #else /* WINDOWS32 */
1173 #if defined (__MSDOS__) || defined (__EMX__)
1174 if (strchr (argv[0], '\\'))
1176 char *p;
1178 argv[0] = xstrdup (argv[0]);
1179 for (p = argv[0]; *p; p++)
1180 if (*p == '\\')
1181 *p = '/';
1183 /* If argv[0] is not in absolute form, prepend the current
1184 directory. This can happen when Make is invoked by another DJGPP
1185 program that uses a non-absolute name. */
1186 if (current_directory[0] != '\0'
1187 && argv[0] != 0
1188 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':'))
1189 #ifdef __EMX__
1190 /* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
1191 && (strchr (argv[0], '/') != 0 || strchr (argv[0], '\\') != 0)
1192 # endif
1194 argv[0] = concat (current_directory, "/", argv[0]);
1195 #else /* !__MSDOS__ */
1196 if (current_directory[0] != '\0'
1197 && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0)
1198 argv[0] = concat (current_directory, "/", argv[0]);
1199 #endif /* !__MSDOS__ */
1200 #endif /* WINDOWS32 */
1201 #endif
1203 /* The extra indirection through $(MAKE_COMMAND) is done
1204 for hysterical raisins. */
1205 (void) define_variable ("MAKE_COMMAND", 12, argv[0], o_default, 0);
1206 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default, 1);
1208 if (command_variables != 0)
1210 struct command_variable *cv;
1211 struct variable *v;
1212 unsigned int len = 0;
1213 char *value, *p;
1215 /* Figure out how much space will be taken up by the command-line
1216 variable definitions. */
1217 for (cv = command_variables; cv != 0; cv = cv->next)
1219 v = cv->variable;
1220 len += 2 * strlen (v->name);
1221 if (! v->recursive)
1222 ++len;
1223 ++len;
1224 len += 2 * strlen (v->value);
1225 ++len;
1228 /* Now allocate a buffer big enough and fill it. */
1229 p = value = (char *) alloca (len);
1230 for (cv = command_variables; cv != 0; cv = cv->next)
1232 v = cv->variable;
1233 p = quote_for_env (p, v->name);
1234 if (! v->recursive)
1235 *p++ = ':';
1236 *p++ = '=';
1237 p = quote_for_env (p, v->value);
1238 *p++ = ' ';
1240 p[-1] = '\0'; /* Kill the final space and terminate. */
1242 /* Define an unchangeable variable with a name that no POSIX.2
1243 makefile could validly use for its own variable. */
1244 (void) define_variable ("-*-command-variables-*-", 23,
1245 value, o_automatic, 0);
1247 /* Define the variable; this will not override any user definition.
1248 Normally a reference to this variable is written into the value of
1249 MAKEFLAGS, allowing the user to override this value to affect the
1250 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1251 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1252 a reference to this hidden variable is written instead. */
1253 (void) define_variable ("MAKEOVERRIDES", 13,
1254 "${-*-command-variables-*-}", o_env, 1);
1257 /* If there were -C flags, move ourselves about. */
1258 if (directories != 0)
1259 for (i = 0; directories->list[i] != 0; ++i)
1261 char *dir = directories->list[i];
1262 if (dir[0] == '~')
1264 char *expanded = tilde_expand (dir);
1265 if (expanded != 0)
1266 dir = expanded;
1268 if (chdir (dir) < 0)
1269 pfatal_with_name (dir);
1270 if (dir != directories->list[i])
1271 free (dir);
1274 #ifdef WINDOWS32
1276 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1277 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1279 * The functions in dir.c can incorrectly cache information for "."
1280 * before we have changed directory and this can cause file
1281 * lookups to fail because the current directory (.) was pointing
1282 * at the wrong place when it was first evaluated.
1284 no_default_sh_exe = !find_and_set_default_shell(NULL);
1286 #endif /* WINDOWS32 */
1287 /* Figure out the level of recursion. */
1289 struct variable *v = lookup_variable (MAKELEVEL_NAME, MAKELEVEL_LENGTH);
1290 if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
1291 makelevel = (unsigned int) atoi (v->value);
1292 else
1293 makelevel = 0;
1296 /* Except under -s, always do -w in sub-makes and under -C. */
1297 if (!silent_flag && (directories != 0 || makelevel > 0))
1298 print_directory_flag = 1;
1300 /* Let the user disable that with --no-print-directory. */
1301 if (inhibit_print_directory_flag)
1302 print_directory_flag = 0;
1304 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1305 if (no_builtin_variables_flag)
1306 no_builtin_rules_flag = 1;
1308 /* Construct the list of include directories to search. */
1310 construct_include_path (include_directories == 0 ? (char **) 0
1311 : include_directories->list);
1313 /* Figure out where we are now, after chdir'ing. */
1314 if (directories == 0)
1315 /* We didn't move, so we're still in the same place. */
1316 starting_directory = current_directory;
1317 else
1319 #ifdef WINDOWS32
1320 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1321 #else
1322 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1323 #endif
1325 #ifdef HAVE_GETCWD
1326 perror_with_name ("getcwd: ", "");
1327 #else
1328 error (NILF, "getwd: %s", current_directory);
1329 #endif
1330 starting_directory = 0;
1332 else
1333 starting_directory = current_directory;
1336 (void) define_variable ("CURDIR", 6, current_directory, o_default, 0);
1338 /* Read any stdin makefiles into temporary files. */
1340 if (makefiles != 0)
1342 register unsigned int i;
1343 for (i = 0; i < makefiles->idx; ++i)
1344 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1346 /* This makefile is standard input. Since we may re-exec
1347 and thus re-read the makefiles, we read standard input
1348 into a temporary file and read from that. */
1349 FILE *outfile;
1350 char *template, *tmpdir;
1352 if (stdin_nm)
1353 fatal (NILF, _("Makefile from standard input specified twice."));
1355 #ifdef VMS
1356 # define DEFAULT_TMPDIR "sys$scratch:"
1357 #else
1358 # ifdef P_tmpdir
1359 # define DEFAULT_TMPDIR P_tmpdir
1360 # else
1361 # define DEFAULT_TMPDIR "/tmp"
1362 # endif
1363 #endif
1364 #define DEFAULT_TMPFILE "GmXXXXXX"
1366 if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
1367 #if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
1368 /* These are also used commonly on these platforms. */
1369 && ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
1370 && ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
1371 #endif
1373 tmpdir = DEFAULT_TMPDIR;
1375 template = (char *) alloca (strlen (tmpdir)
1376 + sizeof (DEFAULT_TMPFILE) + 1);
1377 strcpy (template, tmpdir);
1379 #ifdef HAVE_DOS_PATHS
1380 if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
1381 strcat (template, "/");
1382 #else
1383 # ifndef VMS
1384 if (template[strlen (template) - 1] != '/')
1385 strcat (template, "/");
1386 # endif /* !VMS */
1387 #endif /* !HAVE_DOS_PATHS */
1389 strcat (template, DEFAULT_TMPFILE);
1390 outfile = open_tmpfile (&stdin_nm, template);
1391 if (outfile == 0)
1392 pfatal_with_name (_("fopen (temporary file)"));
1393 while (!feof (stdin))
1395 char buf[2048];
1396 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1397 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1398 pfatal_with_name (_("fwrite (temporary file)"));
1400 (void) fclose (outfile);
1402 /* Replace the name that read_all_makefiles will
1403 see with the name of the temporary file. */
1404 makefiles->list[i] = xstrdup (stdin_nm);
1406 /* Make sure the temporary file will not be remade. */
1407 f = enter_file (stdin_nm);
1408 f->updated = 1;
1409 f->update_status = 0;
1410 f->command_state = cs_finished;
1411 /* Can't be intermediate, or it'll be removed too early for
1412 make re-exec. */
1413 f->intermediate = 0;
1414 f->dontcare = 0;
1418 #ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
1419 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1420 /* Set up to handle children dying. This must be done before
1421 reading in the makefiles so that `shell' function calls will work.
1423 If we don't have a hanging wait we have to fall back to old, broken
1424 functionality here and rely on the signal handler and counting
1425 children.
1427 If we're using the jobs pipe we need a signal handler so that
1428 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1429 jobserver pipe in job.c if we're waiting for a token.
1431 If none of these are true, we don't need a signal handler at all. */
1433 extern RETSIGTYPE child_handler PARAMS ((int sig));
1434 # if defined SIGCHLD
1435 bsd_signal (SIGCHLD, child_handler);
1436 # endif
1437 # if defined SIGCLD && SIGCLD != SIGCHLD
1438 bsd_signal (SIGCLD, child_handler);
1439 # endif
1441 #endif
1442 #endif
1444 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1445 #ifdef SIGUSR1
1446 bsd_signal (SIGUSR1, debug_signal_handler);
1447 #endif
1449 /* Define the initial list of suffixes for old-style rules. */
1451 set_default_suffixes ();
1453 /* Define the file rules for the built-in suffix rules. These will later
1454 be converted into pattern rules. We used to do this in
1455 install_default_implicit_rules, but since that happens after reading
1456 makefiles, it results in the built-in pattern rules taking precedence
1457 over makefile-specified suffix rules, which is wrong. */
1459 install_default_suffix_rules ();
1461 /* Define some internal and special variables. */
1463 define_automatic_variables ();
1465 /* Set up the MAKEFLAGS and MFLAGS variables
1466 so makefiles can look at them. */
1468 define_makeflags (0, 0);
1470 /* Define the default variables. */
1471 define_default_variables ();
1473 /* Read all the makefiles. */
1475 default_file = enter_file (".DEFAULT");
1477 read_makefiles
1478 = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list);
1480 #ifdef WINDOWS32
1481 /* look one last time after reading all Makefiles */
1482 if (no_default_sh_exe)
1483 no_default_sh_exe = !find_and_set_default_shell(NULL);
1485 if (no_default_sh_exe && job_slots != 1) {
1486 error (NILF, _("Do not specify -j or --jobs if sh.exe is not available."));
1487 error (NILF, _("Resetting make for single job mode."));
1488 job_slots = 1;
1490 #endif /* WINDOWS32 */
1492 #if defined (__MSDOS__) || defined (__EMX__)
1493 /* We need to know what kind of shell we will be using. */
1495 extern int _is_unixy_shell (const char *_path);
1496 struct variable *shv = lookup_variable ("SHELL", 5);
1497 extern int unixy_shell;
1498 extern char *default_shell;
1500 if (shv && *shv->value)
1502 char *shell_path = recursively_expand(shv);
1504 if (shell_path && _is_unixy_shell (shell_path))
1505 unixy_shell = 1;
1506 else
1507 unixy_shell = 0;
1508 if (shell_path)
1509 default_shell = shell_path;
1512 #endif /* __MSDOS__ || __EMX__ */
1514 /* Decode switches again, in case the variables were set by the makefile. */
1515 decode_env_switches ("MAKEFLAGS", 9);
1516 #if 0
1517 decode_env_switches ("MFLAGS", 6);
1518 #endif
1520 #if defined (__MSDOS__) || defined (__EMX__)
1521 if (job_slots != 1
1522 # ifdef __EMX__
1523 && _osmode != OS2_MODE /* turn off -j if we are in DOS mode */
1524 # endif
1527 error (NILF,
1528 _("Parallel jobs (-j) are not supported on this platform."));
1529 error (NILF, _("Resetting to single job (-j1) mode."));
1530 job_slots = 1;
1532 #endif
1534 #ifdef MAKE_JOBSERVER
1535 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1537 if (jobserver_fds)
1539 char *cp;
1540 unsigned int ui;
1542 for (ui=1; ui < jobserver_fds->idx; ++ui)
1543 if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui]))
1544 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1546 /* Now parse the fds string and make sure it has the proper format. */
1548 cp = jobserver_fds->list[0];
1550 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1551 fatal (NILF,
1552 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1554 /* The combination of a pipe + !job_slots means we're using the
1555 jobserver. If !job_slots and we don't have a pipe, we can start
1556 infinite jobs. If we see both a pipe and job_slots >0 that means the
1557 user set -j explicitly. This is broken; in this case obey the user
1558 (ignore the jobserver pipe for this make) but print a message. */
1560 if (job_slots > 0)
1561 error (NILF,
1562 _("warning: -jN forced in submake: disabling jobserver mode."));
1564 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1565 handler. If this fails with EBADF, the parent has closed the pipe
1566 on us because it didn't think we were a submake. If so, print a
1567 warning then default to -j1. */
1569 else if ((job_rfd = dup (job_fds[0])) < 0)
1571 if (errno != EBADF)
1572 pfatal_with_name (_("dup jobserver"));
1574 error (NILF,
1575 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1576 job_slots = 1;
1579 if (job_slots > 0)
1581 close (job_fds[0]);
1582 close (job_fds[1]);
1583 job_fds[0] = job_fds[1] = -1;
1584 free (jobserver_fds->list);
1585 free (jobserver_fds);
1586 jobserver_fds = 0;
1590 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1591 Set up the pipe and install the fds option for our children. */
1593 if (job_slots > 1)
1595 char c = '+';
1597 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1598 pfatal_with_name (_("creating jobs pipe"));
1600 /* Every make assumes that it always has one job it can run. For the
1601 submakes it's the token they were given by their parent. For the
1602 top make, we just subtract one from the number the user wants. We
1603 want job_slots to be 0 to indicate we're using the jobserver. */
1605 while (--job_slots)
1607 int r;
1609 EINTRLOOP (r, write (job_fds[1], &c, 1));
1610 if (r != 1)
1611 pfatal_with_name (_("init jobserver pipe"));
1614 /* Fill in the jobserver_fds struct for our children. */
1616 jobserver_fds = (struct stringlist *)
1617 xmalloc (sizeof (struct stringlist));
1618 jobserver_fds->list = (char **) xmalloc (sizeof (char *));
1619 jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
1621 sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
1622 jobserver_fds->idx = 1;
1623 jobserver_fds->max = 1;
1625 #endif
1627 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1629 define_makeflags (1, 0);
1631 /* Make each `struct dep' point at the `struct file' for the file
1632 depended on. Also do magic for special targets. */
1634 snap_deps ();
1636 /* Convert old-style suffix rules to pattern rules. It is important to
1637 do this before installing the built-in pattern rules below, so that
1638 makefile-specified suffix rules take precedence over built-in pattern
1639 rules. */
1641 convert_to_pattern ();
1643 /* Install the default implicit pattern rules.
1644 This used to be done before reading the makefiles.
1645 But in that case, built-in pattern rules were in the chain
1646 before user-defined ones, so they matched first. */
1648 install_default_implicit_rules ();
1650 /* Compute implicit rule limits. */
1652 count_implicit_rule_limits ();
1654 /* Construct the listings of directories in VPATH lists. */
1656 build_vpath_lists ();
1658 /* Mark files given with -o flags as very old
1659 and as having been updated already, and files given with -W flags as
1660 brand new (time-stamp as far as possible into the future). */
1662 if (old_files != 0)
1663 for (p = old_files->list; *p != 0; ++p)
1665 f = enter_command_line_file (*p);
1666 f->last_mtime = f->mtime_before_update = OLD_MTIME;
1667 f->updated = 1;
1668 f->update_status = 0;
1669 f->command_state = cs_finished;
1672 if (new_files != 0)
1674 for (p = new_files->list; *p != 0; ++p)
1676 f = enter_command_line_file (*p);
1677 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1681 /* Initialize the remote job module. */
1682 remote_setup ();
1684 if (read_makefiles != 0)
1686 /* Update any makefiles if necessary. */
1688 FILE_TIMESTAMP *makefile_mtimes = 0;
1689 unsigned int mm_idx = 0;
1690 char **nargv = argv;
1691 int nargc = argc;
1692 int orig_db_level = db_level;
1693 int status;
1695 if (! ISDB (DB_MAKEFILES))
1696 db_level = DB_NONE;
1698 DB (DB_BASIC, (_("Updating makefiles....\n")));
1700 /* Remove any makefiles we don't want to try to update.
1701 Also record the current modtimes so we can compare them later. */
1703 register struct dep *d, *last;
1704 last = 0;
1705 d = read_makefiles;
1706 while (d != 0)
1708 register struct file *f = d->file;
1709 if (f->double_colon)
1710 for (f = f->double_colon; f != NULL; f = f->prev)
1712 if (f->deps == 0 && f->cmds != 0)
1714 /* This makefile is a :: target with commands, but
1715 no dependencies. So, it will always be remade.
1716 This might well cause an infinite loop, so don't
1717 try to remake it. (This will only happen if
1718 your makefiles are written exceptionally
1719 stupidly; but if you work for Athena, that's how
1720 you write your makefiles.) */
1722 DB (DB_VERBOSE,
1723 (_("Makefile `%s' might loop; not remaking it.\n"),
1724 f->name));
1726 if (last == 0)
1727 read_makefiles = d->next;
1728 else
1729 last->next = d->next;
1731 /* Free the storage. */
1732 free ((char *) d);
1734 d = last == 0 ? read_makefiles : last->next;
1736 break;
1739 if (f == NULL || !f->double_colon)
1741 makefile_mtimes = (FILE_TIMESTAMP *)
1742 xrealloc ((char *) makefile_mtimes,
1743 (mm_idx + 1) * sizeof (FILE_TIMESTAMP));
1744 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1745 last = d;
1746 d = d->next;
1751 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1752 define_makeflags (1, 1);
1754 rebuilding_makefiles = 1;
1755 status = update_goal_chain (read_makefiles);
1756 rebuilding_makefiles = 0;
1758 switch (status)
1760 case 1:
1761 /* The only way this can happen is if the user specified -q and asked
1762 * for one of the makefiles to be remade as a target on the command
1763 * line. Since we're not actually updating anything with -q we can
1764 * treat this as "did nothing".
1767 case -1:
1768 /* Did nothing. */
1769 break;
1771 case 2:
1772 /* Failed to update. Figure out if we care. */
1774 /* Nonzero if any makefile was successfully remade. */
1775 int any_remade = 0;
1776 /* Nonzero if any makefile we care about failed
1777 in updating or could not be found at all. */
1778 int any_failed = 0;
1779 unsigned int i;
1780 struct dep *d;
1782 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1784 /* Reset the considered flag; we may need to look at the file
1785 again to print an error. */
1786 d->file->considered = 0;
1788 if (d->file->updated)
1790 /* This makefile was updated. */
1791 if (d->file->update_status == 0)
1793 /* It was successfully updated. */
1794 any_remade |= (file_mtime_no_search (d->file)
1795 != makefile_mtimes[i]);
1797 else if (! (d->changed & RM_DONTCARE))
1799 FILE_TIMESTAMP mtime;
1800 /* The update failed and this makefile was not
1801 from the MAKEFILES variable, so we care. */
1802 error (NILF, _("Failed to remake makefile `%s'."),
1803 d->file->name);
1804 mtime = file_mtime_no_search (d->file);
1805 any_remade |= (mtime != NONEXISTENT_MTIME
1806 && mtime != makefile_mtimes[i]);
1807 makefile_status = MAKE_FAILURE;
1810 else
1811 /* This makefile was not found at all. */
1812 if (! (d->changed & RM_DONTCARE))
1814 /* This is a makefile we care about. See how much. */
1815 if (d->changed & RM_INCLUDED)
1816 /* An included makefile. We don't need
1817 to die, but we do want to complain. */
1818 error (NILF,
1819 _("Included makefile `%s' was not found."),
1820 dep_name (d));
1821 else
1823 /* A normal makefile. We must die later. */
1824 error (NILF, _("Makefile `%s' was not found"),
1825 dep_name (d));
1826 any_failed = 1;
1830 /* Reset this to empty so we get the right error message below. */
1831 read_makefiles = 0;
1833 if (any_remade)
1834 goto re_exec;
1835 if (any_failed)
1836 die (2);
1837 break;
1840 case 0:
1841 re_exec:
1842 /* Updated successfully. Re-exec ourselves. */
1844 remove_intermediates (0);
1846 if (print_data_base_flag)
1847 print_data_base ();
1849 log_working_directory (0);
1851 if (makefiles != 0)
1853 /* These names might have changed. */
1854 int i, j = 0;
1855 for (i = 1; i < argc; ++i)
1856 if (strneq (argv[i], "-f", 2)) /* XXX */
1858 char *p = &argv[i][2];
1859 if (*p == '\0')
1860 argv[++i] = makefiles->list[j];
1861 else
1862 argv[i] = concat ("-f", makefiles->list[j], "");
1863 ++j;
1867 /* Add -o option for the stdin temporary file, if necessary. */
1868 if (stdin_nm)
1870 nargv = (char **) xmalloc ((nargc + 2) * sizeof (char *));
1871 bcopy ((char *) argv, (char *) nargv, argc * sizeof (char *));
1872 nargv[nargc++] = concat ("-o", stdin_nm, "");
1873 nargv[nargc] = 0;
1876 if (directories != 0 && directories->idx > 0)
1878 char bad;
1879 if (directory_before_chdir != 0)
1881 if (chdir (directory_before_chdir) < 0)
1883 perror_with_name ("chdir", "");
1884 bad = 1;
1886 else
1887 bad = 0;
1889 else
1890 bad = 1;
1891 if (bad)
1892 fatal (NILF, _("Couldn't change back to original directory."));
1895 #ifndef _AMIGA
1896 for (p = environ; *p != 0; ++p)
1897 if ((*p)[MAKELEVEL_LENGTH] == '='
1898 && strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH))
1900 /* The SGI compiler apparently can't understand
1901 the concept of storing the result of a function
1902 in something other than a local variable. */
1903 char *sgi_loses;
1904 sgi_loses = (char *) alloca (40);
1905 *p = sgi_loses;
1906 sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
1907 break;
1909 #else /* AMIGA */
1911 char buffer[256];
1912 int len;
1914 len = GetVar (MAKELEVEL_NAME, buffer, sizeof (buffer), GVF_GLOBAL_ONLY);
1916 if (len != -1)
1918 sprintf (buffer, "%u", makelevel);
1919 SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
1922 #endif
1924 if (ISDB (DB_BASIC))
1926 char **p;
1927 fputs (_("Re-executing:"), stdout);
1928 for (p = nargv; *p != 0; ++p)
1929 printf (" %s", *p);
1930 putchar ('\n');
1933 fflush (stdout);
1934 fflush (stderr);
1936 /* Close the dup'd jobserver pipe if we opened one. */
1937 if (job_rfd >= 0)
1938 close (job_rfd);
1940 #ifdef _AMIGA
1941 exec_command (nargv);
1942 exit (0);
1943 #elif defined (__EMX__)
1945 /* It is not possible to use execve() here because this
1946 would cause the parent process to be terminated with
1947 exit code 0 before the child process has been terminated.
1948 Therefore it may be the best solution simply to spawn the
1949 child process including all file handles and to wait for its
1950 termination. */
1951 int pid;
1952 int status;
1953 pid = child_execute_job (0, 1, nargv, environ);
1955 /* is this loop really necessary? */
1956 do {
1957 pid = wait (&status);
1958 } while (pid <= 0);
1959 /* use the exit code of the child process */
1960 exit (WIFEXITED(status) ? WEXITSTATUS(status) : EXIT_FAILURE);
1962 #else
1963 exec_command (nargv, environ);
1964 #endif
1965 /* NOTREACHED */
1967 default:
1968 #define BOGUS_UPDATE_STATUS 0
1969 assert (BOGUS_UPDATE_STATUS);
1970 break;
1973 db_level = orig_db_level;
1975 /* Free the makefile mtimes (if we allocated any). */
1976 if (makefile_mtimes)
1977 free ((char *) makefile_mtimes);
1980 /* Set up `MAKEFLAGS' again for the normal targets. */
1981 define_makeflags (1, 0);
1983 /* If there is a temp file from reading a makefile from stdin, get rid of
1984 it now. */
1985 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
1986 perror_with_name (_("unlink (temporary file): "), stdin_nm);
1989 int status;
1991 /* If there were no command-line goals, use the default. */
1992 if (goals == 0)
1994 if (default_goal_file != 0)
1996 goals = (struct dep *) xmalloc (sizeof (struct dep));
1997 goals->next = 0;
1998 goals->name = 0;
1999 goals->ignore_mtime = 0;
2000 goals->file = default_goal_file;
2003 else
2004 lastgoal->next = 0;
2006 if (!goals)
2008 if (read_makefiles == 0)
2009 fatal (NILF, _("No targets specified and no makefile found"));
2011 fatal (NILF, _("No targets"));
2014 /* Update the goals. */
2016 DB (DB_BASIC, (_("Updating goal targets....\n")));
2018 switch (update_goal_chain (goals))
2020 case -1:
2021 /* Nothing happened. */
2022 case 0:
2023 /* Updated successfully. */
2024 status = makefile_status;
2025 break;
2026 case 1:
2027 /* We are under -q and would run some commands. */
2028 status = MAKE_TROUBLE;
2029 break;
2030 case 2:
2031 /* Updating failed. POSIX.2 specifies exit status >1 for this;
2032 but in VMS, there is only success and failure. */
2033 status = MAKE_FAILURE;
2034 break;
2035 default:
2036 abort ();
2039 /* If we detected some clock skew, generate one last warning */
2040 if (clock_skew_detected)
2041 error (NILF,
2042 _("warning: Clock skew detected. Your build may be incomplete."));
2044 /* Exit. */
2045 die (status);
2048 return 0;
2051 /* Parsing of arguments, decoding of switches. */
2053 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
2054 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
2055 (sizeof (long_option_aliases) /
2056 sizeof (long_option_aliases[0]))];
2058 /* Fill in the string and vector for getopt. */
2059 static void
2060 init_switches (void)
2062 char *p;
2063 unsigned int c;
2064 unsigned int i;
2066 if (options[0] != '\0')
2067 /* Already done. */
2068 return;
2070 p = options;
2072 /* Return switch and non-switch args in order, regardless of
2073 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
2074 *p++ = '-';
2076 for (i = 0; switches[i].c != '\0'; ++i)
2078 long_options[i].name = (switches[i].long_name == 0 ? "" :
2079 switches[i].long_name);
2080 long_options[i].flag = 0;
2081 long_options[i].val = switches[i].c;
2082 if (short_option (switches[i].c))
2083 *p++ = switches[i].c;
2084 switch (switches[i].type)
2086 case flag:
2087 case flag_off:
2088 case ignore:
2089 long_options[i].has_arg = no_argument;
2090 break;
2092 case string:
2093 case positive_int:
2094 case floating:
2095 if (short_option (switches[i].c))
2096 *p++ = ':';
2097 if (switches[i].noarg_value != 0)
2099 if (short_option (switches[i].c))
2100 *p++ = ':';
2101 long_options[i].has_arg = optional_argument;
2103 else
2104 long_options[i].has_arg = required_argument;
2105 break;
2108 *p = '\0';
2109 for (c = 0; c < (sizeof (long_option_aliases) /
2110 sizeof (long_option_aliases[0]));
2111 ++c)
2112 long_options[i++] = long_option_aliases[c];
2113 long_options[i].name = 0;
2116 static void
2117 handle_non_switch_argument (char *arg, int env)
2119 /* Non-option argument. It might be a variable definition. */
2120 struct variable *v;
2121 if (arg[0] == '-' && arg[1] == '\0')
2122 /* Ignore plain `-' for compatibility. */
2123 return;
2124 v = try_variable_definition (0, arg, o_command, 0);
2125 if (v != 0)
2127 /* It is indeed a variable definition. Record a pointer to
2128 the variable for later use in define_makeflags. */
2129 struct command_variable *cv
2130 = (struct command_variable *) xmalloc (sizeof (*cv));
2131 cv->variable = v;
2132 cv->next = command_variables;
2133 command_variables = cv;
2135 else if (! env)
2137 /* Not an option or variable definition; it must be a goal
2138 target! Enter it as a file and add it to the dep chain of
2139 goals. */
2140 struct file *f = enter_command_line_file (arg);
2141 f->cmd_target = 1;
2143 if (goals == 0)
2145 goals = (struct dep *) xmalloc (sizeof (struct dep));
2146 lastgoal = goals;
2148 else
2150 lastgoal->next = (struct dep *) xmalloc (sizeof (struct dep));
2151 lastgoal = lastgoal->next;
2153 lastgoal->name = 0;
2154 lastgoal->file = f;
2155 lastgoal->ignore_mtime = 0;
2158 /* Add this target name to the MAKECMDGOALS variable. */
2159 struct variable *v;
2160 char *value;
2162 v = lookup_variable ("MAKECMDGOALS", 12);
2163 if (v == 0)
2164 value = f->name;
2165 else
2167 /* Paste the old and new values together */
2168 unsigned int oldlen, newlen;
2170 oldlen = strlen (v->value);
2171 newlen = strlen (f->name);
2172 value = (char *) alloca (oldlen + 1 + newlen + 1);
2173 bcopy (v->value, value, oldlen);
2174 value[oldlen] = ' ';
2175 bcopy (f->name, &value[oldlen + 1], newlen + 1);
2177 define_variable ("MAKECMDGOALS", 12, value, o_default, 0);
2182 /* Print a nice usage method. */
2184 static void
2185 print_usage (int bad)
2187 const char *const *cpp;
2188 FILE *usageto;
2190 if (print_version_flag)
2191 print_version ();
2193 usageto = bad ? stderr : stdout;
2195 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
2197 for (cpp = usage; *cpp; ++cpp)
2198 fputs (_(*cpp), usageto);
2200 if (!remote_description || *remote_description == '\0')
2201 fprintf (usageto, _("\nThis program built for %s\n"), make_host);
2202 else
2203 fprintf (usageto, _("\nThis program built for %s (%s)\n"),
2204 make_host, remote_description);
2206 fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
2209 /* Decode switches from ARGC and ARGV.
2210 They came from the environment if ENV is nonzero. */
2212 static void
2213 decode_switches (int argc, char **argv, int env)
2215 int bad = 0;
2216 register const struct command_switch *cs;
2217 register struct stringlist *sl;
2218 register int c;
2220 /* getopt does most of the parsing for us.
2221 First, get its vectors set up. */
2223 init_switches ();
2225 /* Let getopt produce error messages for the command line,
2226 but not for options from the environment. */
2227 opterr = !env;
2228 /* Reset getopt's state. */
2229 optind = 0;
2231 while (optind < argc)
2233 /* Parse the next argument. */
2234 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2235 if (c == EOF)
2236 /* End of arguments, or "--" marker seen. */
2237 break;
2238 else if (c == 1)
2239 /* An argument not starting with a dash. */
2240 handle_non_switch_argument (optarg, env);
2241 else if (c == '?')
2242 /* Bad option. We will print a usage message and die later.
2243 But continue to parse the other options so the user can
2244 see all he did wrong. */
2245 bad = 1;
2246 else
2247 for (cs = switches; cs->c != '\0'; ++cs)
2248 if (cs->c == c)
2250 /* Whether or not we will actually do anything with
2251 this switch. We test this individually inside the
2252 switch below rather than just once outside it, so that
2253 options which are to be ignored still consume args. */
2254 int doit = !env || cs->env;
2256 switch (cs->type)
2258 default:
2259 abort ();
2261 case ignore:
2262 break;
2264 case flag:
2265 case flag_off:
2266 if (doit)
2267 *(int *) cs->value_ptr = cs->type == flag;
2268 break;
2270 case string:
2271 if (!doit)
2272 break;
2274 if (optarg == 0)
2275 optarg = cs->noarg_value;
2276 else if (*optarg == '\0')
2278 error (NILF, _("the `-%c' option requires a non-empty string argument"),
2279 cs->c);
2280 bad = 1;
2283 sl = *(struct stringlist **) cs->value_ptr;
2284 if (sl == 0)
2286 sl = (struct stringlist *)
2287 xmalloc (sizeof (struct stringlist));
2288 sl->max = 5;
2289 sl->idx = 0;
2290 sl->list = (char **) xmalloc (5 * sizeof (char *));
2291 *(struct stringlist **) cs->value_ptr = sl;
2293 else if (sl->idx == sl->max - 1)
2295 sl->max += 5;
2296 sl->list = (char **)
2297 xrealloc ((char *) sl->list,
2298 sl->max * sizeof (char *));
2300 sl->list[sl->idx++] = optarg;
2301 sl->list[sl->idx] = 0;
2302 break;
2304 case positive_int:
2305 /* See if we have an option argument; if we do require that
2306 it's all digits, not something like "10foo". */
2307 if (optarg == 0 && argc > optind)
2309 const char *cp;
2310 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
2312 if (cp[0] == '\0')
2313 optarg = argv[optind++];
2316 if (!doit)
2317 break;
2319 if (optarg != 0)
2321 int i = atoi (optarg);
2322 const char *cp;
2324 /* Yes, I realize we're repeating this in some cases. */
2325 for (cp = optarg; ISDIGIT (cp[0]); ++cp)
2328 if (i < 1 || cp[0] != '\0')
2330 error (NILF, _("the `-%c' option requires a positive integral argument"),
2331 cs->c);
2332 bad = 1;
2334 else
2335 *(unsigned int *) cs->value_ptr = i;
2337 else
2338 *(unsigned int *) cs->value_ptr
2339 = *(unsigned int *) cs->noarg_value;
2340 break;
2342 #ifndef NO_FLOAT
2343 case floating:
2344 if (optarg == 0 && optind < argc
2345 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2346 optarg = argv[optind++];
2348 if (doit)
2349 *(double *) cs->value_ptr
2350 = (optarg != 0 ? atof (optarg)
2351 : *(double *) cs->noarg_value);
2353 break;
2354 #endif
2357 /* We've found the switch. Stop looking. */
2358 break;
2362 /* There are no more options according to getting getopt, but there may
2363 be some arguments left. Since we have asked for non-option arguments
2364 to be returned in order, this only happens when there is a "--"
2365 argument to prevent later arguments from being options. */
2366 while (optind < argc)
2367 handle_non_switch_argument (argv[optind++], env);
2370 if (!env && (bad || print_usage_flag))
2372 print_usage (bad);
2373 die (bad ? 2 : 0);
2377 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2378 We do this by chopping the value into a vector of words, prepending a
2379 dash to the first word if it lacks one, and passing the vector to
2380 decode_switches. */
2382 static void
2383 decode_env_switches (char *envar, unsigned int len)
2385 char *varref = (char *) alloca (2 + len + 2);
2386 char *value, *p;
2387 int argc;
2388 char **argv;
2390 /* Get the variable's value. */
2391 varref[0] = '$';
2392 varref[1] = '(';
2393 bcopy (envar, &varref[2], len);
2394 varref[2 + len] = ')';
2395 varref[2 + len + 1] = '\0';
2396 value = variable_expand (varref);
2398 /* Skip whitespace, and check for an empty value. */
2399 value = next_token (value);
2400 len = strlen (value);
2401 if (len == 0)
2402 return;
2404 /* Allocate a vector that is definitely big enough. */
2405 argv = (char **) alloca ((1 + len + 1) * sizeof (char *));
2407 /* Allocate a buffer to copy the value into while we split it into words
2408 and unquote it. We must use permanent storage for this because
2409 decode_switches may store pointers into the passed argument words. */
2410 p = (char *) xmalloc (2 * len);
2412 /* getopt will look at the arguments starting at ARGV[1].
2413 Prepend a spacer word. */
2414 argv[0] = 0;
2415 argc = 1;
2416 argv[argc] = p;
2417 while (*value != '\0')
2419 if (*value == '\\' && value[1] != '\0')
2420 ++value; /* Skip the backslash. */
2421 else if (isblank ((unsigned char)*value))
2423 /* End of the word. */
2424 *p++ = '\0';
2425 argv[++argc] = p;
2427 ++value;
2428 while (isblank ((unsigned char)*value));
2429 continue;
2431 *p++ = *value++;
2433 *p = '\0';
2434 argv[++argc] = 0;
2436 if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
2437 /* The first word doesn't start with a dash and isn't a variable
2438 definition. Add a dash and pass it along to decode_switches. We
2439 need permanent storage for this in case decode_switches saves
2440 pointers into the value. */
2441 argv[1] = concat ("-", argv[1], "");
2443 /* Parse those words. */
2444 decode_switches (argc, argv, 1);
2447 /* Quote the string IN so that it will be interpreted as a single word with
2448 no magic by decode_env_switches; also double dollar signs to avoid
2449 variable expansion in make itself. Write the result into OUT, returning
2450 the address of the next character to be written.
2451 Allocating space for OUT twice the length of IN is always sufficient. */
2453 static char *
2454 quote_for_env (char *out, char *in)
2456 while (*in != '\0')
2458 if (*in == '$')
2459 *out++ = '$';
2460 else if (isblank ((unsigned char)*in) || *in == '\\')
2461 *out++ = '\\';
2462 *out++ = *in++;
2465 return out;
2468 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2469 command switches. Include options with args if ALL is nonzero.
2470 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2472 static void
2473 define_makeflags (int all, int makefile)
2475 static const char ref[] = "$(MAKEOVERRIDES)";
2476 static const char posixref[] = "$(-*-command-variables-*-)";
2477 register const struct command_switch *cs;
2478 char *flagstring;
2479 register char *p;
2480 unsigned int words;
2481 struct variable *v;
2483 /* We will construct a linked list of `struct flag's describing
2484 all the flags which need to go in MAKEFLAGS. Then, once we
2485 know how many there are and their lengths, we can put them all
2486 together in a string. */
2488 struct flag
2490 struct flag *next;
2491 const struct command_switch *cs;
2492 char *arg;
2494 struct flag *flags = 0;
2495 unsigned int flagslen = 0;
2496 #define ADD_FLAG(ARG, LEN) \
2497 do { \
2498 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2499 new->cs = cs; \
2500 new->arg = (ARG); \
2501 new->next = flags; \
2502 flags = new; \
2503 if (new->arg == 0) \
2504 ++flagslen; /* Just a single flag letter. */ \
2505 else \
2506 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2507 if (!short_option (cs->c)) \
2508 /* This switch has no single-letter version, so we use the long. */ \
2509 flagslen += 2 + strlen (cs->long_name); \
2510 } while (0)
2512 for (cs = switches; cs->c != '\0'; ++cs)
2513 if (cs->toenv && (!makefile || !cs->no_makefile))
2514 switch (cs->type)
2516 default:
2517 abort ();
2519 case ignore:
2520 break;
2522 case flag:
2523 case flag_off:
2524 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2525 && (cs->default_value == 0
2526 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2527 ADD_FLAG (0, 0);
2528 break;
2530 case positive_int:
2531 if (all)
2533 if ((cs->default_value != 0
2534 && (*(unsigned int *) cs->value_ptr
2535 == *(unsigned int *) cs->default_value)))
2536 break;
2537 else if (cs->noarg_value != 0
2538 && (*(unsigned int *) cs->value_ptr ==
2539 *(unsigned int *) cs->noarg_value))
2540 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2541 else if (cs->c == 'j')
2542 /* Special case for `-j'. */
2543 ADD_FLAG ("1", 1);
2544 else
2546 char *buf = (char *) alloca (30);
2547 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2548 ADD_FLAG (buf, strlen (buf));
2551 break;
2553 #ifndef NO_FLOAT
2554 case floating:
2555 if (all)
2557 if (cs->default_value != 0
2558 && (*(double *) cs->value_ptr
2559 == *(double *) cs->default_value))
2560 break;
2561 else if (cs->noarg_value != 0
2562 && (*(double *) cs->value_ptr
2563 == *(double *) cs->noarg_value))
2564 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2565 else
2567 char *buf = (char *) alloca (100);
2568 sprintf (buf, "%g", *(double *) cs->value_ptr);
2569 ADD_FLAG (buf, strlen (buf));
2572 break;
2573 #endif
2575 case string:
2576 if (all)
2578 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2579 if (sl != 0)
2581 /* Add the elements in reverse order, because
2582 all the flags get reversed below; and the order
2583 matters for some switches (like -I). */
2584 register unsigned int i = sl->idx;
2585 while (i-- > 0)
2586 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2589 break;
2592 flagslen += 4 + sizeof posixref; /* Four more for the possible " -- ". */
2594 #undef ADD_FLAG
2596 /* Construct the value in FLAGSTRING.
2597 We allocate enough space for a preceding dash and trailing null. */
2598 flagstring = (char *) alloca (1 + flagslen + 1);
2599 bzero (flagstring, 1 + flagslen + 1);
2600 p = flagstring;
2601 words = 1;
2602 *p++ = '-';
2603 while (flags != 0)
2605 /* Add the flag letter or name to the string. */
2606 if (short_option (flags->cs->c))
2607 *p++ = flags->cs->c;
2608 else
2610 if (*p != '-')
2612 *p++ = ' ';
2613 *p++ = '-';
2615 *p++ = '-';
2616 strcpy (p, flags->cs->long_name);
2617 p += strlen (p);
2619 if (flags->arg != 0)
2621 /* A flag that takes an optional argument which in this case is
2622 omitted is specified by ARG being "". We must distinguish
2623 because a following flag appended without an intervening " -"
2624 is considered the arg for the first. */
2625 if (flags->arg[0] != '\0')
2627 /* Add its argument too. */
2628 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2629 p = quote_for_env (p, flags->arg);
2631 ++words;
2632 /* Write a following space and dash, for the next flag. */
2633 *p++ = ' ';
2634 *p++ = '-';
2636 else if (!short_option (flags->cs->c))
2638 ++words;
2639 /* Long options must each go in their own word,
2640 so we write the following space and dash. */
2641 *p++ = ' ';
2642 *p++ = '-';
2644 flags = flags->next;
2647 /* Define MFLAGS before appending variable definitions. */
2649 if (p == &flagstring[1])
2650 /* No flags. */
2651 flagstring[0] = '\0';
2652 else if (p[-1] == '-')
2654 /* Kill the final space and dash. */
2655 p -= 2;
2656 *p = '\0';
2658 else
2659 /* Terminate the string. */
2660 *p = '\0';
2662 /* Since MFLAGS is not parsed for flags, there is no reason to
2663 override any makefile redefinition. */
2664 (void) define_variable ("MFLAGS", 6, flagstring, o_env, 1);
2666 if (all && command_variables != 0)
2668 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2669 command-line variable definitions. */
2671 if (p == &flagstring[1])
2672 /* No flags written, so elide the leading dash already written. */
2673 p = flagstring;
2674 else
2676 /* Separate the variables from the switches with a "--" arg. */
2677 if (p[-1] != '-')
2679 /* We did not already write a trailing " -". */
2680 *p++ = ' ';
2681 *p++ = '-';
2683 /* There is a trailing " -"; fill it out to " -- ". */
2684 *p++ = '-';
2685 *p++ = ' ';
2688 /* Copy in the string. */
2689 if (posix_pedantic)
2691 bcopy (posixref, p, sizeof posixref - 1);
2692 p += sizeof posixref - 1;
2694 else
2696 bcopy (ref, p, sizeof ref - 1);
2697 p += sizeof ref - 1;
2700 else if (p == &flagstring[1])
2702 words = 0;
2703 --p;
2705 else if (p[-1] == '-')
2706 /* Kill the final space and dash. */
2707 p -= 2;
2708 /* Terminate the string. */
2709 *p = '\0';
2711 v = define_variable ("MAKEFLAGS", 9,
2712 /* If there are switches, omit the leading dash
2713 unless it is a single long option with two
2714 leading dashes. */
2715 &flagstring[(flagstring[0] == '-'
2716 && flagstring[1] != '-')
2717 ? 1 : 0],
2718 /* This used to use o_env, but that lost when a
2719 makefile defined MAKEFLAGS. Makefiles set
2720 MAKEFLAGS to add switches, but we still want
2721 to redefine its value with the full set of
2722 switches. Of course, an override or command
2723 definition will still take precedence. */
2724 o_file, 1);
2725 if (! all)
2726 /* The first time we are called, set MAKEFLAGS to always be exported.
2727 We should not do this again on the second call, because that is
2728 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2729 v->export = v_export;
2732 /* Print version information. */
2734 static void
2735 print_version (void)
2737 static int printed_version = 0;
2739 char *precede = print_data_base_flag ? "# " : "";
2741 if (printed_version)
2742 /* Do it only once. */
2743 return;
2745 /* Print this untranslated. The coding standards recommend translating the
2746 (C) to the copyright symbol, but this string is going to change every
2747 year, and none of the rest of it should be translated (including the
2748 word "Copyright", so it hardly seems worth it. */
2750 printf ("%sGNU Make %s\n\
2751 %sCopyright (C) 2003 Free Software Foundation, Inc.\n",
2752 precede, version_string, precede);
2754 printf (_("%sThis is free software; see the source for copying conditions.\n\
2755 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2756 %sPARTICULAR PURPOSE.\n"),
2757 precede, precede, precede);
2759 if (!remote_description || *remote_description == '\0')
2760 printf (_("\n%sThis program built for %s\n"), precede, make_host);
2761 else
2762 printf (_("\n%sThis program built for %s (%s)\n"),
2763 precede, make_host, remote_description);
2765 printed_version = 1;
2767 /* Flush stdout so the user doesn't have to wait to see the
2768 version information while things are thought about. */
2769 fflush (stdout);
2772 /* Print a bunch of information about this and that. */
2774 static void
2775 print_data_base (void)
2777 time_t when;
2779 when = time ((time_t *) 0);
2780 printf (_("\n# Make data base, printed on %s"), ctime (&when));
2782 print_variable_data_base ();
2783 print_dir_data_base ();
2784 print_rule_data_base ();
2785 print_file_data_base ();
2786 print_vpath_data_base ();
2788 when = time ((time_t *) 0);
2789 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
2792 /* Exit with STATUS, cleaning up as necessary. */
2794 void
2795 die (int status)
2797 static char dying = 0;
2799 if (!dying)
2801 int err;
2803 dying = 1;
2805 if (print_version_flag)
2806 print_version ();
2808 /* Wait for children to die. */
2809 for (err = (status != 0); job_slots_used > 0; err = 0)
2810 reap_children (1, err);
2812 /* Let the remote job module clean up its state. */
2813 remote_cleanup ();
2815 /* Remove the intermediate files. */
2816 remove_intermediates (0);
2818 if (print_data_base_flag)
2819 print_data_base ();
2821 /* Try to move back to the original directory. This is essential on
2822 MS-DOS (where there is really only one process), and on Unix it
2823 puts core files in the original directory instead of the -C
2824 directory. Must wait until after remove_intermediates(), or unlinks
2825 of relative pathnames fail. */
2826 if (directory_before_chdir != 0)
2827 chdir (directory_before_chdir);
2829 log_working_directory (0);
2832 exit (status);
2835 /* Write a message indicating that we've just entered or
2836 left (according to ENTERING) the current directory. */
2838 void
2839 log_working_directory (int entering)
2841 static int entered = 0;
2843 /* Print nothing without the flag. Don't print the entering message
2844 again if we already have. Don't print the leaving message if we
2845 haven't printed the entering message. */
2846 if (! print_directory_flag || entering == entered)
2847 return;
2849 entered = entering;
2851 if (print_data_base_flag)
2852 fputs ("# ", stdout);
2854 /* Use entire sentences to give the translators a fighting chance. */
2856 if (makelevel == 0)
2857 if (starting_directory == 0)
2858 if (entering)
2859 printf (_("%s: Entering an unknown directory\n"), program);
2860 else
2861 printf (_("%s: Leaving an unknown directory\n"), program);
2862 else
2863 if (entering)
2864 printf (_("%s: Entering directory `%s'\n"),
2865 program, starting_directory);
2866 else
2867 printf (_("%s: Leaving directory `%s'\n"),
2868 program, starting_directory);
2869 else
2870 if (starting_directory == 0)
2871 if (entering)
2872 printf (_("%s[%u]: Entering an unknown directory\n"),
2873 program, makelevel);
2874 else
2875 printf (_("%s[%u]: Leaving an unknown directory\n"),
2876 program, makelevel);
2877 else
2878 if (entering)
2879 printf (_("%s[%u]: Entering directory `%s'\n"),
2880 program, makelevel, starting_directory);
2881 else
2882 printf (_("%s[%u]: Leaving directory `%s'\n"),
2883 program, makelevel, starting_directory);