VirtualBox

source: kBuild/vendor/gnumake/2003-11-23/main.c

Last change on this file was 54, checked in by (none), 21 years ago

This commit was manufactured by cvs2svn to create branch 'GNU'.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette