1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988,89,90,91,94,95,96,97,98,99 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 MA 02111-1307, USA. */
33 # include <proto/dos.h>
37 #include "pathstuff.h"
39 #if defined(MAKE_JOBSERVER) && defined(HAVE_FCNTL_H)
44 int __stack
= 20000; /* Make sure we have 20K of stack space */
47 extern void init_dir
PARAMS ((void));
48 extern void remote_setup
PARAMS ((void));
49 extern void remote_cleanup
PARAMS ((void));
50 extern RETSIGTYPE fatal_error_signal
PARAMS ((int sig
));
52 extern void print_variable_data_base
PARAMS ((void));
53 extern void print_dir_data_base
PARAMS ((void));
54 extern void print_rule_data_base
PARAMS ((void));
55 extern void print_file_data_base
PARAMS ((void));
56 extern void print_vpath_data_base
PARAMS ((void));
58 #if defined HAVE_WAITPID || defined HAVE_WAIT3
59 # define HAVE_WAIT_NOHANG
66 # ifndef sun /* Sun has an incorrect decl in a header. */
67 extern void exit
PARAMS ((int)) __attribute__ ((noreturn
));
69 extern double atof ();
71 extern char *mktemp ();
73 static void print_data_base
PARAMS ((void));
74 static void print_version
PARAMS ((void));
75 static void decode_switches
PARAMS ((int argc
, char **argv
, int env
));
76 static void decode_env_switches
PARAMS ((char *envar
, unsigned int len
));
77 static void define_makeflags
PARAMS ((int all
, int makefile
));
78 static char *quote_for_env
PARAMS ((char *out
, char *in
));
80 /* The structure that describes an accepted command switch. */
84 int c
; /* The switch character. */
86 enum /* Type of the value. */
88 flag
, /* Turn int flag on. */
89 flag_off
, /* Turn int flag off. */
90 string
, /* One string per switch. */
91 positive_int
, /* A positive integer. */
92 floating
, /* A floating-point number (double). */
96 char *value_ptr
; /* Pointer to the value-holding variable. */
98 unsigned int env
:1; /* Can come from MAKEFLAGS. */
99 unsigned int toenv
:1; /* Should be put in MAKEFLAGS. */
100 unsigned int no_makefile
:1; /* Don't propagate when remaking makefiles. */
102 char *noarg_value
; /* Pointer to value used if no argument is given. */
103 char *default_value
;/* Pointer to default value. */
105 char *long_name
; /* Long option name. */
106 char *argdesc
; /* Descriptive word for argument. */
107 char *description
; /* Description for usage message. */
108 /* 0 means internal; don't display help. */
111 /* True if C is a switch value that corresponds to a short option. */
113 #define short_option(c) ((c) <= CHAR_MAX)
115 /* The structure used to hold the list of strings given
116 in command switches of a type that takes string arguments. */
120 char **list
; /* Nil-terminated list of strings. */
121 unsigned int idx
; /* Index into above. */
122 unsigned int max
; /* Number of pointers allocated. */
126 /* The recognized command switches. */
128 /* Nonzero means do not print commands to be executed (-s). */
132 /* Nonzero means just touch the files
133 that would appear to need remaking (-t) */
137 /* Nonzero means just print what commands would need to be executed,
138 don't actually execute them (-n). */
142 /* Print debugging info (--debug). */
145 int noarg_db_level
= 1;
146 int default_db_level
= 0;
149 /* Suspend make in main for a short time to allow debugger to attach */
151 int suspend_flag
= 0;
154 /* Environment variables override makefile definitions. */
156 int env_overrides
= 0;
158 /* Nonzero means ignore status codes returned by commands
159 executed to remake files. Just treat them all as successful (-i). */
161 int ignore_errors_flag
= 0;
163 /* Nonzero means don't remake anything, just print the data base
164 that results from reading the makefile (-p). */
166 int print_data_base_flag
= 0;
168 /* Nonzero means don't remake anything; just return a nonzero status
169 if the specified targets are not up to date (-q). */
171 int question_flag
= 0;
173 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
175 int no_builtin_rules_flag
= 0;
176 int no_builtin_variables_flag
= 0;
178 /* Nonzero means keep going even if remaking some file fails (-k). */
181 int default_keep_going_flag
= 0;
183 /* Nonzero means print directory before starting and when done (-w). */
185 int print_directory_flag
= 0;
187 /* Nonzero means ignore print_directory_flag and never print the directory.
188 This is necessary because print_directory_flag is set implicitly. */
190 int inhibit_print_directory_flag
= 0;
192 /* Nonzero means print version information. */
194 int print_version_flag
= 0;
196 /* List of makefiles given with -f switches. */
198 static struct stringlist
*makefiles
= 0;
200 /* Number of job slots (commands that can be run at once). */
202 unsigned int job_slots
= 1;
203 unsigned int default_job_slots
= 1;
205 /* Value of job_slots that means no limit. */
207 static unsigned int inf_jobs
= 0;
209 /* File descriptors for the jobs pipe. */
211 static struct stringlist
*jobserver_fds
= 0;
213 int job_fds
[2] = { -1, -1 };
216 /* Maximum load average at which multiple jobs will be run.
217 Negative values mean unlimited, while zero means limit to
218 zero load (which could be useful to start infinite jobs remotely
219 but one at a time locally). */
221 double max_load_average
= -1.0;
222 double default_load_average
= -1.0;
224 int max_load_average
= -1;
225 int default_load_average
= -1;
228 /* List of directories given with -C switches. */
230 static struct stringlist
*directories
= 0;
232 /* List of include directories given with -I switches. */
234 static struct stringlist
*include_directories
= 0;
236 /* List of files given with -o switches. */
238 static struct stringlist
*old_files
= 0;
240 /* List of files given with -W switches. */
242 static struct stringlist
*new_files
= 0;
244 /* If nonzero, we should just print usage and exit. */
246 static int print_usage_flag
= 0;
248 /* If nonzero, we should print a warning message
249 for each reference to an undefined variable. */
251 int warn_undefined_variables_flag
;
253 /* The table of command switches. */
255 static const struct command_switch switches
[] =
257 { 'b', ignore
, 0, 0, 0, 0, 0, 0,
259 _("Ignored for compatibility") },
260 { 'C', string
, (char *) &directories
, 0, 0, 0, 0, 0,
261 "directory", _("DIRECTORY"),
262 _("Change to DIRECTORY before doing anything") },
263 { 'd', positive_int
, (char *) &db_level
, 1, 1, 0,
264 (char *) &noarg_db_level
, (char *) &default_db_level
,
266 _("Print different types of debugging information") },
268 { 'D', flag
, (char *) &suspend_flag
, 1, 1, 0, 0, 0,
269 "suspend-for-debug", 0,
270 _("Suspend process to allow a debugger to attach") },
272 { 'e', flag
, (char *) &env_overrides
, 1, 1, 0, 0, 0,
273 "environment-overrides", 0,
274 _("Environment variables override makefiles") },
275 { 'f', string
, (char *) &makefiles
, 0, 0, 0, 0, 0,
277 _("Read FILE as a makefile") },
278 { 'h', flag
, (char *) &print_usage_flag
, 0, 0, 0, 0, 0,
280 _("Print this message and exit") },
281 { 'i', flag
, (char *) &ignore_errors_flag
, 1, 1, 0, 0, 0,
283 _("Ignore errors from commands") },
284 { 'I', string
, (char *) &include_directories
, 1, 1, 0, 0, 0,
285 "include-dir", _("DIRECTORY"),
286 _("Search DIRECTORY for included makefiles") },
288 positive_int
, (char *) &job_slots
, 1, 1, 0,
289 (char *) &inf_jobs
, (char *) &default_job_slots
,
291 _("Allow N jobs at once; infinite jobs with no arg") },
292 { CHAR_MAX
+1, string
, (char *) &jobserver_fds
, 1, 1, 0, 0, 0,
295 { 'k', flag
, (char *) &keep_going_flag
, 1, 1, 0,
296 0, (char *) &default_keep_going_flag
,
298 _("Keep going when some targets can't be made") },
300 { 'l', floating
, (char *) &max_load_average
, 1, 1, 0,
301 (char *) &default_load_average
, (char *) &default_load_average
,
303 _("Don't start multiple jobs unless load is below N") },
305 { 'l', positive_int
, (char *) &max_load_average
, 1, 1, 0,
306 (char *) &default_load_average
, (char *) &default_load_average
,
308 _("Don't start multiple jobs unless load is below N") },
310 { 'm', ignore
, 0, 0, 0, 0, 0, 0,
313 { 'n', flag
, (char *) &just_print_flag
, 1, 1, 1, 0, 0,
315 _("Don't actually run any commands; just print them") },
316 { 'o', string
, (char *) &old_files
, 0, 0, 0, 0, 0,
317 "old-file", _("FILE"),
318 _("Consider FILE to be very old and don't remake it") },
319 { 'p', flag
, (char *) &print_data_base_flag
, 1, 1, 0, 0, 0,
320 "print-data-base", 0,
321 _("Print make's internal database") },
322 { 'q', flag
, (char *) &question_flag
, 1, 1, 1, 0, 0,
324 _("Run no commands; exit status says if up to date") },
325 { 'r', flag
, (char *) &no_builtin_rules_flag
, 1, 1, 0, 0, 0,
326 "no-builtin-rules", 0,
327 _("Disable the built-in implicit rules") },
328 { 'R', flag
, (char *) &no_builtin_variables_flag
, 1, 1, 0, 0, 0,
329 "no-builtin-variables", 0,
330 _("Disable the built-in variable settings") },
331 { 's', flag
, (char *) &silent_flag
, 1, 1, 0, 0, 0,
333 _("Don't echo commands") },
334 { 'S', flag_off
, (char *) &keep_going_flag
, 1, 1, 0,
335 0, (char *) &default_keep_going_flag
,
338 { 't', flag
, (char *) &touch_flag
, 1, 1, 1, 0, 0,
340 _("Touch targets instead of remaking them") },
341 { 'v', flag
, (char *) &print_version_flag
, 1, 1, 0, 0, 0,
343 _("Print the version number of make and exit") },
344 { 'w', flag
, (char *) &print_directory_flag
, 1, 1, 0, 0, 0,
345 "print-directory", 0,
346 _("Print the current directory") },
347 { CHAR_MAX
+2, flag
, (char *) &inhibit_print_directory_flag
, 1, 1, 0, 0, 0,
348 "no-print-directory", 0,
349 _("Turn off -w, even if it was turned on implicitly") },
350 { 'W', string
, (char *) &new_files
, 0, 0, 0, 0, 0,
351 "what-if", _("FILE"),
352 _("Consider FILE to be infinitely new") },
353 { CHAR_MAX
+3, flag
, (char *) &warn_undefined_variables_flag
, 1, 1, 0, 0, 0,
354 "warn-undefined-variables", 0,
355 _("Warn when an undefined variable is referenced") },
359 /* Secondary long names for options. */
361 static struct option long_option_aliases
[] =
363 { "quiet", no_argument
, 0, 's' },
364 { "stop", no_argument
, 0, 'S' },
365 { "new-file", required_argument
, 0, 'W' },
366 { "assume-new", required_argument
, 0, 'W' },
367 { "assume-old", required_argument
, 0, 'o' },
368 { "max-load", optional_argument
, 0, 'l' },
369 { "dry-run", no_argument
, 0, 'n' },
370 { "recon", no_argument
, 0, 'n' },
371 { "makefile", required_argument
, 0, 'f' },
374 /* The usage message prints the descriptions of options starting in
375 this column. Make sure it leaves enough room for the longest
376 description to fit in less than 80 characters. */
378 #define DESCRIPTION_COLUMN 30
380 /* List of goal targets. */
382 static struct dep
*goals
, *lastgoal
;
384 /* List of variables which were defined on the command line
385 (or, equivalently, in MAKEFLAGS). */
387 struct command_variable
389 struct command_variable
*next
;
390 struct variable
*variable
;
392 static struct command_variable
*command_variables
;
394 /* The name we were invoked with. */
398 /* Our current directory before processing any -C options. */
400 char *directory_before_chdir
;
402 /* Our current directory after processing all -C options. */
404 char *starting_directory
;
406 /* Value of the MAKELEVEL variable at startup (or 0). */
408 unsigned int makelevel
;
410 /* First file defined in the makefile whose name does not
411 start with `.'. This is the default to remake if the
412 command line does not specify. */
414 struct file
*default_goal_file
;
416 /* Pointer to structure for the file .DEFAULT
417 whose commands are used for any file that has none of its own.
418 This is zero if the makefiles do not define .DEFAULT. */
420 struct file
*default_file
;
422 /* Nonzero if we have seen the magic `.POSIX' target.
423 This turns on pedantic compliance with POSIX.2. */
427 /* Nonzero if we have seen the `.NOTPARALLEL' target.
428 This turns off parallel builds for this invocation of make. */
432 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
433 print one warning about it during the run, and (b) we can print a final
434 warning at the end of the run. */
436 int clock_skew_detected
;
438 /* Mask of signals that are being caught with fatal_error_signal. */
441 sigset_t fatal_signal_set
;
443 #ifdef HAVE_SIGSETMASK
444 int fatal_signal_mask
;
449 enter_command_line_file (name
)
453 fatal (NILF
, _("empty string invalid as file name"));
457 char *expanded
= tilde_expand (name
);
459 name
= expanded
; /* Memory leak; I don't care. */
462 /* This is also done in parse_file_seq, so this is redundant
463 for names read from makefiles. It is here for names passed
464 on the command line. */
465 while (name
[0] == '.' && name
[1] == '/' && name
[2] != '\0')
469 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
475 /* It was all slashes! Move back to the dot and truncate
476 it after the first slash, so it becomes just "./". */
479 while (name
[0] != '.');
483 return enter_file (xstrdup (name
));
486 /* Toggle -d on receipt of SIGUSR1. */
489 debug_signal_handler (sig
)
497 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
498 * exception and print it to stderr instead.
500 * If ! DB_EXTRA, just print a simple message and exit.
501 * If DB_EXTRA, print a more verbose message.
502 * If compiled for DEBUG, let exception pass through to GUI so that
503 * debuggers can attach.
506 handle_runtime_exceptions( struct _EXCEPTION_POINTERS
*exinfo
)
508 PEXCEPTION_RECORD exrec
= exinfo
->ExceptionRecord
;
509 LPSTR cmdline
= GetCommandLine();
510 LPSTR prg
= strtok(cmdline
, " ");
514 LPTSTR lpszStrings
[1];
517 if (! ISDB (DB_EXTRA
))
519 sprintf(errmsg
, _("%s: Interrupt/Exception caught "), prg
);
520 sprintf(&errmsg
[strlen(errmsg
)],
521 "(code = 0x%x, addr = 0x%x)\r\n",
522 exrec
->ExceptionCode
, exrec
->ExceptionAddress
);
523 fprintf(stderr
, errmsg
);
528 _("\r\nUnhandled exception filter called from program %s\r\n"), prg
);
529 sprintf(&errmsg
[strlen(errmsg
)], "ExceptionCode = %x\r\n",
530 exrec
->ExceptionCode
);
531 sprintf(&errmsg
[strlen(errmsg
)], "ExceptionFlags = %x\r\n",
532 exrec
->ExceptionFlags
);
533 sprintf(&errmsg
[strlen(errmsg
)], "ExceptionAddress = %x\r\n",
534 exrec
->ExceptionAddress
);
536 if (exrec
->ExceptionCode
== EXCEPTION_ACCESS_VIOLATION
537 && exrec
->NumberParameters
>= 2)
538 sprintf(&errmsg
[strlen(errmsg
)],
539 _("Access violation: %s operation at address %x\r\n"),
540 exrec
->ExceptionInformation
[0] ? _("write"): _("read"),
541 exrec
->ExceptionInformation
[1]);
543 /* turn this on if we want to put stuff in the event log too */
545 hEventSource
= RegisterEventSource(NULL
, "GNU Make");
546 lpszStrings
[0] = errmsg
;
548 if (hEventSource
!= NULL
)
550 ReportEvent(hEventSource
, /* handle of event source */
551 EVENTLOG_ERROR_TYPE
, /* event type */
552 0, /* event category */
554 NULL
, /* current user's SID */
555 1, /* strings in lpszStrings */
556 0, /* no bytes of raw data */
557 lpszStrings
, /* array of error strings */
558 NULL
); /* no raw data */
560 (VOID
) DeregisterEventSource(hEventSource
);
564 /* Write the error to stderr too */
565 fprintf(stderr
, errmsg
);
568 return EXCEPTION_CONTINUE_SEARCH
;
571 return (255); /* not reached */
576 * On WIN32 systems we don't have the luxury of a /bin directory that
577 * is mapped globally to every drive mounted to the system. Since make could
578 * be invoked from any drive, and we don't want to propogate /bin/sh
579 * to every single drive. Allow ourselves a chance to search for
580 * a value for default shell here (if the default path does not exist).
584 find_and_set_default_shell(char *token
)
589 extern char *default_shell
;
592 search_token
= default_shell
;
594 search_token
= token
;
596 if (!no_default_sh_exe
&&
597 (token
== NULL
|| !strcmp(search_token
, default_shell
))) {
598 /* no new information, path already set or known */
600 } else if (file_exists_p(search_token
)) {
601 /* search token path was found */
602 sprintf(sh_path
, "%s", search_token
);
603 default_shell
= xstrdup(w32ify(sh_path
,0));
605 (_("find_and_set_shell setting default_shell = %s\n"), default_shell
));
609 struct variable
*v
= lookup_variable ("Path", 4);
612 * Search Path for shell
618 ep
= strchr(p
, PATH_SEPARATOR_CHAR
);
623 if (dir_file_exists_p(p
, search_token
)) {
624 sprintf(sh_path
, "%s/%s", p
, search_token
);
625 default_shell
= xstrdup(w32ify(sh_path
,0));
627 *ep
= PATH_SEPARATOR_CHAR
;
632 *ep
= PATH_SEPARATOR_CHAR
;
636 ep
= strchr(p
, PATH_SEPARATOR_CHAR
);
639 /* be sure to check last element of Path */
640 if (p
&& *p
&& dir_file_exists_p(p
, search_token
)) {
641 sprintf(sh_path
, "%s/%s", p
, search_token
);
642 default_shell
= xstrdup(w32ify(sh_path
,0));
648 (_("find_and_set_shell path search set default_shell = %s\n"),
654 if (!unixy_shell
&& sh_found
&&
655 (strstr(default_shell
, "sh") || strstr(default_shell
, "SH"))) {
657 batch_mode_shell
= 0;
660 #ifdef BATCH_MODE_ONLY_SHELL
661 batch_mode_shell
= 1;
666 #endif /* WINDOWS32 */
671 msdos_return_to_initial_directory ()
673 if (directory_before_chdir
)
674 chdir (directory_before_chdir
);
680 main (argc
, argv
, envp
)
685 int main (int argc
, char ** argv
)
688 static char *stdin_nm
= 0;
689 register struct file
*f
;
690 register unsigned int i
;
692 struct dep
*read_makefiles
;
693 PATH_VAR (current_directory
);
695 char *unix_path
= NULL
;
696 char *windows32_path
= NULL
;
698 SetUnhandledExceptionFilter(handle_runtime_exceptions
);
700 /* start off assuming we have no shell */
702 no_default_sh_exe
= 1;
705 default_goal_file
= 0;
708 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
709 /* Request the most powerful version of `system', to
710 make up for the dumb default shell. */
711 __system_flags
= (__system_redirect
713 | __system_allow_multiple_cmds
714 | __system_allow_long_cmds
715 | __system_handle_null_commands
716 | __system_emulate_chdir
);
720 #if !defined (HAVE_STRSIGNAL) && !defined (HAVE_SYS_SIGLIST)
725 sigemptyset (&fatal_signal_set
);
726 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
728 #ifdef HAVE_SIGSETMASK
729 fatal_signal_mask
= 0;
730 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
736 #define FATAL_SIG(sig) \
737 if (signal ((sig), fatal_error_signal) == SIG_IGN) \
738 (void) signal ((sig), SIG_IGN); \
752 FATAL_SIG (SIGDANGER
);
763 /* Do not ignore the child-death signal. This must be done before
764 any children could possibly be created; otherwise, the wait
765 functions won't work on systems with the SVR4 ECHILD brain
766 damage, if our invoker is ignoring this signal. */
768 #ifdef HAVE_WAIT_NOHANG
770 (void) signal (SIGCHLD
, SIG_DFL
);
772 # if defined SIGCLD && SIGCLD != SIGCHLD
773 (void) signal (SIGCLD
, SIG_DFL
);
777 /* Make sure stdout is line-buffered. */
779 #ifdef HAVE_SETLINEBUF
782 #ifndef SETVBUF_REVERSED
783 setvbuf (stdout
, (char *) 0, _IOLBF
, BUFSIZ
);
784 #else /* setvbuf not reversed. */
785 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
786 setvbuf (stdout
, _IOLBF
, xmalloc (BUFSIZ
), BUFSIZ
);
787 #endif /* setvbuf reversed. */
788 #endif /* setlinebuf missing. */
790 /* Figure out where this program lives. */
794 if (argv
[0][0] == '\0')
799 program
= strrchr (argv
[0], ']');
801 program
= strrchr (argv
[0], '/');
805 program
= strrchr (argv
[0], '\\');
808 /* Some weird environments might pass us argv[0] with
809 both kinds of slashes; we must find the rightmost. */
810 char *p
= strrchr (argv
[0], '\\');
811 if (p
&& p
> program
)
814 if (program
== 0 && argv
[0][1] == ':')
815 program
= argv
[0] + 1;
823 /* Set up to access user data (files). */
826 /* Figure out where we are. */
829 if (getcwd_fs (current_directory
, GET_PATH_MAX
) == 0)
831 if (getcwd (current_directory
, GET_PATH_MAX
) == 0)
835 perror_with_name ("getcwd: ", "");
837 error (NILF
, "getwd: %s", current_directory
);
839 current_directory
[0] = '\0';
840 directory_before_chdir
= 0;
843 directory_before_chdir
= xstrdup (current_directory
);
845 /* Make sure we will return to the initial directory, come what may. */
846 atexit (msdos_return_to_initial_directory
);
849 /* Read in variables from the environment. It is important that this be
850 done before $(MAKE) is figured out so its definitions will not be
851 from the environment. */
854 for (i
= 0; envp
[i
] != 0; ++i
)
857 register char *ep
= envp
[i
];
859 /* by default, everything gets defined and exported */
865 if (!unix_path
&& strneq(envp
[i
], "PATH=", 5))
867 else if (!windows32_path
&& !strnicmp(envp
[i
], "Path=", 5)) {
868 do_not_define
= 1; /* it gets defined after loop exits */
869 windows32_path
= ep
+1;
872 /* The result of pointer arithmetic is cast to unsigned int for
873 machines where ptrdiff_t is a different size that doesn't widen
876 define_variable (envp
[i
], (unsigned int) (ep
- envp
[i
]),
878 /* Force exportation of every variable culled from the environment.
879 We used to rely on target_environment's v_default code to do this.
880 But that does not work for the case where an environment variable
881 is redefined in a makefile with `override'; it should then still
882 be exported, because it was originally in the environment. */
887 * Make sure that this particular spelling of 'Path' is available
890 define_variable("Path", 4, windows32_path
, o_env
, 1)->export
= v_export
;
892 define_variable("Path", 4, unix_path
, o_env
, 1)->export
= v_export
;
894 define_variable("Path", 4, "", o_env
, 1)->export
= v_export
;
897 * PATH defaults to Path iff PATH not found and Path is found.
899 if (!unix_path
&& windows32_path
)
900 define_variable("PATH", 4, windows32_path
, o_env
, 1)->export
= v_export
;
902 #else /* For Amiga, read the ENV: device, ignoring all dirs */
907 __aligned
struct FileInfoBlock fib
;
909 env
= Lock ("ENV:", ACCESS_READ
);
912 old
= CurrentDir (DupLock(env
));
915 while (ExNext (env
, &fib
))
917 if (fib
.fib_DirEntryType
< 0) /* File */
919 /* Define an empty variable. It will be filled in
920 variable_lookup(). Makes startup quite a bit
922 define_variable (fib
.fib_FileName
,
923 strlen (fib
.fib_FileName
),
924 "", o_env
, 1)->export
= v_export
;
928 UnLock(CurrentDir(old
));
933 /* Decode the switches. */
935 decode_env_switches ("MAKEFLAGS", 9);
937 /* People write things like:
938 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
939 and we set the -p, -i and -e switches. Doesn't seem quite right. */
940 decode_env_switches ("MFLAGS", 6);
942 decode_switches (argc
, argv
, 0);
945 fprintf(stderr
, "%s (pid = %d)\n", argv
[0], GetCurrentProcessId());
946 fprintf(stderr
, _("%s is suspending for 30 seconds..."), argv
[0]);
948 fprintf(stderr
, _("done sleep(30). Continuing.\n"));
952 /* If we have the "extra" level, force the basic level too. */
955 db_level
|= DB_BASIC
;
957 /* Print version information. */
959 if (print_version_flag
|| print_data_base_flag
|| db_level
)
962 /* `make --version' is supposed to just print the version and exit. */
963 if (print_version_flag
)
967 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
968 (If it is a relative pathname with a slash, prepend our directory name
969 so the result will run the same program regardless of the current dir.
970 If it is a name with no slash, we can only hope that PATH did not
971 find it in the current directory.) */
974 * Convert from backslashes to forward slashes for
975 * programs like sh which don't like them. Shouldn't
976 * matter if the path is one way or the other for
979 if (strpbrk(argv
[0], "/:\\") ||
980 strstr(argv
[0], "..") ||
981 strneq(argv
[0], "//", 2))
982 argv
[0] = xstrdup(w32ify(argv
[0],1));
983 #else /* WINDOWS32 */
985 if (strchr (argv
[0], '\\'))
989 argv
[0] = xstrdup (argv
[0]);
990 for (p
= argv
[0]; *p
; p
++)
994 /* If argv[0] is not in absolute form, prepend the current
995 directory. This can happen when Make is invoked by another DJGPP
996 program that uses a non-absolute name. */
997 if (current_directory
[0] != '\0'
999 && (argv
[0][0] != '/' && (argv
[0][0] == '\0' || argv
[0][1] != ':')))
1000 argv
[0] = concat (current_directory
, "/", argv
[0]);
1001 #else /* !__MSDOS__ */
1002 if (current_directory
[0] != '\0'
1003 && argv
[0] != 0 && argv
[0][0] != '/' && strchr (argv
[0], '/') != 0)
1004 argv
[0] = concat (current_directory
, "/", argv
[0]);
1005 #endif /* !__MSDOS__ */
1006 #endif /* WINDOWS32 */
1009 /* The extra indirection through $(MAKE_COMMAND) is done
1010 for hysterical raisins. */
1011 (void) define_variable ("MAKE_COMMAND", 12, argv
[0], o_default
, 0);
1012 (void) define_variable ("MAKE", 4, "$(MAKE_COMMAND)", o_default
, 1);
1014 if (command_variables
!= 0)
1016 struct command_variable
*cv
;
1018 unsigned int len
= 0;
1021 /* Figure out how much space will be taken up by the command-line
1022 variable definitions. */
1023 for (cv
= command_variables
; cv
!= 0; cv
= cv
->next
)
1026 len
+= 2 * strlen (v
->name
);
1030 len
+= 2 * strlen (v
->value
);
1034 /* Now allocate a buffer big enough and fill it. */
1035 p
= value
= (char *) alloca (len
);
1036 for (cv
= command_variables
; cv
!= 0; cv
= cv
->next
)
1039 p
= quote_for_env (p
, v
->name
);
1043 p
= quote_for_env (p
, v
->value
);
1046 p
[-1] = '\0'; /* Kill the final space and terminate. */
1048 /* Define an unchangeable variable with a name that no POSIX.2
1049 makefile could validly use for its own variable. */
1050 (void) define_variable ("-*-command-variables-*-", 23,
1051 value
, o_automatic
, 0);
1053 /* Define the variable; this will not override any user definition.
1054 Normally a reference to this variable is written into the value of
1055 MAKEFLAGS, allowing the user to override this value to affect the
1056 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1057 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1058 a reference to this hidden variable is written instead. */
1059 (void) define_variable ("MAKEOVERRIDES", 13,
1060 "${-*-command-variables-*-}", o_env
, 1);
1063 /* If there were -C flags, move ourselves about. */
1064 if (directories
!= 0)
1065 for (i
= 0; directories
->list
[i
] != 0; ++i
)
1067 char *dir
= directories
->list
[i
];
1070 char *expanded
= tilde_expand (dir
);
1074 if (chdir (dir
) < 0)
1075 pfatal_with_name (dir
);
1076 if (dir
!= directories
->list
[i
])
1082 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1083 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1085 * The functions in dir.c can incorrectly cache information for "."
1086 * before we have changed directory and this can cause file
1087 * lookups to fail because the current directory (.) was pointing
1088 * at the wrong place when it was first evaluated.
1090 no_default_sh_exe
= !find_and_set_default_shell(NULL
);
1092 #endif /* WINDOWS32 */
1093 /* Figure out the level of recursion. */
1095 struct variable
*v
= lookup_variable ("MAKELEVEL", 9);
1096 if (v
!= 0 && *v
->value
!= '\0' && *v
->value
!= '-')
1097 makelevel
= (unsigned int) atoi (v
->value
);
1102 /* Except under -s, always do -w in sub-makes and under -C. */
1103 if (!silent_flag
&& (directories
!= 0 || makelevel
> 0))
1104 print_directory_flag
= 1;
1106 /* Let the user disable that with --no-print-directory. */
1107 if (inhibit_print_directory_flag
)
1108 print_directory_flag
= 0;
1110 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1111 if (no_builtin_variables_flag
)
1112 no_builtin_rules_flag
= 1;
1114 /* Construct the list of include directories to search. */
1116 construct_include_path (include_directories
== 0 ? (char **) 0
1117 : include_directories
->list
);
1119 /* Figure out where we are now, after chdir'ing. */
1120 if (directories
== 0)
1121 /* We didn't move, so we're still in the same place. */
1122 starting_directory
= current_directory
;
1126 if (getcwd_fs (current_directory
, GET_PATH_MAX
) == 0)
1128 if (getcwd (current_directory
, GET_PATH_MAX
) == 0)
1132 perror_with_name ("getcwd: ", "");
1134 error (NILF
, "getwd: %s", current_directory
);
1136 starting_directory
= 0;
1139 starting_directory
= current_directory
;
1142 (void) define_variable ("CURDIR", 6, current_directory
, o_default
, 0);
1144 /* Read any stdin makefiles into temporary files. */
1148 register unsigned int i
;
1149 for (i
= 0; i
< makefiles
->idx
; ++i
)
1150 if (makefiles
->list
[i
][0] == '-' && makefiles
->list
[i
][1] == '\0')
1152 /* This makefile is standard input. Since we may re-exec
1153 and thus re-read the makefiles, we read standard input
1154 into a temporary file and read from that. */
1157 /* Make a unique filename. */
1161 static char name
[] = "sys$scratch:GmXXXXXX";
1163 static char name
[] = "/tmp/GmXXXXXX";
1165 (void) mktemp (name
);
1167 static char name
[L_tmpnam
];
1168 (void) tmpnam (name
);
1172 fatal (NILF
, _("Makefile from standard input specified twice."));
1174 outfile
= fopen (name
, "w");
1176 pfatal_with_name (_("fopen (temporary file)"));
1177 while (!feof (stdin
))
1180 unsigned int n
= fread (buf
, 1, sizeof (buf
), stdin
);
1181 if (n
> 0 && fwrite (buf
, 1, n
, outfile
) != n
)
1182 pfatal_with_name (_("fwrite (temporary file)"));
1184 (void) fclose (outfile
);
1186 /* Replace the name that read_all_makefiles will
1187 see with the name of the temporary file. */
1190 /* SGI compiler requires alloca's result be assigned simply. */
1191 temp
= (char *) alloca (sizeof (name
));
1192 bcopy (name
, temp
, sizeof (name
));
1193 makefiles
->list
[i
] = temp
;
1196 /* Make sure the temporary file will not be remade. */
1197 stdin_nm
= savestring (name
, sizeof (name
) -1);
1198 f
= enter_file (stdin_nm
);
1200 f
->update_status
= 0;
1201 f
->command_state
= cs_finished
;
1202 /* Can't be intermediate, or it'll be removed too early for
1204 f
->intermediate
= 0;
1209 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1210 /* Set up to handle children dying. This must be done before
1211 reading in the makefiles so that `shell' function calls will work.
1213 If we don't have a hanging wait we have to fall back to old, broken
1214 functionality here and rely on the signal handler and counting
1217 If we're using the jobs pipe we need a signal handler so that
1218 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1219 jobserver pipe in job.c if we're waiting for a token.
1221 If none of these are true, we don't need a signal handler at all. */
1223 extern RETSIGTYPE child_handler
PARAMS ((int sig
));
1225 # if defined HAVE_SIGACTION
1226 struct sigaction sa
;
1228 bzero ((char *)&sa
, sizeof (struct sigaction
));
1229 sa
.sa_handler
= child_handler
;
1230 # if defined SA_INTERRUPT
1231 /* This is supposed to be the default, but what the heck... */
1232 sa
.sa_flags
= SA_INTERRUPT
;
1234 # define HANDLESIG(s) sigaction (s, &sa, NULL)
1236 # define HANDLESIG(s) signal (s, child_handler)
1239 /* OK, now actually install the handlers. */
1240 # if defined SIGCHLD
1241 (void) HANDLESIG (SIGCHLD
);
1243 # if defined SIGCLD && SIGCLD != SIGCHLD
1244 (void) HANDLESIG (SIGCLD
);
1249 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1251 (void) signal (SIGUSR1
, debug_signal_handler
);
1254 /* Define the initial list of suffixes for old-style rules. */
1256 set_default_suffixes ();
1258 /* Define the file rules for the built-in suffix rules. These will later
1259 be converted into pattern rules. We used to do this in
1260 install_default_implicit_rules, but since that happens after reading
1261 makefiles, it results in the built-in pattern rules taking precedence
1262 over makefile-specified suffix rules, which is wrong. */
1264 install_default_suffix_rules ();
1266 /* Define some internal and special variables. */
1268 define_automatic_variables ();
1270 /* Set up the MAKEFLAGS and MFLAGS variables
1271 so makefiles can look at them. */
1273 define_makeflags (0, 0);
1275 /* Define the default variables. */
1276 define_default_variables ();
1278 /* Read all the makefiles. */
1280 default_file
= enter_file (".DEFAULT");
1283 = read_all_makefiles (makefiles
== 0 ? (char **) 0 : makefiles
->list
);
1286 /* look one last time after reading all Makefiles */
1287 if (no_default_sh_exe
)
1288 no_default_sh_exe
= !find_and_set_default_shell(NULL
);
1290 if (no_default_sh_exe
&& job_slots
!= 1) {
1291 error (NILF
, _("Do not specify -j or --jobs if sh.exe is not available."));
1292 error (NILF
, _("Resetting make for single job mode."));
1295 #endif /* WINDOWS32 */
1298 /* We need to know what kind of shell we will be using. */
1300 extern int _is_unixy_shell (const char *_path
);
1301 struct variable
*shv
= lookup_variable ("SHELL", 5);
1302 extern int unixy_shell
;
1303 extern char *default_shell
;
1305 if (shv
&& *shv
->value
)
1307 char *shell_path
= recursively_expand(shv
);
1309 if (shell_path
&& _is_unixy_shell (shell_path
))
1314 default_shell
= shell_path
;
1317 #endif /* __MSDOS__ */
1319 /* Decode switches again, in case the variables were set by the makefile. */
1320 decode_env_switches ("MAKEFLAGS", 9);
1322 decode_env_switches ("MFLAGS", 6);
1329 _("Parallel jobs (-j) are not supported on this platform."));
1330 error (NILF
, _("Resetting to single job (-j1) mode."));
1335 #ifdef MAKE_JOBSERVER
1336 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1342 for (i
=1; i
< jobserver_fds
->idx
; ++i
)
1343 if (!streq (jobserver_fds
->list
[0], jobserver_fds
->list
[i
]))
1344 fatal (NILF
, _("internal error: multiple --jobserver-fds options"));
1346 /* Now parse the fds string and make sure it has the proper format. */
1348 cp
= jobserver_fds
->list
[0];
1350 if (sscanf (cp
, "%d,%d", &job_fds
[0], &job_fds
[1]) != 2)
1352 _("internal error: invalid --jobserver-fds string `%s'"), cp
);
1354 /* The combination of a pipe + !job_slots means we're using the
1355 jobserver. If !job_slots and we don't have a pipe, we can start
1356 infinite jobs. If we see both a pipe and job_slots >0 that means the
1357 user set -j explicitly. This is broken; in this case obey the user
1358 (ignore the jobserver pipe for this make) but print a message. */
1362 _("warning: -jN forced in submake: disabling jobserver mode."));
1364 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1365 handler. If this fails with EBADF, the parent has closed the pipe
1366 on us because it didn't think we were a submake. If so, print a
1367 warning then default to -j1. */
1369 else if ((job_rfd
= dup (job_fds
[0])) < 0)
1372 pfatal_with_name (_("dup jobserver"));
1375 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1383 job_fds
[0] = job_fds
[1] = -1;
1384 free (jobserver_fds
->list
);
1385 free (jobserver_fds
);
1390 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1391 Set up the pipe and install the fds option for our children. */
1397 if (pipe (job_fds
) < 0 || (job_rfd
= dup (job_fds
[0])) < 0)
1398 pfatal_with_name (_("creating jobs pipe"));
1400 /* Every make assumes that it always has one job it can run. For the
1401 submakes it's the token they were given by their parent. For the
1402 top make, we just subtract one from the number the user wants. We
1403 want job_slots to be 0 to indicate we're using the jobserver. */
1406 while (write (job_fds
[1], &c
, 1) != 1)
1408 pfatal_with_name (_("init jobserver pipe"));
1410 /* Fill in the jobserver_fds struct for our children. */
1412 jobserver_fds
= (struct stringlist
*)
1413 xmalloc (sizeof (struct stringlist
));
1414 jobserver_fds
->list
= (char **) xmalloc (sizeof (char *));
1415 jobserver_fds
->list
[0] = xmalloc ((sizeof ("1024")*2)+1);
1417 sprintf (jobserver_fds
->list
[0], "%d,%d", job_fds
[0], job_fds
[1]);
1418 jobserver_fds
->idx
= 1;
1419 jobserver_fds
->max
= 1;
1423 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1425 define_makeflags (1, 0);
1427 /* Make each `struct dep' point at the `struct file' for the file
1428 depended on. Also do magic for special targets. */
1432 /* Convert old-style suffix rules to pattern rules. It is important to
1433 do this before installing the built-in pattern rules below, so that
1434 makefile-specified suffix rules take precedence over built-in pattern
1437 convert_to_pattern ();
1439 /* Install the default implicit pattern rules.
1440 This used to be done before reading the makefiles.
1441 But in that case, built-in pattern rules were in the chain
1442 before user-defined ones, so they matched first. */
1444 install_default_implicit_rules ();
1446 /* Compute implicit rule limits. */
1448 count_implicit_rule_limits ();
1450 /* Construct the listings of directories in VPATH lists. */
1452 build_vpath_lists ();
1454 /* Mark files given with -o flags as very old (00:00:01.00 Jan 1, 1970)
1455 and as having been updated already, and files given with -W flags as
1456 brand new (time-stamp as far as possible into the future). */
1459 for (p
= old_files
->list
; *p
!= 0; ++p
)
1461 f
= enter_command_line_file (*p
);
1462 f
->last_mtime
= f
->mtime_before_update
= (FILE_TIMESTAMP
) 1;
1464 f
->update_status
= 0;
1465 f
->command_state
= cs_finished
;
1470 for (p
= new_files
->list
; *p
!= 0; ++p
)
1472 f
= enter_command_line_file (*p
);
1473 f
->last_mtime
= f
->mtime_before_update
= NEW_MTIME
;
1477 /* Initialize the remote job module. */
1480 if (read_makefiles
!= 0)
1482 /* Update any makefiles if necessary. */
1484 FILE_TIMESTAMP
*makefile_mtimes
= 0;
1485 unsigned int mm_idx
= 0;
1486 char **nargv
= argv
;
1488 int orig_db_level
= db_level
;
1490 if (! ISDB (DB_MAKEFILES
))
1493 DB (DB_BASIC
, (_("Updating makefiles....\n")));
1495 /* Remove any makefiles we don't want to try to update.
1496 Also record the current modtimes so we can compare them later. */
1498 register struct dep
*d
, *last
;
1503 register struct file
*f
= d
->file
;
1504 if (f
->double_colon
)
1505 for (f
= f
->double_colon
; f
!= NULL
; f
= f
->prev
)
1507 if (f
->deps
== 0 && f
->cmds
!= 0)
1509 /* This makefile is a :: target with commands, but
1510 no dependencies. So, it will always be remade.
1511 This might well cause an infinite loop, so don't
1512 try to remake it. (This will only happen if
1513 your makefiles are written exceptionally
1514 stupidly; but if you work for Athena, that's how
1515 you write your makefiles.) */
1518 (_("Makefile `%s' might loop; not remaking it.\n"),
1522 read_makefiles
= d
->next
;
1524 last
->next
= d
->next
;
1526 /* Free the storage. */
1529 d
= last
== 0 ? read_makefiles
: last
->next
;
1534 if (f
== NULL
|| !f
->double_colon
)
1536 makefile_mtimes
= (FILE_TIMESTAMP
*)
1537 xrealloc ((char *) makefile_mtimes
,
1538 (mm_idx
+ 1) * sizeof (FILE_TIMESTAMP
));
1539 makefile_mtimes
[mm_idx
++] = file_mtime_no_search (d
->file
);
1546 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1547 define_makeflags (1, 1);
1549 switch (update_goal_chain (read_makefiles
, 1))
1553 #define BOGUS_UPDATE_STATUS 0
1554 assert (BOGUS_UPDATE_STATUS
);
1562 /* Failed to update. Figure out if we care. */
1564 /* Nonzero if any makefile was successfully remade. */
1566 /* Nonzero if any makefile we care about failed
1567 in updating or could not be found at all. */
1569 register unsigned int i
;
1572 for (i
= 0, d
= read_makefiles
; d
!= 0; ++i
, d
= d
->next
)
1574 /* Reset the considered flag; we may need to look at the file
1575 again to print an error. */
1576 d
->file
->considered
= 0;
1578 if (d
->file
->updated
)
1580 /* This makefile was updated. */
1581 if (d
->file
->update_status
== 0)
1583 /* It was successfully updated. */
1584 any_remade
|= (file_mtime_no_search (d
->file
)
1585 != makefile_mtimes
[i
]);
1587 else if (! (d
->changed
& RM_DONTCARE
))
1589 FILE_TIMESTAMP mtime
;
1590 /* The update failed and this makefile was not
1591 from the MAKEFILES variable, so we care. */
1592 error (NILF
, _("Failed to remake makefile `%s'."),
1594 mtime
= file_mtime_no_search (d
->file
);
1595 any_remade
|= (mtime
!= (FILE_TIMESTAMP
) -1
1596 && mtime
!= makefile_mtimes
[i
]);
1600 /* This makefile was not found at all. */
1601 if (! (d
->changed
& RM_DONTCARE
))
1603 /* This is a makefile we care about. See how much. */
1604 if (d
->changed
& RM_INCLUDED
)
1605 /* An included makefile. We don't need
1606 to die, but we do want to complain. */
1608 _("Included makefile `%s' was not found."),
1612 /* A normal makefile. We must die later. */
1613 error (NILF
, _("Makefile `%s' was not found"),
1619 /* Reset this to empty so we get the right error message below. */
1631 /* Updated successfully. Re-exec ourselves. */
1633 remove_intermediates (0);
1635 if (print_data_base_flag
)
1638 log_working_directory (0);
1642 /* These names might have changed. */
1643 register unsigned int i
, j
= 0;
1644 for (i
= 1; i
< argc
; ++i
)
1645 if (strneq (argv
[i
], "-f", 2)) /* XXX */
1647 char *p
= &argv
[i
][2];
1649 argv
[++i
] = makefiles
->list
[j
];
1651 argv
[i
] = concat ("-f", makefiles
->list
[j
], "");
1656 /* Add -o option for the stdin temporary file, if necessary. */
1659 nargv
= (char **) xmalloc ((nargc
+ 2) * sizeof (char *));
1660 bcopy ((char *) argv
, (char *) nargv
, argc
* sizeof (char *));
1661 nargv
[nargc
++] = concat ("-o", stdin_nm
, "");
1665 if (directories
!= 0 && directories
->idx
> 0)
1668 if (directory_before_chdir
!= 0)
1670 if (chdir (directory_before_chdir
) < 0)
1672 perror_with_name ("chdir", "");
1681 fatal (NILF
, _("Couldn't change back to original directory."));
1685 for (p
= environ
; *p
!= 0; ++p
)
1686 if (strneq (*p
, "MAKELEVEL=", 10))
1688 /* The SGI compiler apparently can't understand
1689 the concept of storing the result of a function
1690 in something other than a local variable. */
1692 sgi_loses
= (char *) alloca (40);
1694 sprintf (*p
, "MAKELEVEL=%u", makelevel
);
1702 len
= GetVar ("MAKELEVEL", buffer
, sizeof (buffer
), GVF_GLOBAL_ONLY
);
1706 sprintf (buffer
, "%u", makelevel
);
1707 SetVar ("MAKELEVEL", buffer
, -1, GVF_GLOBAL_ONLY
);
1712 if (ISDB (DB_BASIC
))
1715 fputs (_("Re-executing:"), stdout
);
1716 for (p
= nargv
; *p
!= 0; ++p
)
1724 /* Close the dup'd jobserver pipe if we opened one. */
1729 exec_command (nargv
, environ
);
1731 exec_command (nargv
);
1737 db_level
= orig_db_level
;
1740 /* Set up `MAKEFLAGS' again for the normal targets. */
1741 define_makeflags (1, 0);
1743 /* If there is a temp file from reading a makefile from stdin, get rid of
1745 if (stdin_nm
&& unlink (stdin_nm
) < 0 && errno
!= ENOENT
)
1746 perror_with_name (_("unlink (temporary file): "), stdin_nm
);
1751 /* If there were no command-line goals, use the default. */
1754 if (default_goal_file
!= 0)
1756 goals
= (struct dep
*) xmalloc (sizeof (struct dep
));
1759 goals
->file
= default_goal_file
;
1767 if (read_makefiles
== 0)
1768 fatal (NILF
, _("No targets specified and no makefile found"));
1770 fatal (NILF
, _("No targets"));
1773 /* Update the goals. */
1775 DB (DB_BASIC
, (_("Updating goal targets....\n")));
1777 switch (update_goal_chain (goals
, 0))
1780 /* Nothing happened. */
1782 /* Updated successfully. */
1783 status
= EXIT_SUCCESS
;
1786 /* Updating failed. POSIX.2 specifies exit status >1 for this;
1787 but in VMS, there is only success and failure. */
1788 status
= EXIT_FAILURE
? 2 : EXIT_FAILURE
;
1791 /* We are under -q and would run some commands. */
1792 status
= EXIT_FAILURE
;
1798 /* If we detected some clock skew, generate one last warning */
1799 if (clock_skew_detected
)
1801 _("warning: Clock skew detected. Your build may be incomplete."));
1810 /* Parsing of arguments, decoding of switches. */
1812 static char options
[1 + sizeof (switches
) / sizeof (switches
[0]) * 3];
1813 static struct option long_options
[(sizeof (switches
) / sizeof (switches
[0])) +
1814 (sizeof (long_option_aliases
) /
1815 sizeof (long_option_aliases
[0]))];
1817 /* Fill in the string and vector for getopt. */
1823 register unsigned int i
;
1825 if (options
[0] != '\0')
1831 /* Return switch and non-switch args in order, regardless of
1832 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
1835 for (i
= 0; switches
[i
].c
!= '\0'; ++i
)
1837 long_options
[i
].name
= (switches
[i
].long_name
== 0 ? "" :
1838 switches
[i
].long_name
);
1839 long_options
[i
].flag
= 0;
1840 long_options
[i
].val
= switches
[i
].c
;
1841 if (short_option (switches
[i
].c
))
1842 *p
++ = switches
[i
].c
;
1843 switch (switches
[i
].type
)
1848 long_options
[i
].has_arg
= no_argument
;
1854 if (short_option (switches
[i
].c
))
1856 if (switches
[i
].noarg_value
!= 0)
1858 if (short_option (switches
[i
].c
))
1860 long_options
[i
].has_arg
= optional_argument
;
1863 long_options
[i
].has_arg
= required_argument
;
1868 for (c
= 0; c
< (sizeof (long_option_aliases
) /
1869 sizeof (long_option_aliases
[0]));
1871 long_options
[i
++] = long_option_aliases
[c
];
1872 long_options
[i
].name
= 0;
1876 handle_non_switch_argument (arg
, env
)
1880 /* Non-option argument. It might be a variable definition. */
1882 if (arg
[0] == '-' && arg
[1] == '\0')
1883 /* Ignore plain `-' for compatibility. */
1885 v
= try_variable_definition (0, arg
, o_command
, 0);
1888 /* It is indeed a variable definition. Record a pointer to
1889 the variable for later use in define_makeflags. */
1890 struct command_variable
*cv
1891 = (struct command_variable
*) xmalloc (sizeof (*cv
));
1893 cv
->next
= command_variables
;
1894 command_variables
= cv
;
1898 /* Not an option or variable definition; it must be a goal
1899 target! Enter it as a file and add it to the dep chain of
1901 struct file
*f
= enter_command_line_file (arg
);
1906 goals
= (struct dep
*) xmalloc (sizeof (struct dep
));
1911 lastgoal
->next
= (struct dep
*) xmalloc (sizeof (struct dep
));
1912 lastgoal
= lastgoal
->next
;
1918 /* Add this target name to the MAKECMDGOALS variable. */
1922 v
= lookup_variable ("MAKECMDGOALS", 12);
1927 /* Paste the old and new values together */
1928 unsigned int oldlen
, newlen
;
1930 oldlen
= strlen (v
->value
);
1931 newlen
= strlen (f
->name
);
1932 value
= (char *) alloca (oldlen
+ 1 + newlen
+ 1);
1933 bcopy (v
->value
, value
, oldlen
);
1934 value
[oldlen
] = ' ';
1935 bcopy (f
->name
, &value
[oldlen
+ 1], newlen
+ 1);
1937 define_variable ("MAKECMDGOALS", 12, value
, o_default
, 0);
1942 /* Print a nice usage method. */
1948 register const struct command_switch
*cs
;
1951 if (print_version_flag
)
1954 usageto
= bad
? stderr
: stdout
;
1956 fprintf (usageto
, _("Usage: %s [options] [target] ...\n"), program
);
1958 fputs (_("Options:\n"), usageto
);
1959 for (cs
= switches
; cs
->c
!= '\0'; ++cs
)
1961 char buf
[1024], shortarg
[50], longarg
[50], *p
;
1963 if (!cs
->description
|| cs
->description
[0] == '-')
1966 switch (long_options
[cs
- switches
].has_arg
)
1969 shortarg
[0] = longarg
[0] = '\0';
1971 case required_argument
:
1972 sprintf (longarg
, "=%s", cs
->argdesc
);
1973 sprintf (shortarg
, " %s", cs
->argdesc
);
1975 case optional_argument
:
1976 sprintf (longarg
, "[=%s]", cs
->argdesc
);
1977 sprintf (shortarg
, " [%s]", cs
->argdesc
);
1983 if (short_option (cs
->c
))
1985 sprintf (buf
, " -%c%s", cs
->c
, shortarg
);
1988 if (cs
->long_name
!= 0)
1991 sprintf (p
, "%s--%s%s",
1992 !short_option (cs
->c
) ? " " : ", ",
1993 cs
->long_name
, longarg
);
1995 for (i
= 0; i
< (sizeof (long_option_aliases
) /
1996 sizeof (long_option_aliases
[0]));
1998 if (long_option_aliases
[i
].val
== cs
->c
)
2000 sprintf (p
, ", --%s%s",
2001 long_option_aliases
[i
].name
, longarg
);
2006 const struct command_switch
*ncs
= cs
;
2007 while ((++ncs
)->c
!= '\0')
2008 if (ncs
->description
2009 && ncs
->description
[0] == '-'
2010 && ncs
->description
[1] == cs
->c
)
2012 /* This is another switch that does the same
2013 one as the one we are processing. We want
2014 to list them all together on one line. */
2015 sprintf (p
, ", -%c%s", ncs
->c
, shortarg
);
2017 if (ncs
->long_name
!= 0)
2019 sprintf (p
, ", --%s%s", ncs
->long_name
, longarg
);
2025 if (p
- buf
> DESCRIPTION_COLUMN
- 2)
2026 /* The list of option names is too long to fit on the same
2027 line with the description, leaving at least two spaces.
2028 Print it on its own line instead. */
2030 fprintf (usageto
, "%s\n", buf
);
2034 fprintf (usageto
, "%*s%s.\n",
2035 - DESCRIPTION_COLUMN
,
2036 buf
, cs
->description
);
2039 fprintf (usageto
, _("\nReport bugs to <bug-make@gnu.org>.\n"));
2042 /* Decode switches from ARGC and ARGV.
2043 They came from the environment if ENV is nonzero. */
2046 decode_switches (argc
, argv
, env
)
2052 register const struct command_switch
*cs
;
2053 register struct stringlist
*sl
;
2056 /* getopt does most of the parsing for us.
2057 First, get its vectors set up. */
2061 /* Let getopt produce error messages for the command line,
2062 but not for options from the environment. */
2064 /* Reset getopt's state. */
2067 while (optind
< argc
)
2069 /* Parse the next argument. */
2070 c
= getopt_long (argc
, argv
, options
, long_options
, (int *) 0);
2072 /* End of arguments, or "--" marker seen. */
2075 /* An argument not starting with a dash. */
2076 handle_non_switch_argument (optarg
, env
);
2078 /* Bad option. We will print a usage message and die later.
2079 But continue to parse the other options so the user can
2080 see all he did wrong. */
2083 for (cs
= switches
; cs
->c
!= '\0'; ++cs
)
2086 /* Whether or not we will actually do anything with
2087 this switch. We test this individually inside the
2088 switch below rather than just once outside it, so that
2089 options which are to be ignored still consume args. */
2090 int doit
= !env
|| cs
->env
;
2103 *(int *) cs
->value_ptr
= cs
->type
== flag
;
2111 optarg
= cs
->noarg_value
;
2113 sl
= *(struct stringlist
**) cs
->value_ptr
;
2116 sl
= (struct stringlist
*)
2117 xmalloc (sizeof (struct stringlist
));
2120 sl
->list
= (char **) xmalloc (5 * sizeof (char *));
2121 *(struct stringlist
**) cs
->value_ptr
= sl
;
2123 else if (sl
->idx
== sl
->max
- 1)
2126 sl
->list
= (char **)
2127 xrealloc ((char *) sl
->list
,
2128 sl
->max
* sizeof (char *));
2130 sl
->list
[sl
->idx
++] = optarg
;
2131 sl
->list
[sl
->idx
] = 0;
2135 if (optarg
== 0 && argc
> optind
2136 && ISDIGIT (argv
[optind
][0]))
2137 optarg
= argv
[optind
++];
2144 int i
= atoi (optarg
);
2148 error (NILF
, _("the `-%c' option requires a positive integral argument"),
2153 *(unsigned int *) cs
->value_ptr
= i
;
2156 *(unsigned int *) cs
->value_ptr
2157 = *(unsigned int *) cs
->noarg_value
;
2162 if (optarg
== 0 && optind
< argc
2163 && (ISDIGIT (argv
[optind
][0]) || argv
[optind
][0] == '.'))
2164 optarg
= argv
[optind
++];
2167 *(double *) cs
->value_ptr
2168 = (optarg
!= 0 ? atof (optarg
)
2169 : *(double *) cs
->noarg_value
);
2175 /* We've found the switch. Stop looking. */
2180 /* There are no more options according to getting getopt, but there may
2181 be some arguments left. Since we have asked for non-option arguments
2182 to be returned in order, this only happens when there is a "--"
2183 argument to prevent later arguments from being options. */
2184 while (optind
< argc
)
2185 handle_non_switch_argument (argv
[optind
++], env
);
2188 if (!env
&& (bad
|| print_usage_flag
))
2195 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2196 We do this by chopping the value into a vector of words, prepending a
2197 dash to the first word if it lacks one, and passing the vector to
2201 decode_env_switches (envar
, len
)
2205 char *varref
= (char *) alloca (2 + len
+ 2);
2210 /* Get the variable's value. */
2213 bcopy (envar
, &varref
[2], len
);
2214 varref
[2 + len
] = ')';
2215 varref
[2 + len
+ 1] = '\0';
2216 value
= variable_expand (varref
);
2218 /* Skip whitespace, and check for an empty value. */
2219 value
= next_token (value
);
2220 len
= strlen (value
);
2224 /* Allocate a vector that is definitely big enough. */
2225 argv
= (char **) alloca ((1 + len
+ 1) * sizeof (char *));
2227 /* Allocate a buffer to copy the value into while we split it into words
2228 and unquote it. We must use permanent storage for this because
2229 decode_switches may store pointers into the passed argument words. */
2230 p
= (char *) xmalloc (2 * len
);
2232 /* getopt will look at the arguments starting at ARGV[1].
2233 Prepend a spacer word. */
2237 while (*value
!= '\0')
2239 if (*value
== '\\' && value
[1] != '\0')
2240 ++value
; /* Skip the backslash. */
2241 else if (isblank (*value
))
2243 /* End of the word. */
2248 while (isblank (*value
));
2256 if (argv
[1][0] != '-' && strchr (argv
[1], '=') == 0)
2257 /* The first word doesn't start with a dash and isn't a variable
2258 definition. Add a dash and pass it along to decode_switches. We
2259 need permanent storage for this in case decode_switches saves
2260 pointers into the value. */
2261 argv
[1] = concat ("-", argv
[1], "");
2263 /* Parse those words. */
2264 decode_switches (argc
, argv
, 1);
2267 /* Quote the string IN so that it will be interpreted as a single word with
2268 no magic by decode_env_switches; also double dollar signs to avoid
2269 variable expansion in make itself. Write the result into OUT, returning
2270 the address of the next character to be written.
2271 Allocating space for OUT twice the length of IN is always sufficient. */
2274 quote_for_env (out
, in
)
2281 else if (isblank (*in
) || *in
== '\\')
2289 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2290 command switches. Include options with args if ALL is nonzero.
2291 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2294 define_makeflags (all
, makefile
)
2297 static const char ref
[] = "$(MAKEOVERRIDES)";
2298 static const char posixref
[] = "$(-*-command-variables-*-)";
2299 register const struct command_switch
*cs
;
2305 /* We will construct a linked list of `struct flag's describing
2306 all the flags which need to go in MAKEFLAGS. Then, once we
2307 know how many there are and their lengths, we can put them all
2308 together in a string. */
2313 const struct command_switch
*cs
;
2316 struct flag
*flags
= 0;
2317 unsigned int flagslen
= 0;
2318 #define ADD_FLAG(ARG, LEN) \
2320 struct flag *new = (struct flag *) alloca (sizeof (struct flag)); \
2323 new->next = flags; \
2325 if (new->arg == 0) \
2326 ++flagslen; /* Just a single flag letter. */ \
2328 flagslen += 1 + 1 + 1 + 1 + 3 * (LEN); /* " -x foo" */ \
2329 if (!short_option (cs->c)) \
2330 /* This switch has no single-letter version, so we use the long. */ \
2331 flagslen += 2 + strlen (cs->long_name); \
2334 for (cs
= switches
; cs
->c
!= '\0'; ++cs
)
2335 if (cs
->toenv
&& (!makefile
|| !cs
->no_makefile
))
2346 if (!*(int *) cs
->value_ptr
== (cs
->type
== flag_off
)
2347 && (cs
->default_value
== 0
2348 || *(int *) cs
->value_ptr
!= *(int *) cs
->default_value
))
2355 if ((cs
->default_value
!= 0
2356 && (*(unsigned int *) cs
->value_ptr
2357 == *(unsigned int *) cs
->default_value
)))
2359 else if (cs
->noarg_value
!= 0
2360 && (*(unsigned int *) cs
->value_ptr
==
2361 *(unsigned int *) cs
->noarg_value
))
2362 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2363 else if (cs
->c
== 'j')
2364 /* Special case for `-j'. */
2368 char *buf
= (char *) alloca (30);
2369 sprintf (buf
, "%u", *(unsigned int *) cs
->value_ptr
);
2370 ADD_FLAG (buf
, strlen (buf
));
2379 if (cs
->default_value
!= 0
2380 && (*(double *) cs
->value_ptr
2381 == *(double *) cs
->default_value
))
2383 else if (cs
->noarg_value
!= 0
2384 && (*(double *) cs
->value_ptr
2385 == *(double *) cs
->noarg_value
))
2386 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2389 char *buf
= (char *) alloca (100);
2390 sprintf (buf
, "%g", *(double *) cs
->value_ptr
);
2391 ADD_FLAG (buf
, strlen (buf
));
2400 struct stringlist
*sl
= *(struct stringlist
**) cs
->value_ptr
;
2403 /* Add the elements in reverse order, because
2404 all the flags get reversed below; and the order
2405 matters for some switches (like -I). */
2406 register unsigned int i
= sl
->idx
;
2408 ADD_FLAG (sl
->list
[i
], strlen (sl
->list
[i
]));
2414 flagslen
+= 4 + sizeof posixref
; /* Four more for the possible " -- ". */
2418 /* Construct the value in FLAGSTRING.
2419 We allocate enough space for a preceding dash and trailing null. */
2420 flagstring
= (char *) alloca (1 + flagslen
+ 1);
2421 bzero (flagstring
, 1 + flagslen
+ 1);
2427 /* Add the flag letter or name to the string. */
2428 if (short_option (flags
->cs
->c
))
2429 *p
++ = flags
->cs
->c
;
2438 strcpy (p
, flags
->cs
->long_name
);
2441 if (flags
->arg
!= 0)
2443 /* A flag that takes an optional argument which in this case is
2444 omitted is specified by ARG being "". We must distinguish
2445 because a following flag appended without an intervening " -"
2446 is considered the arg for the first. */
2447 if (flags
->arg
[0] != '\0')
2449 /* Add its argument too. */
2450 *p
++ = !short_option (flags
->cs
->c
) ? '=' : ' ';
2451 p
= quote_for_env (p
, flags
->arg
);
2454 /* Write a following space and dash, for the next flag. */
2458 else if (!short_option (flags
->cs
->c
))
2461 /* Long options must each go in their own word,
2462 so we write the following space and dash. */
2466 flags
= flags
->next
;
2469 /* Define MFLAGS before appending variable definitions. */
2471 if (p
== &flagstring
[1])
2473 flagstring
[0] = '\0';
2474 else if (p
[-1] == '-')
2476 /* Kill the final space and dash. */
2481 /* Terminate the string. */
2484 /* Since MFLAGS is not parsed for flags, there is no reason to
2485 override any makefile redefinition. */
2486 (void) define_variable ("MFLAGS", 6, flagstring
, o_env
, 1);
2488 if (all
&& command_variables
!= 0)
2490 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2491 command-line variable definitions. */
2493 if (p
== &flagstring
[1])
2494 /* No flags written, so elide the leading dash already written. */
2498 /* Separate the variables from the switches with a "--" arg. */
2501 /* We did not already write a trailing " -". */
2505 /* There is a trailing " -"; fill it out to " -- ". */
2510 /* Copy in the string. */
2513 bcopy (posixref
, p
, sizeof posixref
- 1);
2514 p
+= sizeof posixref
- 1;
2518 bcopy (ref
, p
, sizeof ref
- 1);
2519 p
+= sizeof ref
- 1;
2522 else if (p
== &flagstring
[1])
2527 else if (p
[-1] == '-')
2528 /* Kill the final space and dash. */
2530 /* Terminate the string. */
2533 v
= define_variable ("MAKEFLAGS", 9,
2534 /* If there are switches, omit the leading dash
2535 unless it is a single long option with two
2537 &flagstring
[(flagstring
[0] == '-'
2538 && flagstring
[1] != '-')
2540 /* This used to use o_env, but that lost when a
2541 makefile defined MAKEFLAGS. Makefiles set
2542 MAKEFLAGS to add switches, but we still want
2543 to redefine its value with the full set of
2544 switches. Of course, an override or command
2545 definition will still take precedence. */
2548 /* The first time we are called, set MAKEFLAGS to always be exported.
2549 We should not do this again on the second call, because that is
2550 after reading makefiles which might have done `unexport MAKEFLAGS'. */
2551 v
->export
= v_export
;
2554 /* Print version information. */
2559 extern char *make_host
;
2560 static int printed_version
= 0;
2562 char *precede
= print_data_base_flag
? "# " : "";
2564 if (printed_version
)
2565 /* Do it only once. */
2568 printf ("%sGNU Make version %s", precede
, version_string
);
2569 if (remote_description
!= 0 && *remote_description
!= '\0')
2570 printf ("-%s", remote_description
);
2572 printf (_(", by Richard Stallman and Roland McGrath.\n\
2574 %sCopyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99\n\
2575 %s\tFree Software Foundation, Inc.\n\
2576 %sThis is free software; see the source for copying conditions.\n\
2577 %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
2578 %sPARTICULAR PURPOSE.\n\n\
2579 %sReport bugs to <bug-make@gnu.org>.\n\n"),
2581 precede
, precede
, precede
, precede
, precede
, precede
);
2583 printed_version
= 1;
2585 /* Flush stdout so the user doesn't have to wait to see the
2586 version information while things are thought about. */
2590 /* Print a bunch of information about this and that. */
2597 when
= time ((time_t *) 0);
2598 printf (_("\n# Make data base, printed on %s"), ctime (&when
));
2600 print_variable_data_base ();
2601 print_dir_data_base ();
2602 print_rule_data_base ();
2603 print_file_data_base ();
2604 print_vpath_data_base ();
2606 when
= time ((time_t *) 0);
2607 printf (_("\n# Finished Make data base on %s\n"), ctime (&when
));
2610 /* Exit with STATUS, cleaning up as necessary. */
2616 static char dying
= 0;
2624 if (print_version_flag
)
2627 /* Wait for children to die. */
2628 for (err
= status
!= 0; job_slots_used
> 0; err
= 0)
2629 reap_children (1, err
);
2631 /* Let the remote job module clean up its state. */
2634 /* Remove the intermediate files. */
2635 remove_intermediates (0);
2637 if (print_data_base_flag
)
2640 /* Try to move back to the original directory. This is essential on
2641 MS-DOS (where there is really only one process), and on Unix it
2642 puts core files in the original directory instead of the -C
2643 directory. Must wait until after remove_intermediates(), or unlinks
2644 of relative pathnames fail. */
2645 if (directory_before_chdir
!= 0)
2646 chdir (directory_before_chdir
);
2648 log_working_directory (0);
2654 /* Write a message indicating that we've just entered or
2655 left (according to ENTERING) the current directory. */
2658 log_working_directory (entering
)
2661 static int entered
= 0;
2662 char *msg
= entering
? _("Entering") : _("Leaving");
2664 /* Print nothing without the flag. Don't print the entering message
2665 again if we already have. Don't print the leaving message if we
2666 haven't printed the entering message. */
2667 if (! print_directory_flag
|| entering
== entered
)
2672 if (print_data_base_flag
)
2673 fputs ("# ", stdout
);
2676 printf ("%s: %s ", program
, msg
);
2678 printf ("%s[%u]: %s ", program
, makelevel
, msg
);
2680 if (starting_directory
== 0)
2681 puts (_("an unknown directory"));
2683 printf (_("directory `%s'\n"), starting_directory
);