1994-03-23 14:12:55 +00:00
|
|
|
|
/* Argument parsing and main program of GNU Make.
|
2006-02-11 19:02:21 +00:00
|
|
|
|
Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
|
2009-10-25 00:46:52 +00:00
|
|
|
|
1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
|
|
|
|
|
Software Foundation, Inc.
|
1992-01-29 23:54:36 +00:00
|
|
|
|
This file is part of GNU Make.
|
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
|
GNU Make is free software; you can redistribute it and/or modify it under the
|
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
2007-07-04 19:35:15 +00:00
|
|
|
|
Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
|
version.
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
|
GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2007-07-04 19:35:15 +00:00
|
|
|
|
this program. If not, see <http://www.gnu.org/licenses/>. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
#include "make.h"
|
|
|
|
|
#include "dep.h"
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#include "filedef.h"
|
1992-01-29 23:54:36 +00:00
|
|
|
|
#include "variable.h"
|
|
|
|
|
#include "job.h"
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#include "commands.h"
|
1998-10-03 05:39:55 +00:00
|
|
|
|
#include "rule.h"
|
1999-11-22 06:15:35 +00:00
|
|
|
|
#include "debug.h"
|
1992-05-09 04:28:28 +00:00
|
|
|
|
#include "getopt.h"
|
1999-11-22 06:15:35 +00:00
|
|
|
|
|
1995-03-24 23:39:24 +00:00
|
|
|
|
#include <assert.h>
|
1996-05-13 18:40:11 +00:00
|
|
|
|
#ifdef _AMIGA
|
1999-07-08 06:49:52 +00:00
|
|
|
|
# include <dos/dos.h>
|
|
|
|
|
# include <proto/dos.h>
|
1996-05-13 18:40:11 +00:00
|
|
|
|
#endif
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
#include <windows.h>
|
2004-03-22 15:11:48 +00:00
|
|
|
|
#include <io.h>
|
1996-05-22 21:51:45 +00:00
|
|
|
|
#include "pathstuff.h"
|
|
|
|
|
#endif
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#ifdef __EMX__
|
|
|
|
|
# include <sys/types.h>
|
|
|
|
|
# include <sys/wait.h>
|
|
|
|
|
#endif
|
2003-07-19 02:46:25 +00:00
|
|
|
|
#ifdef HAVE_FCNTL_H
|
1999-04-25 04:30:55 +00:00
|
|
|
|
# include <fcntl.h>
|
|
|
|
|
#endif
|
1996-05-13 18:40:11 +00:00
|
|
|
|
|
|
|
|
|
#ifdef _AMIGA
|
|
|
|
|
int __stack = 20000; /* Make sure we have 20K of stack space */
|
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
|
void init_dir (void);
|
|
|
|
|
void remote_setup (void);
|
|
|
|
|
void remote_cleanup (void);
|
|
|
|
|
RETSIGTYPE fatal_error_signal (int sig);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
|
void print_variable_data_base (void);
|
|
|
|
|
void print_dir_data_base (void);
|
|
|
|
|
void print_rule_data_base (void);
|
|
|
|
|
void print_vpath_data_base (void);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
void verify_file_data_base (void);
|
|
|
|
|
|
1998-10-03 05:39:55 +00:00
|
|
|
|
#if defined HAVE_WAITPID || defined HAVE_WAIT3
|
|
|
|
|
# define HAVE_WAIT_NOHANG
|
|
|
|
|
#endif
|
|
|
|
|
|
1992-06-11 04:58:20 +00:00
|
|
|
|
#ifndef HAVE_UNISTD_H
|
2006-04-07 01:43:44 +00:00
|
|
|
|
int chdir ();
|
1992-06-11 04:58:20 +00:00
|
|
|
|
#endif
|
|
|
|
|
#ifndef STDC_HEADERS
|
1999-07-08 06:49:52 +00:00
|
|
|
|
# ifndef sun /* Sun has an incorrect decl in a header. */
|
2006-04-07 01:43:44 +00:00
|
|
|
|
void exit (int) __attribute__ ((noreturn));
|
1999-07-08 06:49:52 +00:00
|
|
|
|
# endif
|
2006-04-07 01:43:44 +00:00
|
|
|
|
double atof ();
|
1992-01-29 23:54:36 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
|
static void clean_jobserver (int status);
|
|
|
|
|
static void print_data_base (void);
|
|
|
|
|
static void print_version (void);
|
|
|
|
|
static void decode_switches (int argc, char **argv, int env);
|
|
|
|
|
static void decode_env_switches (char *envar, unsigned int len);
|
2009-06-09 15:35:38 +00:00
|
|
|
|
static const char *define_makeflags (int all, int makefile);
|
2007-03-20 03:02:26 +00:00
|
|
|
|
static char *quote_for_env (char *out, const char *in);
|
2006-04-07 01:43:44 +00:00
|
|
|
|
static void initialize_global_hash_tables (void);
|
2002-07-11 06:38:57 +00:00
|
|
|
|
|
1993-06-25 19:47:20 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* The structure that describes an accepted command switch. */
|
|
|
|
|
|
|
|
|
|
struct command_switch
|
|
|
|
|
{
|
1999-08-31 17:02:31 +00:00
|
|
|
|
int c; /* The switch character. */
|
1993-04-14 18:20:33 +00:00
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
enum /* Type of the value. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1992-05-09 04:28:28 +00:00
|
|
|
|
flag, /* Turn int flag on. */
|
|
|
|
|
flag_off, /* Turn int flag off. */
|
|
|
|
|
string, /* One string per switch. */
|
2007-03-20 03:02:26 +00:00
|
|
|
|
filename, /* A string containing a file name. */
|
1992-05-09 04:28:28 +00:00
|
|
|
|
positive_int, /* A positive integer. */
|
|
|
|
|
floating, /* A floating-point number (double). */
|
1993-05-22 20:20:16 +00:00
|
|
|
|
ignore /* Ignored. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
} type;
|
|
|
|
|
|
2006-11-18 20:53:44 +00:00
|
|
|
|
void *value_ptr; /* Pointer to the value-holding variable. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
unsigned int env:1; /* Can come from MAKEFLAGS. */
|
|
|
|
|
unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
|
|
|
|
|
unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
|
|
|
|
|
|
2006-11-18 20:53:44 +00:00
|
|
|
|
const void *noarg_value; /* Pointer to value used if no arg given. */
|
|
|
|
|
const void *default_value; /* Pointer to default value. */
|
1992-05-09 04:28:28 +00:00
|
|
|
|
|
|
|
|
|
char *long_name; /* Long option name. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
1999-08-31 17:02:31 +00:00
|
|
|
|
/* True if C is a switch value that corresponds to a short option. */
|
|
|
|
|
|
|
|
|
|
#define short_option(c) ((c) <= CHAR_MAX)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* The structure used to hold the list of strings given
|
|
|
|
|
in command switches of a type that takes string arguments. */
|
|
|
|
|
|
|
|
|
|
struct stringlist
|
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char **list; /* Nil-terminated list of strings. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
unsigned int idx; /* Index into above. */
|
|
|
|
|
unsigned int max; /* Number of pointers allocated. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The recognized command switches. */
|
|
|
|
|
|
|
|
|
|
/* Nonzero means do not print commands to be executed (-s). */
|
|
|
|
|
|
|
|
|
|
int silent_flag;
|
|
|
|
|
|
|
|
|
|
/* Nonzero means just touch the files
|
|
|
|
|
that would appear to need remaking (-t) */
|
|
|
|
|
|
|
|
|
|
int touch_flag;
|
|
|
|
|
|
|
|
|
|
/* Nonzero means just print what commands would need to be executed,
|
|
|
|
|
don't actually execute them (-n). */
|
|
|
|
|
|
|
|
|
|
int just_print_flag;
|
|
|
|
|
|
1999-11-22 06:15:35 +00:00
|
|
|
|
/* Print debugging info (--debug). */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1999-11-27 08:09:42 +00:00
|
|
|
|
static struct stringlist *db_flags;
|
2000-01-23 07:05:16 +00:00
|
|
|
|
static int debug_flag = 0;
|
1999-11-27 08:09:42 +00:00
|
|
|
|
|
1999-11-22 06:15:35 +00:00
|
|
|
|
int db_level = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2006-11-18 20:53:44 +00:00
|
|
|
|
/* Output level (--verbosity). */
|
|
|
|
|
|
|
|
|
|
static struct stringlist *verbosity_flags;
|
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
/* Suspend make in main for a short time to allow debugger to attach */
|
|
|
|
|
|
|
|
|
|
int suspend_flag = 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Environment variables override makefile definitions. */
|
|
|
|
|
|
|
|
|
|
int env_overrides = 0;
|
|
|
|
|
|
|
|
|
|
/* Nonzero means ignore status codes returned by commands
|
|
|
|
|
executed to remake files. Just treat them all as successful (-i). */
|
|
|
|
|
|
|
|
|
|
int ignore_errors_flag = 0;
|
|
|
|
|
|
|
|
|
|
/* Nonzero means don't remake anything, just print the data base
|
|
|
|
|
that results from reading the makefile (-p). */
|
|
|
|
|
|
|
|
|
|
int print_data_base_flag = 0;
|
|
|
|
|
|
|
|
|
|
/* Nonzero means don't remake anything; just return a nonzero status
|
|
|
|
|
if the specified targets are not up to date (-q). */
|
|
|
|
|
|
|
|
|
|
int question_flag = 0;
|
|
|
|
|
|
1999-07-08 06:49:52 +00:00
|
|
|
|
/* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
int no_builtin_rules_flag = 0;
|
1999-07-08 06:49:52 +00:00
|
|
|
|
int no_builtin_variables_flag = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Nonzero means keep going even if remaking some file fails (-k). */
|
|
|
|
|
|
|
|
|
|
int keep_going_flag;
|
|
|
|
|
int default_keep_going_flag = 0;
|
|
|
|
|
|
2005-02-28 07:48:22 +00:00
|
|
|
|
/* Nonzero means check symlink mtimes. */
|
|
|
|
|
|
|
|
|
|
int check_symlink_flag = 0;
|
|
|
|
|
|
1993-04-07 20:40:35 +00:00
|
|
|
|
/* Nonzero means print directory before starting and when done (-w). */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
int print_directory_flag = 0;
|
|
|
|
|
|
1993-04-07 20:40:35 +00:00
|
|
|
|
/* Nonzero means ignore print_directory_flag and never print the directory.
|
|
|
|
|
This is necessary because print_directory_flag is set implicitly. */
|
|
|
|
|
|
|
|
|
|
int inhibit_print_directory_flag = 0;
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Nonzero means print version information. */
|
|
|
|
|
|
|
|
|
|
int print_version_flag = 0;
|
|
|
|
|
|
|
|
|
|
/* List of makefiles given with -f switches. */
|
|
|
|
|
|
|
|
|
|
static struct stringlist *makefiles = 0;
|
|
|
|
|
|
2009-06-07 17:40:06 +00:00
|
|
|
|
/* Size of the stack when we started. */
|
|
|
|
|
|
|
|
|
|
#ifdef SET_STACK_SIZE
|
|
|
|
|
struct rlimit stack_limit;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Number of job slots (commands that can be run at once). */
|
|
|
|
|
|
|
|
|
|
unsigned int job_slots = 1;
|
|
|
|
|
unsigned int default_job_slots = 1;
|
2005-05-03 13:57:20 +00:00
|
|
|
|
static unsigned int master_job_slots = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1999-04-25 04:30:55 +00:00
|
|
|
|
/* Value of job_slots that means no limit. */
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
static unsigned int inf_jobs = 0;
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
|
|
|
|
/* File descriptors for the jobs pipe. */
|
|
|
|
|
|
1999-08-23 05:35:14 +00:00
|
|
|
|
static struct stringlist *jobserver_fds = 0;
|
|
|
|
|
|
1999-04-25 04:30:55 +00:00
|
|
|
|
int job_fds[2] = { -1, -1 };
|
1999-08-13 07:36:26 +00:00
|
|
|
|
int job_rfd = -1;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Maximum load average at which multiple jobs will be run.
|
|
|
|
|
Negative values mean unlimited, while zero means limit to
|
|
|
|
|
zero load (which could be useful to start infinite jobs remotely
|
|
|
|
|
but one at a time locally). */
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#ifndef NO_FLOAT
|
1992-01-29 23:54:36 +00:00
|
|
|
|
double max_load_average = -1.0;
|
|
|
|
|
double default_load_average = -1.0;
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#else
|
|
|
|
|
int max_load_average = -1;
|
|
|
|
|
int default_load_average = -1;
|
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1993-06-08 00:08:45 +00:00
|
|
|
|
/* List of directories given with -C switches. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
static struct stringlist *directories = 0;
|
|
|
|
|
|
|
|
|
|
/* List of include directories given with -I switches. */
|
|
|
|
|
|
|
|
|
|
static struct stringlist *include_directories = 0;
|
|
|
|
|
|
|
|
|
|
/* List of files given with -o switches. */
|
|
|
|
|
|
|
|
|
|
static struct stringlist *old_files = 0;
|
|
|
|
|
|
|
|
|
|
/* List of files given with -W switches. */
|
|
|
|
|
|
|
|
|
|
static struct stringlist *new_files = 0;
|
1993-05-22 20:20:16 +00:00
|
|
|
|
|
2009-10-25 00:46:52 +00:00
|
|
|
|
/* List of strings to be eval'd. */
|
|
|
|
|
static struct stringlist *eval_strings = 0;
|
|
|
|
|
|
1993-05-22 20:20:16 +00:00
|
|
|
|
/* If nonzero, we should just print usage and exit. */
|
|
|
|
|
|
|
|
|
|
static int print_usage_flag = 0;
|
1993-06-25 19:47:20 +00:00
|
|
|
|
|
|
|
|
|
/* If nonzero, we should print a warning message
|
|
|
|
|
for each reference to an undefined variable. */
|
|
|
|
|
|
|
|
|
|
int warn_undefined_variables_flag;
|
2002-08-08 00:11:19 +00:00
|
|
|
|
|
|
|
|
|
/* If nonzero, always build all targets, regardless of whether
|
|
|
|
|
they appear out of date or not. */
|
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
static int always_make_set = 0;
|
2002-08-08 00:11:19 +00:00
|
|
|
|
int always_make_flag = 0;
|
2004-05-16 19:16:52 +00:00
|
|
|
|
|
|
|
|
|
/* If nonzero, we're in the "try to rebuild makefiles" phase. */
|
|
|
|
|
|
|
|
|
|
int rebuilding_makefiles = 0;
|
|
|
|
|
|
2004-11-28 23:11:23 +00:00
|
|
|
|
/* Remember the original value of the SHELL variable, from the environment. */
|
|
|
|
|
|
2004-12-05 18:09:31 +00:00
|
|
|
|
struct variable shell_var;
|
2004-11-28 23:11:23 +00:00
|
|
|
|
|
2006-11-18 20:53:44 +00:00
|
|
|
|
/* This character introduces a command: it's the first char on the line. */
|
|
|
|
|
|
|
|
|
|
char cmd_prefix = '\t';
|
|
|
|
|
|
1992-05-11 05:28:52 +00:00
|
|
|
|
|
2002-08-08 05:39:17 +00:00
|
|
|
|
/* The usage output. We write it this way to make life easier for the
|
|
|
|
|
translators, especially those trying to translate to right-to-left
|
|
|
|
|
languages like Hebrew. */
|
|
|
|
|
|
|
|
|
|
static const char *const usage[] =
|
|
|
|
|
{
|
|
|
|
|
N_("Options:\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-b, -m Ignored for compatibility.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-B, --always-make Unconditionally make all targets.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-C DIRECTORY, --directory=DIRECTORY\n\
|
|
|
|
|
Change to DIRECTORY before doing anything.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-d Print lots of debugging information.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
--debug[=FLAGS] Print various types of debugging information.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-e, --environment-overrides\n\
|
|
|
|
|
Environment variables override makefiles.\n"),
|
|
|
|
|
N_("\
|
2009-10-25 00:46:52 +00:00
|
|
|
|
--eval=STRING Evaluate STRING as a makefile statement.\n"),
|
|
|
|
|
N_("\
|
2002-08-08 05:39:17 +00:00
|
|
|
|
-f FILE, --file=FILE, --makefile=FILE\n\
|
|
|
|
|
Read FILE as a makefile.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-h, --help Print this message and exit.\n"),
|
|
|
|
|
N_("\
|
2007-11-04 21:54:00 +00:00
|
|
|
|
-i, --ignore-errors Ignore errors from recipes.\n"),
|
2002-08-08 05:39:17 +00:00
|
|
|
|
N_("\
|
|
|
|
|
-I DIRECTORY, --include-dir=DIRECTORY\n\
|
|
|
|
|
Search DIRECTORY for included makefiles.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-k, --keep-going Keep going when some targets can't be made.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-l [N], --load-average[=N], --max-load[=N]\n\
|
|
|
|
|
Don't start multiple jobs unless load is below N.\n"),
|
|
|
|
|
N_("\
|
2005-02-28 07:48:22 +00:00
|
|
|
|
-L, --check-symlink-times Use the latest mtime between symlinks and target.\n"),
|
|
|
|
|
N_("\
|
2002-08-08 05:39:17 +00:00
|
|
|
|
-n, --just-print, --dry-run, --recon\n\
|
2007-11-04 21:54:00 +00:00
|
|
|
|
Don't actually run any recipe; just print them.\n"),
|
2002-08-08 05:39:17 +00:00
|
|
|
|
N_("\
|
|
|
|
|
-o FILE, --old-file=FILE, --assume-old=FILE\n\
|
|
|
|
|
Consider FILE to be very old and don't remake it.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-p, --print-data-base Print make's internal database.\n"),
|
|
|
|
|
N_("\
|
2007-11-04 21:54:00 +00:00
|
|
|
|
-q, --question Run no recipe; exit status says if up to date.\n"),
|
2002-08-08 05:39:17 +00:00
|
|
|
|
N_("\
|
|
|
|
|
-r, --no-builtin-rules Disable the built-in implicit rules.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-R, --no-builtin-variables Disable the built-in variable settings.\n"),
|
|
|
|
|
N_("\
|
2007-11-04 21:54:00 +00:00
|
|
|
|
-s, --silent, --quiet Don't echo recipes.\n"),
|
2002-08-08 05:39:17 +00:00
|
|
|
|
N_("\
|
|
|
|
|
-S, --no-keep-going, --stop\n\
|
|
|
|
|
Turns off -k.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-t, --touch Touch targets instead of remaking them.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-v, --version Print the version number of make and exit.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-w, --print-directory Print the current directory.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
--no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
|
|
|
|
|
Consider FILE to be infinitely new.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
--warn-undefined-variables Warn when an undefined variable is referenced.\n"),
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* The table of command switches. */
|
|
|
|
|
|
1993-04-14 18:20:33 +00:00
|
|
|
|
static const struct command_switch switches[] =
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
2002-08-08 05:39:17 +00:00
|
|
|
|
{ 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'B', flag, &always_make_set, 1, 1, 0, 0, 0, "always-make" },
|
2007-03-20 03:02:26 +00:00
|
|
|
|
{ 'C', filename, &directories, 0, 0, 0, 0, 0, "directory" },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'd', flag, &debug_flag, 1, 1, 0, 0, 0, 0 },
|
|
|
|
|
{ CHAR_MAX+1, string, &db_flags, 1, 1, 0, "basic", 0, "debug" },
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'D', flag, &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
|
|
|
|
|
#endif
|
|
|
|
|
{ 'e', flag, &env_overrides, 1, 1, 0, 0, 0, "environment-overrides", },
|
2007-03-20 03:02:26 +00:00
|
|
|
|
{ 'f', filename, &makefiles, 0, 0, 0, 0, 0, "file" },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'h', flag, &print_usage_flag, 0, 0, 0, 0, 0, "help" },
|
|
|
|
|
{ 'i', flag, &ignore_errors_flag, 1, 1, 0, 0, 0, "ignore-errors" },
|
2007-03-20 03:02:26 +00:00
|
|
|
|
{ 'I', filename, &include_directories, 1, 1, 0, 0, 0,
|
2005-02-28 07:48:22 +00:00
|
|
|
|
"include-dir" },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'j', positive_int, &job_slots, 1, 1, 0, &inf_jobs, &default_job_slots,
|
|
|
|
|
"jobs" },
|
|
|
|
|
{ CHAR_MAX+2, string, &jobserver_fds, 1, 1, 0, 0, 0, "jobserver-fds" },
|
|
|
|
|
{ 'k', flag, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
|
|
|
|
|
"keep-going" },
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#ifndef NO_FLOAT
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'l', floating, &max_load_average, 1, 1, 0, &default_load_average,
|
|
|
|
|
&default_load_average, "load-average" },
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#else
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'l', positive_int, &max_load_average, 1, 1, 0, &default_load_average,
|
|
|
|
|
&default_load_average, "load-average" },
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#endif
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'L', flag, &check_symlink_flag, 1, 1, 0, 0, 0, "check-symlink-times" },
|
2002-08-08 05:39:17 +00:00
|
|
|
|
{ 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'n', flag, &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
|
2007-03-20 03:02:26 +00:00
|
|
|
|
{ 'o', filename, &old_files, 0, 0, 0, 0, 0, "old-file" },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 'p', flag, &print_data_base_flag, 1, 1, 0, 0, 0, "print-data-base" },
|
|
|
|
|
{ 'q', flag, &question_flag, 1, 1, 1, 0, 0, "question" },
|
|
|
|
|
{ 'r', flag, &no_builtin_rules_flag, 1, 1, 0, 0, 0, "no-builtin-rules" },
|
|
|
|
|
{ 'R', flag, &no_builtin_variables_flag, 1, 1, 0, 0, 0,
|
2005-02-28 07:48:22 +00:00
|
|
|
|
"no-builtin-variables" },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ 's', flag, &silent_flag, 1, 1, 0, 0, 0, "silent" },
|
|
|
|
|
{ 'S', flag_off, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
|
|
|
|
|
"no-keep-going" },
|
|
|
|
|
{ 't', flag, &touch_flag, 1, 1, 1, 0, 0, "touch" },
|
|
|
|
|
{ 'v', flag, &print_version_flag, 1, 1, 0, 0, 0, "version" },
|
|
|
|
|
{ CHAR_MAX+3, string, &verbosity_flags, 1, 1, 0, 0, 0,
|
|
|
|
|
"verbosity" },
|
|
|
|
|
{ 'w', flag, &print_directory_flag, 1, 1, 0, 0, 0, "print-directory" },
|
|
|
|
|
{ CHAR_MAX+4, flag, &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
|
2005-02-28 07:48:22 +00:00
|
|
|
|
"no-print-directory" },
|
2007-03-20 03:02:26 +00:00
|
|
|
|
{ 'W', filename, &new_files, 0, 0, 0, 0, 0, "what-if" },
|
2006-11-18 20:53:44 +00:00
|
|
|
|
{ CHAR_MAX+5, flag, &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
|
2005-02-28 07:48:22 +00:00
|
|
|
|
"warn-undefined-variables" },
|
2009-10-25 00:46:52 +00:00
|
|
|
|
{ CHAR_MAX+6, string, &eval_strings, 1, 0, 0, 0, 0, "eval" },
|
2005-07-12 04:35:13 +00:00
|
|
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0 }
|
1992-01-29 23:54:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
1992-05-11 05:28:52 +00:00
|
|
|
|
/* Secondary long names for options. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1992-05-11 05:28:52 +00:00
|
|
|
|
static struct option long_option_aliases[] =
|
|
|
|
|
{
|
|
|
|
|
{ "quiet", no_argument, 0, 's' },
|
1992-09-15 20:10:46 +00:00
|
|
|
|
{ "stop", no_argument, 0, 'S' },
|
1992-12-09 22:10:14 +00:00
|
|
|
|
{ "new-file", required_argument, 0, 'W' },
|
1992-05-11 05:28:52 +00:00
|
|
|
|
{ "assume-new", required_argument, 0, 'W' },
|
|
|
|
|
{ "assume-old", required_argument, 0, 'o' },
|
|
|
|
|
{ "max-load", optional_argument, 0, 'l' },
|
|
|
|
|
{ "dry-run", no_argument, 0, 'n' },
|
|
|
|
|
{ "recon", no_argument, 0, 'n' },
|
|
|
|
|
{ "makefile", required_argument, 0, 'f' },
|
|
|
|
|
};
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1994-09-09 05:37:40 +00:00
|
|
|
|
/* List of goal targets. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1994-09-09 05:37:40 +00:00
|
|
|
|
static struct dep *goals, *lastgoal;
|
1994-09-09 06:45:51 +00:00
|
|
|
|
|
|
|
|
|
/* List of variables which were defined on the command line
|
|
|
|
|
(or, equivalently, in MAKEFLAGS). */
|
|
|
|
|
|
|
|
|
|
struct command_variable
|
|
|
|
|
{
|
|
|
|
|
struct command_variable *next;
|
|
|
|
|
struct variable *variable;
|
|
|
|
|
};
|
|
|
|
|
static struct command_variable *command_variables;
|
1992-05-11 05:28:52 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* The name we were invoked with. */
|
|
|
|
|
|
|
|
|
|
char *program;
|
|
|
|
|
|
1994-07-25 23:33:26 +00:00
|
|
|
|
/* Our current directory before processing any -C options. */
|
|
|
|
|
|
|
|
|
|
char *directory_before_chdir;
|
|
|
|
|
|
1993-02-04 18:23:19 +00:00
|
|
|
|
/* Our current directory after processing all -C options. */
|
|
|
|
|
|
|
|
|
|
char *starting_directory;
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Value of the MAKELEVEL variable at startup (or 0). */
|
|
|
|
|
|
|
|
|
|
unsigned int makelevel;
|
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
/* Pointer to the value of the .DEFAULT_GOAL special variable.
|
|
|
|
|
The value will be the name of the goal to remake if the command line
|
|
|
|
|
does not override it. It can be set by the makefile, or else it's
|
|
|
|
|
the first target defined in the makefile whose name does not start
|
|
|
|
|
with '.'. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
struct variable * default_goal_var;
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Pointer to structure for the file .DEFAULT
|
|
|
|
|
whose commands are used for any file that has none of its own.
|
|
|
|
|
This is zero if the makefiles do not define .DEFAULT. */
|
|
|
|
|
|
|
|
|
|
struct file *default_file;
|
1994-09-30 01:04:54 +00:00
|
|
|
|
|
|
|
|
|
/* Nonzero if we have seen the magic `.POSIX' target.
|
|
|
|
|
This turns on pedantic compliance with POSIX.2. */
|
|
|
|
|
|
|
|
|
|
int posix_pedantic;
|
1997-08-18 18:11:04 +00:00
|
|
|
|
|
2005-10-24 13:01:39 +00:00
|
|
|
|
/* Nonzero if we have seen the '.SECONDEXPANSION' target.
|
|
|
|
|
This turns on secondary expansion of prerequisites. */
|
|
|
|
|
|
|
|
|
|
int second_expansion;
|
|
|
|
|
|
1999-11-17 07:33:47 +00:00
|
|
|
|
/* Nonzero if we have seen the `.NOTPARALLEL' target.
|
|
|
|
|
This turns off parallel builds for this invocation of make. */
|
|
|
|
|
|
|
|
|
|
int not_parallel;
|
|
|
|
|
|
1997-08-18 18:11:04 +00:00
|
|
|
|
/* Nonzero if some rule detected clock skew; we keep track so (a) we only
|
|
|
|
|
print one warning about it during the run, and (b) we can print a final
|
|
|
|
|
warning at the end of the run. */
|
|
|
|
|
|
|
|
|
|
int clock_skew_detected;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Mask of signals that are being caught with fatal_error_signal. */
|
1992-04-30 22:17:12 +00:00
|
|
|
|
|
|
|
|
|
#ifdef POSIX
|
|
|
|
|
sigset_t fatal_signal_set;
|
|
|
|
|
#else
|
2002-05-10 03:15:07 +00:00
|
|
|
|
# ifdef HAVE_SIGSETMASK
|
1992-01-29 23:54:36 +00:00
|
|
|
|
int fatal_signal_mask;
|
2002-05-10 03:15:07 +00:00
|
|
|
|
# endif
|
1992-04-30 22:17:12 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2001-06-01 03:56:50 +00:00
|
|
|
|
#if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
|
|
|
|
|
# if !defined HAVE_SIGACTION
|
|
|
|
|
# define bsd_signal signal
|
|
|
|
|
# else
|
2009-06-09 15:35:38 +00:00
|
|
|
|
typedef RETSIGTYPE (*bsd_signal_ret_t) (int);
|
2002-05-10 03:15:07 +00:00
|
|
|
|
|
|
|
|
|
static bsd_signal_ret_t
|
2002-10-14 21:54:04 +00:00
|
|
|
|
bsd_signal (int sig, bsd_signal_ret_t func)
|
2001-06-01 03:56:50 +00:00
|
|
|
|
{
|
|
|
|
|
struct sigaction act, oact;
|
|
|
|
|
act.sa_handler = func;
|
|
|
|
|
act.sa_flags = SA_RESTART;
|
|
|
|
|
sigemptyset (&act.sa_mask);
|
|
|
|
|
sigaddset (&act.sa_mask, sig);
|
|
|
|
|
if (sigaction (sig, &act, &oact) != 0)
|
|
|
|
|
return SIG_ERR;
|
|
|
|
|
return oact.sa_handler;
|
|
|
|
|
}
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-07-11 06:38:57 +00:00
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
initialize_global_hash_tables (void)
|
2002-07-11 06:38:57 +00:00
|
|
|
|
{
|
|
|
|
|
init_hash_global_variable_set ();
|
2006-02-10 05:29:00 +00:00
|
|
|
|
strcache_init ();
|
2002-07-11 06:38:57 +00:00
|
|
|
|
init_hash_files ();
|
|
|
|
|
hash_init_directories ();
|
|
|
|
|
hash_init_function_table ();
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
static const char *
|
|
|
|
|
expand_command_line_file (char *name)
|
1993-06-02 20:51:28 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char *cp;
|
|
|
|
|
char *expanded = 0;
|
|
|
|
|
|
1995-10-10 18:59:08 +00:00
|
|
|
|
if (name[0] == '\0')
|
1999-07-28 06:23:37 +00:00
|
|
|
|
fatal (NILF, _("empty string invalid as file name"));
|
1995-10-10 18:59:08 +00:00
|
|
|
|
|
1993-06-08 00:08:45 +00:00
|
|
|
|
if (name[0] == '~')
|
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
expanded = tilde_expand (name);
|
1993-06-08 00:08:45 +00:00
|
|
|
|
if (expanded != 0)
|
2007-03-20 03:02:26 +00:00
|
|
|
|
name = expanded;
|
1993-06-08 00:08:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
1993-06-02 20:51:28 +00:00
|
|
|
|
/* This is also done in parse_file_seq, so this is redundant
|
|
|
|
|
for names read from makefiles. It is here for names passed
|
|
|
|
|
on the command line. */
|
|
|
|
|
while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
|
|
|
|
|
{
|
|
|
|
|
name += 2;
|
|
|
|
|
while (*name == '/')
|
|
|
|
|
/* Skip following slashes: ".//foo" is "foo", not "/foo". */
|
|
|
|
|
++name;
|
|
|
|
|
}
|
1995-11-26 01:37:07 +00:00
|
|
|
|
|
1993-06-02 20:51:28 +00:00
|
|
|
|
if (*name == '\0')
|
|
|
|
|
{
|
|
|
|
|
/* It was all slashes! Move back to the dot and truncate
|
|
|
|
|
it after the first slash, so it becomes just "./". */
|
|
|
|
|
do
|
|
|
|
|
--name;
|
|
|
|
|
while (name[0] != '.');
|
|
|
|
|
name[2] = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
cp = strcache_add (name);
|
|
|
|
|
|
|
|
|
|
if (expanded)
|
|
|
|
|
free (expanded);
|
|
|
|
|
|
|
|
|
|
return cp;
|
1993-06-02 20:51:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-01-26 06:29:18 +00:00
|
|
|
|
/* Toggle -d on receipt of SIGUSR1. */
|
|
|
|
|
|
2004-03-22 15:11:48 +00:00
|
|
|
|
#ifdef SIGUSR1
|
1995-01-26 06:29:18 +00:00
|
|
|
|
static RETSIGTYPE
|
2004-02-24 13:50:19 +00:00
|
|
|
|
debug_signal_handler (int sig UNUSED)
|
1995-01-26 06:29:18 +00:00
|
|
|
|
{
|
1999-11-27 08:09:42 +00:00
|
|
|
|
db_level = db_level ? DB_NONE : DB_BASIC;
|
|
|
|
|
}
|
2004-03-22 15:11:48 +00:00
|
|
|
|
#endif
|
1999-11-27 08:09:42 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
decode_debug_flags (void)
|
1999-11-27 08:09:42 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char **pp;
|
1999-11-27 08:09:42 +00:00
|
|
|
|
|
2000-01-23 07:05:16 +00:00
|
|
|
|
if (debug_flag)
|
|
|
|
|
db_level = DB_ALL;
|
|
|
|
|
|
1999-11-27 08:09:42 +00:00
|
|
|
|
if (!db_flags)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (pp=db_flags->list; *pp; ++pp)
|
|
|
|
|
{
|
|
|
|
|
const char *p = *pp;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
switch (tolower (p[0]))
|
|
|
|
|
{
|
|
|
|
|
case 'a':
|
|
|
|
|
db_level |= DB_ALL;
|
|
|
|
|
break;
|
|
|
|
|
case 'b':
|
|
|
|
|
db_level |= DB_BASIC;
|
|
|
|
|
break;
|
|
|
|
|
case 'i':
|
2000-01-23 07:05:16 +00:00
|
|
|
|
db_level |= DB_BASIC | DB_IMPLICIT;
|
1999-11-27 08:09:42 +00:00
|
|
|
|
break;
|
|
|
|
|
case 'j':
|
|
|
|
|
db_level |= DB_JOBS;
|
|
|
|
|
break;
|
|
|
|
|
case 'm':
|
2000-01-23 07:05:16 +00:00
|
|
|
|
db_level |= DB_BASIC | DB_MAKEFILES;
|
1999-11-27 08:09:42 +00:00
|
|
|
|
break;
|
|
|
|
|
case 'v':
|
|
|
|
|
db_level |= DB_BASIC | DB_VERBOSE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
fatal (NILF, _("unknown debug level specification `%s'"), p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (*(++p) != '\0')
|
|
|
|
|
if (*p == ',' || *p == ' ')
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (*p == '\0')
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
++p;
|
|
|
|
|
}
|
|
|
|
|
}
|
1995-01-26 06:29:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
|
|
|
|
/*
|
|
|
|
|
* HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
|
|
|
|
|
* exception and print it to stderr instead.
|
|
|
|
|
*
|
1999-11-27 08:09:42 +00:00
|
|
|
|
* If ! DB_VERBOSE, just print a simple message and exit.
|
|
|
|
|
* If DB_VERBOSE, print a more verbose message.
|
1997-04-07 07:21:16 +00:00
|
|
|
|
* If compiled for DEBUG, let exception pass through to GUI so that
|
|
|
|
|
* debuggers can attach.
|
|
|
|
|
*/
|
|
|
|
|
LONG WINAPI
|
|
|
|
|
handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
|
|
|
|
|
{
|
|
|
|
|
PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
|
|
|
|
|
LPSTR cmdline = GetCommandLine();
|
|
|
|
|
LPSTR prg = strtok(cmdline, " ");
|
|
|
|
|
CHAR errmsg[1024];
|
|
|
|
|
#ifdef USE_EVENT_LOG
|
|
|
|
|
HANDLE hEventSource;
|
|
|
|
|
LPTSTR lpszStrings[1];
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-11-27 08:09:42 +00:00
|
|
|
|
if (! ISDB (DB_VERBOSE))
|
1997-04-07 07:21:16 +00:00
|
|
|
|
{
|
2000-01-22 08:57:17 +00:00
|
|
|
|
sprintf(errmsg,
|
2005-08-08 05:08:00 +00:00
|
|
|
|
_("%s: Interrupt/Exception caught (code = 0x%lx, addr = 0x%lx)\n"),
|
2006-01-04 14:45:16 +00:00
|
|
|
|
prg, exrec->ExceptionCode, (DWORD)exrec->ExceptionAddress);
|
1997-04-07 07:21:16 +00:00
|
|
|
|
fprintf(stderr, errmsg);
|
|
|
|
|
exit(255);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sprintf(errmsg,
|
2005-08-08 05:08:00 +00:00
|
|
|
|
_("\nUnhandled exception filter called from program %s\nExceptionCode = %lx\nExceptionFlags = %lx\nExceptionAddress = %lx\n"),
|
2000-01-22 08:57:17 +00:00
|
|
|
|
prg, exrec->ExceptionCode, exrec->ExceptionFlags,
|
2006-01-04 14:45:16 +00:00
|
|
|
|
(DWORD)exrec->ExceptionAddress);
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
|
|
|
|
if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
|
|
|
|
|
&& exrec->NumberParameters >= 2)
|
|
|
|
|
sprintf(&errmsg[strlen(errmsg)],
|
2000-01-22 08:57:17 +00:00
|
|
|
|
(exrec->ExceptionInformation[0]
|
2005-08-08 05:08:00 +00:00
|
|
|
|
? _("Access violation: write operation at address %lx\n")
|
|
|
|
|
: _("Access violation: read operation at address %lx\n")),
|
1997-04-07 07:21:16 +00:00
|
|
|
|
exrec->ExceptionInformation[1]);
|
|
|
|
|
|
|
|
|
|
/* turn this on if we want to put stuff in the event log too */
|
|
|
|
|
#ifdef USE_EVENT_LOG
|
|
|
|
|
hEventSource = RegisterEventSource(NULL, "GNU Make");
|
|
|
|
|
lpszStrings[0] = errmsg;
|
|
|
|
|
|
|
|
|
|
if (hEventSource != NULL)
|
|
|
|
|
{
|
|
|
|
|
ReportEvent(hEventSource, /* handle of event source */
|
|
|
|
|
EVENTLOG_ERROR_TYPE, /* event type */
|
|
|
|
|
0, /* event category */
|
|
|
|
|
0, /* event ID */
|
|
|
|
|
NULL, /* current user's SID */
|
|
|
|
|
1, /* strings in lpszStrings */
|
|
|
|
|
0, /* no bytes of raw data */
|
|
|
|
|
lpszStrings, /* array of error strings */
|
|
|
|
|
NULL); /* no raw data */
|
|
|
|
|
|
|
|
|
|
(VOID) DeregisterEventSource(hEventSource);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Write the error to stderr too */
|
|
|
|
|
fprintf(stderr, errmsg);
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
return EXCEPTION_CONTINUE_SEARCH;
|
|
|
|
|
#else
|
|
|
|
|
exit(255);
|
1998-07-30 20:54:47 +00:00
|
|
|
|
return (255); /* not reached */
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* On WIN32 systems we don't have the luxury of a /bin directory that
|
|
|
|
|
* is mapped globally to every drive mounted to the system. Since make could
|
|
|
|
|
* be invoked from any drive, and we don't want to propogate /bin/sh
|
|
|
|
|
* to every single drive. Allow ourselves a chance to search for
|
|
|
|
|
* a value for default shell here (if the default path does not exist).
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
int
|
2007-03-20 03:02:26 +00:00
|
|
|
|
find_and_set_default_shell (const char *token)
|
1998-07-30 20:54:47 +00:00
|
|
|
|
{
|
|
|
|
|
int sh_found = 0;
|
2007-03-20 03:02:26 +00:00
|
|
|
|
char *atoken = 0;
|
2004-09-21 12:07:12 +00:00
|
|
|
|
char *search_token;
|
|
|
|
|
char *tokend;
|
1998-07-30 20:54:47 +00:00
|
|
|
|
PATH_VAR(sh_path);
|
|
|
|
|
extern char *default_shell;
|
|
|
|
|
|
|
|
|
|
if (!token)
|
|
|
|
|
search_token = default_shell;
|
|
|
|
|
else
|
2007-03-20 03:02:26 +00:00
|
|
|
|
atoken = search_token = xstrdup (token);
|
2004-09-21 12:07:12 +00:00
|
|
|
|
|
|
|
|
|
/* If the user explicitly requests the DOS cmd shell, obey that request.
|
|
|
|
|
However, make sure that's what they really want by requiring the value
|
|
|
|
|
of SHELL either equal, or have a final path element of, "cmd" or
|
|
|
|
|
"cmd.exe" case-insensitive. */
|
|
|
|
|
tokend = search_token + strlen (search_token) - 3;
|
|
|
|
|
if (((tokend == search_token
|
|
|
|
|
|| (tokend > search_token
|
|
|
|
|
&& (tokend[-1] == '/' || tokend[-1] == '\\')))
|
2007-05-09 02:01:53 +00:00
|
|
|
|
&& !strcasecmp (tokend, "cmd"))
|
2004-09-21 12:07:12 +00:00
|
|
|
|
|| ((tokend - 4 == search_token
|
|
|
|
|
|| (tokend - 4 > search_token
|
|
|
|
|
&& (tokend[-5] == '/' || tokend[-5] == '\\')))
|
2007-05-09 02:01:53 +00:00
|
|
|
|
&& !strcasecmp (tokend - 4, "cmd.exe"))) {
|
2004-09-21 12:07:12 +00:00
|
|
|
|
batch_mode_shell = 1;
|
|
|
|
|
unixy_shell = 0;
|
2005-08-08 05:08:00 +00:00
|
|
|
|
sprintf (sh_path, "%s", search_token);
|
|
|
|
|
default_shell = xstrdup (w32ify (sh_path, 0));
|
2009-06-09 15:35:38 +00:00
|
|
|
|
DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
|
|
|
|
|
default_shell));
|
2005-08-08 05:08:00 +00:00
|
|
|
|
sh_found = 1;
|
2004-09-21 12:07:12 +00:00
|
|
|
|
} else if (!no_default_sh_exe &&
|
|
|
|
|
(token == NULL || !strcmp (search_token, default_shell))) {
|
1998-07-30 20:54:47 +00:00
|
|
|
|
/* no new information, path already set or known */
|
|
|
|
|
sh_found = 1;
|
2007-03-20 03:02:26 +00:00
|
|
|
|
} else if (file_exists_p (search_token)) {
|
1998-07-30 20:54:47 +00:00
|
|
|
|
/* search token path was found */
|
2007-03-20 03:02:26 +00:00
|
|
|
|
sprintf (sh_path, "%s", search_token);
|
|
|
|
|
default_shell = xstrdup (w32ify (sh_path, 0));
|
2009-06-09 15:35:38 +00:00
|
|
|
|
DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
|
|
|
|
|
default_shell));
|
1998-07-30 20:54:47 +00:00
|
|
|
|
sh_found = 1;
|
|
|
|
|
} else {
|
|
|
|
|
char *p;
|
2005-06-25 18:57:28 +00:00
|
|
|
|
struct variable *v = lookup_variable (STRING_SIZE_TUPLE ("PATH"));
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
2005-04-08 12:51:20 +00:00
|
|
|
|
/* Search Path for shell */
|
1998-07-30 20:54:47 +00:00
|
|
|
|
if (v && v->value) {
|
|
|
|
|
char *ep;
|
|
|
|
|
|
|
|
|
|
p = v->value;
|
2007-03-20 03:02:26 +00:00
|
|
|
|
ep = strchr (p, PATH_SEPARATOR_CHAR);
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
|
|
|
|
while (ep && *ep) {
|
|
|
|
|
*ep = '\0';
|
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
if (dir_file_exists_p (p, search_token)) {
|
|
|
|
|
sprintf (sh_path, "%s/%s", p, search_token);
|
|
|
|
|
default_shell = xstrdup (w32ify (sh_path, 0));
|
1998-07-30 20:54:47 +00:00
|
|
|
|
sh_found = 1;
|
|
|
|
|
*ep = PATH_SEPARATOR_CHAR;
|
|
|
|
|
|
|
|
|
|
/* terminate loop */
|
2007-03-20 03:02:26 +00:00
|
|
|
|
p += strlen (p);
|
1998-07-30 20:54:47 +00:00
|
|
|
|
} else {
|
|
|
|
|
*ep = PATH_SEPARATOR_CHAR;
|
|
|
|
|
p = ++ep;
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
ep = strchr (p, PATH_SEPARATOR_CHAR);
|
1998-07-30 20:54:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* be sure to check last element of Path */
|
2007-03-20 03:02:26 +00:00
|
|
|
|
if (p && *p && dir_file_exists_p (p, search_token)) {
|
|
|
|
|
sprintf (sh_path, "%s/%s", p, search_token);
|
|
|
|
|
default_shell = xstrdup (w32ify (sh_path, 0));
|
1998-07-30 20:54:47 +00:00
|
|
|
|
sh_found = 1;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-22 06:15:35 +00:00
|
|
|
|
if (sh_found)
|
1999-11-27 08:09:42 +00:00
|
|
|
|
DB (DB_VERBOSE,
|
2009-06-09 15:35:38 +00:00
|
|
|
|
(_("find_and_set_shell() path search set default_shell = %s\n"),
|
1999-11-22 06:15:35 +00:00
|
|
|
|
default_shell));
|
1998-07-30 20:54:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* naive test */
|
|
|
|
|
if (!unixy_shell && sh_found &&
|
2007-03-20 03:02:26 +00:00
|
|
|
|
(strstr (default_shell, "sh") || strstr (default_shell, "SH"))) {
|
1998-07-30 20:54:47 +00:00
|
|
|
|
unixy_shell = 1;
|
|
|
|
|
batch_mode_shell = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef BATCH_MODE_ONLY_SHELL
|
|
|
|
|
batch_mode_shell = 1;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#endif
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
if (atoken)
|
|
|
|
|
free (atoken);
|
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
return (sh_found);
|
1997-04-07 07:21:16 +00:00
|
|
|
|
}
|
|
|
|
|
#endif /* WINDOWS32 */
|
|
|
|
|
|
2006-11-18 20:53:44 +00:00
|
|
|
|
#ifdef __MSDOS__
|
1997-04-07 07:21:16 +00:00
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
msdos_return_to_initial_directory (void)
|
1997-04-07 07:21:16 +00:00
|
|
|
|
{
|
|
|
|
|
if (directory_before_chdir)
|
|
|
|
|
chdir (directory_before_chdir);
|
|
|
|
|
}
|
2006-11-18 20:53:44 +00:00
|
|
|
|
#endif /* __MSDOS__ */
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
|
char *mktemp (char *template);
|
|
|
|
|
int mkstemp (char *template);
|
2000-03-27 06:54:37 +00:00
|
|
|
|
|
|
|
|
|
FILE *
|
2002-10-14 21:54:04 +00:00
|
|
|
|
open_tmpfile(char **name, const char *template)
|
2000-03-27 06:54:37 +00:00
|
|
|
|
{
|
2005-08-08 05:08:00 +00:00
|
|
|
|
#ifdef HAVE_FDOPEN
|
2000-03-27 06:54:37 +00:00
|
|
|
|
int fd;
|
2005-08-08 05:08:00 +00:00
|
|
|
|
#endif
|
2000-03-27 06:54:37 +00:00
|
|
|
|
|
|
|
|
|
#if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
|
|
|
|
|
# define TEMPLATE_LEN strlen (template)
|
|
|
|
|
#else
|
|
|
|
|
# define TEMPLATE_LEN L_tmpnam
|
|
|
|
|
#endif
|
|
|
|
|
*name = xmalloc (TEMPLATE_LEN + 1);
|
|
|
|
|
strcpy (*name, template);
|
|
|
|
|
|
|
|
|
|
#if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
|
|
|
|
|
/* It's safest to use mkstemp(), if we can. */
|
|
|
|
|
fd = mkstemp (*name);
|
|
|
|
|
if (fd == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
return fdopen (fd, "w");
|
|
|
|
|
#else
|
|
|
|
|
# ifdef HAVE_MKTEMP
|
|
|
|
|
(void) mktemp (*name);
|
|
|
|
|
# else
|
|
|
|
|
(void) tmpnam (*name);
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef HAVE_FDOPEN
|
|
|
|
|
/* Can't use mkstemp(), but guard against a race condition. */
|
|
|
|
|
fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
|
|
|
|
|
if (fd == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
return fdopen (fd, "w");
|
|
|
|
|
# else
|
|
|
|
|
/* Not secure, but what can we do? */
|
|
|
|
|
return fopen (*name, "w");
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-10-14 21:54:04 +00:00
|
|
|
|
#ifdef _AMIGA
|
1992-01-29 23:54:36 +00:00
|
|
|
|
int
|
2002-10-14 21:54:04 +00:00
|
|
|
|
main (int argc, char **argv)
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#else
|
2002-10-14 21:54:04 +00:00
|
|
|
|
int
|
|
|
|
|
main (int argc, char **argv, char **envp)
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1998-07-30 20:54:47 +00:00
|
|
|
|
static char *stdin_nm = 0;
|
2004-05-16 19:16:52 +00:00
|
|
|
|
int makefile_status = MAKE_SUCCESS;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
struct dep *read_makefiles;
|
|
|
|
|
PATH_VAR (current_directory);
|
2005-06-25 18:57:28 +00:00
|
|
|
|
unsigned int restarts = 0;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
char *unix_path = NULL;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
char *windows32_path = NULL;
|
|
|
|
|
|
|
|
|
|
SetUnhandledExceptionFilter(handle_runtime_exceptions);
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
|
|
|
|
/* start off assuming we have no shell */
|
|
|
|
|
unixy_shell = 0;
|
|
|
|
|
no_default_sh_exe = 1;
|
1996-05-22 21:51:45 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2005-02-16 05:03:42 +00:00
|
|
|
|
#ifdef SET_STACK_SIZE
|
|
|
|
|
/* Get rid of any avoidable limit on stack size. */
|
|
|
|
|
{
|
|
|
|
|
struct rlimit rlim;
|
|
|
|
|
|
|
|
|
|
/* Set the stack limit huge so that alloca does not fail. */
|
2009-06-07 17:40:06 +00:00
|
|
|
|
if (getrlimit (RLIMIT_STACK, &rlim) == 0
|
|
|
|
|
&& rlim.rlim_cur > 0 && rlim.rlim_cur < rlim.rlim_max)
|
2005-02-16 05:03:42 +00:00
|
|
|
|
{
|
2009-06-07 17:40:06 +00:00
|
|
|
|
stack_limit = rlim;
|
2005-02-16 05:03:42 +00:00
|
|
|
|
rlim.rlim_cur = rlim.rlim_max;
|
|
|
|
|
setrlimit (RLIMIT_STACK, &rlim);
|
|
|
|
|
}
|
2009-06-07 17:40:06 +00:00
|
|
|
|
else
|
|
|
|
|
stack_limit.rlim_cur = 0;
|
2005-02-16 05:03:42 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-06-12 22:22:07 +00:00
|
|
|
|
#ifdef HAVE_ATEXIT
|
|
|
|
|
atexit (close_stdout);
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-03-24 23:14:15 +00:00
|
|
|
|
/* Needed for OS/2 */
|
|
|
|
|
initialize_main(&argc, &argv);
|
|
|
|
|
|
1998-10-03 05:39:55 +00:00
|
|
|
|
reading_file = 0;
|
1995-11-26 01:37:07 +00:00
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
|
|
|
|
|
/* Request the most powerful version of `system', to
|
|
|
|
|
make up for the dumb default shell. */
|
|
|
|
|
__system_flags = (__system_redirect
|
|
|
|
|
| __system_use_shell
|
|
|
|
|
| __system_allow_multiple_cmds
|
|
|
|
|
| __system_allow_long_cmds
|
|
|
|
|
| __system_handle_null_commands
|
|
|
|
|
| __system_emulate_chdir);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-01-22 08:57:17 +00:00
|
|
|
|
/* Set up gettext/internationalization support. */
|
|
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
bindtextdomain (PACKAGE, LOCALEDIR);
|
|
|
|
|
textdomain (PACKAGE);
|
|
|
|
|
|
1992-04-30 22:17:12 +00:00
|
|
|
|
#ifdef POSIX
|
|
|
|
|
sigemptyset (&fatal_signal_set);
|
1992-05-01 15:39:36 +00:00
|
|
|
|
#define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
|
1992-04-30 22:17:12 +00:00
|
|
|
|
#else
|
1992-07-05 00:52:48 +00:00
|
|
|
|
#ifdef HAVE_SIGSETMASK
|
1992-01-29 23:54:36 +00:00
|
|
|
|
fatal_signal_mask = 0;
|
1992-04-30 22:17:12 +00:00
|
|
|
|
#define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
|
|
|
|
|
#else
|
|
|
|
|
#define ADD_SIG(sig)
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
#define FATAL_SIG(sig) \
|
2001-06-01 03:56:50 +00:00
|
|
|
|
if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
|
|
|
|
|
bsd_signal (sig, SIG_IGN); \
|
1992-01-29 23:54:36 +00:00
|
|
|
|
else \
|
1992-04-30 22:17:12 +00:00
|
|
|
|
ADD_SIG (sig);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#ifdef SIGHUP
|
1992-01-29 23:54:36 +00:00
|
|
|
|
FATAL_SIG (SIGHUP);
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGQUIT
|
1992-01-29 23:54:36 +00:00
|
|
|
|
FATAL_SIG (SIGQUIT);
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
FATAL_SIG (SIGINT);
|
1992-06-05 01:04:07 +00:00
|
|
|
|
FATAL_SIG (SIGTERM);
|
|
|
|
|
|
2000-06-07 05:43:37 +00:00
|
|
|
|
#ifdef __MSDOS__
|
|
|
|
|
/* Windows 9X delivers FP exceptions in child programs to their
|
|
|
|
|
parent! We don't want Make to die when a child divides by zero,
|
|
|
|
|
so we work around that lossage by catching SIGFPE. */
|
|
|
|
|
FATAL_SIG (SIGFPE);
|
|
|
|
|
#endif
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
#ifdef SIGDANGER
|
|
|
|
|
FATAL_SIG (SIGDANGER);
|
1992-06-05 01:04:07 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
#ifdef SIGXCPU
|
|
|
|
|
FATAL_SIG (SIGXCPU);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGXFSZ
|
|
|
|
|
FATAL_SIG (SIGXFSZ);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#undef FATAL_SIG
|
|
|
|
|
|
1998-10-03 05:39:55 +00:00
|
|
|
|
/* Do not ignore the child-death signal. This must be done before
|
|
|
|
|
any children could possibly be created; otherwise, the wait
|
|
|
|
|
functions won't work on systems with the SVR4 ECHILD brain
|
|
|
|
|
damage, if our invoker is ignoring this signal. */
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_WAIT_NOHANG
|
|
|
|
|
# if defined SIGCHLD
|
2001-06-01 03:56:50 +00:00
|
|
|
|
(void) bsd_signal (SIGCHLD, SIG_DFL);
|
1998-10-03 05:39:55 +00:00
|
|
|
|
# endif
|
|
|
|
|
# if defined SIGCLD && SIGCLD != SIGCHLD
|
2001-06-01 03:56:50 +00:00
|
|
|
|
(void) bsd_signal (SIGCLD, SIG_DFL);
|
1998-10-03 05:39:55 +00:00
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Make sure stdout is line-buffered. */
|
|
|
|
|
|
2002-05-10 03:15:07 +00:00
|
|
|
|
#ifdef HAVE_SETVBUF
|
|
|
|
|
# ifdef SETVBUF_REVERSED
|
2002-07-08 02:26:47 +00:00
|
|
|
|
setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
|
2002-05-10 03:15:07 +00:00
|
|
|
|
# else /* setvbuf not reversed. */
|
1992-06-11 20:05:40 +00:00
|
|
|
|
/* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
|
2006-04-09 22:09:24 +00:00
|
|
|
|
setvbuf (stdout, 0, _IOLBF, BUFSIZ);
|
2002-05-10 03:15:07 +00:00
|
|
|
|
# endif /* setvbuf reversed. */
|
|
|
|
|
#elif HAVE_SETLINEBUF
|
|
|
|
|
setlinebuf (stdout);
|
1992-06-11 04:58:20 +00:00
|
|
|
|
#endif /* setlinebuf missing. */
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Figure out where this program lives. */
|
|
|
|
|
|
|
|
|
|
if (argv[0] == 0)
|
|
|
|
|
argv[0] = "";
|
|
|
|
|
if (argv[0][0] == '\0')
|
|
|
|
|
program = "make";
|
1995-11-26 01:37:07 +00:00
|
|
|
|
else
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#ifdef VMS
|
1999-10-15 07:00:58 +00:00
|
|
|
|
program = strrchr (argv[0], ']');
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#else
|
1999-10-15 07:00:58 +00:00
|
|
|
|
program = strrchr (argv[0], '/');
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#endif
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#if defined(__MSDOS__) || defined(__EMX__)
|
1994-07-25 23:33:26 +00:00
|
|
|
|
if (program == 0)
|
1999-10-15 07:00:58 +00:00
|
|
|
|
program = strrchr (argv[0], '\\');
|
1997-04-07 07:21:16 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Some weird environments might pass us argv[0] with
|
|
|
|
|
both kinds of slashes; we must find the rightmost. */
|
1999-10-15 07:00:58 +00:00
|
|
|
|
char *p = strrchr (argv[0], '\\');
|
1997-04-07 07:21:16 +00:00
|
|
|
|
if (p && p > program)
|
|
|
|
|
program = p;
|
|
|
|
|
}
|
|
|
|
|
if (program == 0 && argv[0][1] == ':')
|
|
|
|
|
program = argv[0] + 1;
|
2005-02-26 01:41:48 +00:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef WINDOWS32
|
|
|
|
|
if (program == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Extract program from full path */
|
|
|
|
|
int argv0_len;
|
2005-07-04 03:50:59 +00:00
|
|
|
|
program = strrchr (argv[0], '\\');
|
|
|
|
|
if (program)
|
2005-02-26 01:41:48 +00:00
|
|
|
|
{
|
2005-07-04 03:50:59 +00:00
|
|
|
|
argv0_len = strlen(program);
|
|
|
|
|
if (argv0_len > 4 && streq (&program[argv0_len - 4], ".exe"))
|
|
|
|
|
/* Remove .exe extension */
|
|
|
|
|
program[argv0_len - 4] = '\0';
|
2005-02-26 01:41:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1994-07-25 23:33:26 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (program == 0)
|
|
|
|
|
program = argv[0];
|
|
|
|
|
else
|
|
|
|
|
++program;
|
|
|
|
|
}
|
|
|
|
|
|
1994-02-16 21:13:16 +00:00
|
|
|
|
/* Set up to access user data (files). */
|
|
|
|
|
user_access ();
|
|
|
|
|
|
2002-07-11 06:38:57 +00:00
|
|
|
|
initialize_global_hash_tables ();
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Figure out where we are. */
|
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
|
|
|
|
|
#else
|
1992-06-11 04:58:20 +00:00
|
|
|
|
if (getcwd (current_directory, GET_PATH_MAX) == 0)
|
1996-05-22 21:51:45 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1992-07-05 00:52:48 +00:00
|
|
|
|
#ifdef HAVE_GETCWD
|
2005-05-08 16:50:58 +00:00
|
|
|
|
perror_with_name ("getcwd", "");
|
1992-01-29 23:54:36 +00:00
|
|
|
|
#else
|
1998-10-03 05:39:55 +00:00
|
|
|
|
error (NILF, "getwd: %s", current_directory);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
#endif
|
|
|
|
|
current_directory[0] = '\0';
|
1993-03-08 18:49:51 +00:00
|
|
|
|
directory_before_chdir = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
1993-03-08 18:49:51 +00:00
|
|
|
|
else
|
1999-07-21 05:53:23 +00:00
|
|
|
|
directory_before_chdir = xstrdup (current_directory);
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef __MSDOS__
|
|
|
|
|
/* Make sure we will return to the initial directory, come what may. */
|
|
|
|
|
atexit (msdos_return_to_initial_directory);
|
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2002-08-01 13:16:57 +00:00
|
|
|
|
/* Initialize the special variables. */
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname (".VARIABLES", "", o_default, 0)->special = 1;
|
|
|
|
|
/* define_variable_cname (".TARGETS", "", o_default, 0)->special = 1; */
|
|
|
|
|
define_variable_cname (".RECIPEPREFIX", "", o_default, 0)->special = 1;
|
2005-04-08 12:51:20 +00:00
|
|
|
|
|
|
|
|
|
/* Set up .FEATURES */
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname (".FEATURES",
|
|
|
|
|
"target-specific order-only second-expansion else-if"
|
|
|
|
|
"shortest-stem undefine",
|
|
|
|
|
o_default, 0);
|
2006-02-14 15:42:17 +00:00
|
|
|
|
#ifndef NO_ARCHIVES
|
|
|
|
|
do_variable_definition (NILF, ".FEATURES", "archives",
|
|
|
|
|
o_default, f_append, 0);
|
|
|
|
|
#endif
|
2005-04-08 12:51:20 +00:00
|
|
|
|
#ifdef MAKE_JOBSERVER
|
|
|
|
|
do_variable_definition (NILF, ".FEATURES", "jobserver",
|
|
|
|
|
o_default, f_append, 0);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef MAKE_SYMLINKS
|
|
|
|
|
do_variable_definition (NILF, ".FEATURES", "check-symlink",
|
|
|
|
|
o_default, f_append, 0);
|
|
|
|
|
#endif
|
2002-08-01 13:16:57 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Read in variables from the environment. It is important that this be
|
1997-04-07 07:21:16 +00:00
|
|
|
|
done before $(MAKE) is figured out so its definitions will not be
|
|
|
|
|
from the environment. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#ifndef _AMIGA
|
2006-04-09 22:09:24 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; envp[i] != 0; ++i)
|
|
|
|
|
{
|
|
|
|
|
int do_not_define = 0;
|
|
|
|
|
char *ep = envp[i];
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
2006-04-09 22:09:24 +00:00
|
|
|
|
while (*ep != '\0' && *ep != '=')
|
|
|
|
|
++ep;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
2006-04-09 22:09:24 +00:00
|
|
|
|
if (!unix_path && strneq(envp[i], "PATH=", 5))
|
|
|
|
|
unix_path = ep+1;
|
|
|
|
|
else if (!strnicmp(envp[i], "Path=", 5)) {
|
|
|
|
|
do_not_define = 1; /* it gets defined after loop exits */
|
|
|
|
|
if (!windows32_path)
|
|
|
|
|
windows32_path = ep+1;
|
|
|
|
|
}
|
1996-05-22 21:51:45 +00:00
|
|
|
|
#endif
|
2006-04-09 22:09:24 +00:00
|
|
|
|
/* The result of pointer arithmetic is cast to unsigned int for
|
|
|
|
|
machines where ptrdiff_t is a different size that doesn't widen
|
|
|
|
|
the same. */
|
|
|
|
|
if (!do_not_define)
|
|
|
|
|
{
|
|
|
|
|
struct variable *v;
|
|
|
|
|
|
|
|
|
|
v = define_variable (envp[i], (unsigned int) (ep - envp[i]),
|
|
|
|
|
ep + 1, o_env, 1);
|
|
|
|
|
/* Force exportation of every variable culled from the
|
|
|
|
|
environment. We used to rely on target_environment's
|
|
|
|
|
v_default code to do this. But that does not work for the
|
|
|
|
|
case where an environment variable is redefined in a makefile
|
|
|
|
|
with `override'; it should then still be exported, because it
|
|
|
|
|
was originally in the environment. */
|
|
|
|
|
v->export = v_export;
|
|
|
|
|
|
|
|
|
|
/* Another wrinkle is that POSIX says the value of SHELL set in
|
|
|
|
|
the makefile won't change the value of SHELL given to
|
|
|
|
|
subprocesses. */
|
|
|
|
|
if (streq (v->name, "SHELL"))
|
|
|
|
|
{
|
2005-04-08 12:51:20 +00:00
|
|
|
|
#ifndef __MSDOS__
|
2006-04-09 22:09:24 +00:00
|
|
|
|
v->export = v_noexport;
|
2005-04-08 12:51:20 +00:00
|
|
|
|
#endif
|
2006-04-09 22:09:24 +00:00
|
|
|
|
shell_var.name = "SHELL";
|
2009-06-04 06:30:27 +00:00
|
|
|
|
shell_var.length = 5;
|
2006-04-09 22:09:24 +00:00
|
|
|
|
shell_var.value = xstrdup (ep + 1);
|
|
|
|
|
}
|
2005-06-25 18:57:28 +00:00
|
|
|
|
|
2006-04-09 22:09:24 +00:00
|
|
|
|
/* If MAKE_RESTARTS is set, remember it but don't export it. */
|
|
|
|
|
if (streq (v->name, "MAKE_RESTARTS"))
|
|
|
|
|
{
|
|
|
|
|
v->export = v_noexport;
|
|
|
|
|
restarts = (unsigned int) atoi (ep + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
2005-04-08 12:51:20 +00:00
|
|
|
|
/* If we didn't find a correctly spelled PATH we define PATH as
|
|
|
|
|
* either the first mispelled value or an empty string
|
1996-05-22 21:51:45 +00:00
|
|
|
|
*/
|
2005-04-08 12:51:20 +00:00
|
|
|
|
if (!unix_path)
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname ("PATH", windows32_path ? windows32_path : "",
|
|
|
|
|
o_env, 1)->export = v_export;
|
1996-05-22 21:51:45 +00:00
|
|
|
|
#endif
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#else /* For Amiga, read the ENV: device, ignoring all dirs */
|
|
|
|
|
{
|
|
|
|
|
BPTR env, file, old;
|
|
|
|
|
char buffer[1024];
|
|
|
|
|
int len;
|
|
|
|
|
__aligned struct FileInfoBlock fib;
|
|
|
|
|
|
|
|
|
|
env = Lock ("ENV:", ACCESS_READ);
|
|
|
|
|
if (env)
|
|
|
|
|
{
|
|
|
|
|
old = CurrentDir (DupLock(env));
|
|
|
|
|
Examine (env, &fib);
|
|
|
|
|
|
|
|
|
|
while (ExNext (env, &fib))
|
|
|
|
|
{
|
|
|
|
|
if (fib.fib_DirEntryType < 0) /* File */
|
|
|
|
|
{
|
1996-05-13 18:40:11 +00:00
|
|
|
|
/* Define an empty variable. It will be filled in
|
|
|
|
|
variable_lookup(). Makes startup quite a bit
|
|
|
|
|
faster. */
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
define_variable (fib.fib_FileName,
|
|
|
|
|
strlen (fib.fib_FileName),
|
1996-05-13 18:40:11 +00:00
|
|
|
|
"", o_env, 1)->export = v_export;
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
UnLock (env);
|
|
|
|
|
UnLock(CurrentDir(old));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Decode the switches. */
|
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
|
1993-08-11 06:54:23 +00:00
|
|
|
|
#if 0
|
|
|
|
|
/* People write things like:
|
2007-03-20 03:02:26 +00:00
|
|
|
|
MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
|
1993-08-11 06:54:23 +00:00
|
|
|
|
and we set the -p, -i and -e switches. Doesn't seem quite right. */
|
2005-06-25 18:57:28 +00:00
|
|
|
|
decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
|
1993-08-11 06:54:23 +00:00
|
|
|
|
#endif
|
2009-10-25 00:46:52 +00:00
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
decode_switches (argc, argv, 0);
|
2009-10-25 00:46:52 +00:00
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
if (suspend_flag) {
|
2005-08-08 05:08:00 +00:00
|
|
|
|
fprintf(stderr, "%s (pid = %ld)\n", argv[0], GetCurrentProcessId());
|
1999-07-28 06:23:37 +00:00
|
|
|
|
fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
|
1996-05-22 21:51:45 +00:00
|
|
|
|
Sleep(30 * 1000);
|
1999-07-28 06:23:37 +00:00
|
|
|
|
fprintf(stderr, _("done sleep(30). Continuing.\n"));
|
1996-05-22 21:51:45 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1999-11-27 08:09:42 +00:00
|
|
|
|
decode_debug_flags ();
|
1999-11-22 06:15:35 +00:00
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
/* Set always_make_flag if -B was given and we've not restarted already. */
|
|
|
|
|
always_make_flag = always_make_set && (restarts == 0);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
/* Print version information. */
|
1999-11-22 06:15:35 +00:00
|
|
|
|
if (print_version_flag || print_data_base_flag || db_level)
|
2005-06-25 18:57:28 +00:00
|
|
|
|
{
|
|
|
|
|
print_version ();
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
/* `make --version' is supposed to just print the version and exit. */
|
|
|
|
|
if (print_version_flag)
|
|
|
|
|
die (0);
|
|
|
|
|
}
|
1993-05-14 21:50:11 +00:00
|
|
|
|
|
1999-08-22 17:50:57 +00:00
|
|
|
|
#ifndef VMS
|
1992-12-09 22:10:14 +00:00
|
|
|
|
/* Set the "MAKE_COMMAND" variable to the name we were invoked with.
|
1992-01-29 23:54:36 +00:00
|
|
|
|
(If it is a relative pathname with a slash, prepend our directory name
|
|
|
|
|
so the result will run the same program regardless of the current dir.
|
|
|
|
|
If it is a name with no slash, we can only hope that PATH did not
|
1992-12-09 22:10:14 +00:00
|
|
|
|
find it in the current directory.) */
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
/*
|
|
|
|
|
* Convert from backslashes to forward slashes for
|
|
|
|
|
* programs like sh which don't like them. Shouldn't
|
|
|
|
|
* matter if the path is one way or the other for
|
|
|
|
|
* CreateProcess().
|
|
|
|
|
*/
|
|
|
|
|
if (strpbrk(argv[0], "/:\\") ||
|
|
|
|
|
strstr(argv[0], "..") ||
|
1999-07-21 05:53:23 +00:00
|
|
|
|
strneq(argv[0], "//", 2))
|
1999-03-05 07:13:12 +00:00
|
|
|
|
argv[0] = xstrdup(w32ify(argv[0],1));
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#else /* WINDOWS32 */
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#if defined (__MSDOS__) || defined (__EMX__)
|
1999-08-22 17:50:57 +00:00
|
|
|
|
if (strchr (argv[0], '\\'))
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
argv[0] = xstrdup (argv[0]);
|
|
|
|
|
for (p = argv[0]; *p; p++)
|
|
|
|
|
if (*p == '\\')
|
|
|
|
|
*p = '/';
|
|
|
|
|
}
|
1999-09-15 22:23:35 +00:00
|
|
|
|
/* If argv[0] is not in absolute form, prepend the current
|
|
|
|
|
directory. This can happen when Make is invoked by another DJGPP
|
|
|
|
|
program that uses a non-absolute name. */
|
|
|
|
|
if (current_directory[0] != '\0'
|
|
|
|
|
&& argv[0] != 0
|
2004-02-23 06:25:54 +00:00
|
|
|
|
&& (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':'))
|
2006-11-18 20:53:44 +00:00
|
|
|
|
# ifdef __EMX__
|
2004-02-23 06:25:54 +00:00
|
|
|
|
/* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
|
|
|
|
|
&& (strchr (argv[0], '/') != 0 || strchr (argv[0], '\\') != 0)
|
|
|
|
|
# endif
|
|
|
|
|
)
|
2009-09-16 17:07:01 +00:00
|
|
|
|
argv[0] = xstrdup (concat (3, current_directory, "/", argv[0]));
|
1999-08-22 17:50:57 +00:00
|
|
|
|
#else /* !__MSDOS__ */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (current_directory[0] != '\0'
|
2006-11-18 20:53:44 +00:00
|
|
|
|
&& argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0
|
|
|
|
|
#ifdef HAVE_DOS_PATHS
|
|
|
|
|
&& (argv[0][0] != '\\' && (!argv[0][0] || argv[0][1] != ':'))
|
|
|
|
|
&& strchr (argv[0], '\\') != 0
|
|
|
|
|
#endif
|
|
|
|
|
)
|
2009-09-16 17:07:01 +00:00
|
|
|
|
argv[0] = xstrdup (concat (3, current_directory, "/", argv[0]));
|
1999-08-22 17:50:57 +00:00
|
|
|
|
#endif /* !__MSDOS__ */
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#endif /* WINDOWS32 */
|
1994-07-25 23:33:26 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1994-09-09 05:37:40 +00:00
|
|
|
|
/* The extra indirection through $(MAKE_COMMAND) is done
|
|
|
|
|
for hysterical raisins. */
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname ("MAKE_COMMAND", argv[0], o_default, 0);
|
|
|
|
|
define_variable_cname ("MAKE", "$(MAKE_COMMAND)", o_default, 1);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1994-09-26 22:37:10 +00:00
|
|
|
|
if (command_variables != 0)
|
|
|
|
|
{
|
|
|
|
|
struct command_variable *cv;
|
|
|
|
|
struct variable *v;
|
|
|
|
|
unsigned int len = 0;
|
|
|
|
|
char *value, *p;
|
|
|
|
|
|
|
|
|
|
/* Figure out how much space will be taken up by the command-line
|
|
|
|
|
variable definitions. */
|
|
|
|
|
for (cv = command_variables; cv != 0; cv = cv->next)
|
|
|
|
|
{
|
|
|
|
|
v = cv->variable;
|
|
|
|
|
len += 2 * strlen (v->name);
|
|
|
|
|
if (! v->recursive)
|
|
|
|
|
++len;
|
|
|
|
|
++len;
|
1999-10-15 07:00:58 +00:00
|
|
|
|
len += 2 * strlen (v->value);
|
|
|
|
|
++len;
|
1994-09-26 22:37:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now allocate a buffer big enough and fill it. */
|
2006-04-09 22:09:24 +00:00
|
|
|
|
p = value = alloca (len);
|
1994-09-26 22:37:10 +00:00
|
|
|
|
for (cv = command_variables; cv != 0; cv = cv->next)
|
|
|
|
|
{
|
|
|
|
|
v = cv->variable;
|
1999-10-15 07:00:58 +00:00
|
|
|
|
p = quote_for_env (p, v->name);
|
1994-09-26 22:37:10 +00:00
|
|
|
|
if (! v->recursive)
|
|
|
|
|
*p++ = ':';
|
|
|
|
|
*p++ = '=';
|
1999-10-15 07:00:58 +00:00
|
|
|
|
p = quote_for_env (p, v->value);
|
1994-09-26 22:37:10 +00:00
|
|
|
|
*p++ = ' ';
|
|
|
|
|
}
|
|
|
|
|
p[-1] = '\0'; /* Kill the final space and terminate. */
|
|
|
|
|
|
1994-10-01 08:07:35 +00:00
|
|
|
|
/* Define an unchangeable variable with a name that no POSIX.2
|
|
|
|
|
makefile could validly use for its own variable. */
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname ("-*-command-variables-*-", value, o_automatic, 0);
|
1994-10-01 08:07:35 +00:00
|
|
|
|
|
|
|
|
|
/* Define the variable; this will not override any user definition.
|
|
|
|
|
Normally a reference to this variable is written into the value of
|
|
|
|
|
MAKEFLAGS, allowing the user to override this value to affect the
|
|
|
|
|
exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
|
|
|
|
|
allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
|
|
|
|
|
a reference to this hidden variable is written instead. */
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname ("MAKEOVERRIDES", "${-*-command-variables-*-}",
|
|
|
|
|
o_env, 1);
|
1994-09-26 22:37:10 +00:00
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
/* If there were -C flags, move ourselves about. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (directories != 0)
|
2006-04-09 22:09:24 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
for (i = 0; directories->list[i] != 0; ++i)
|
2004-11-29 01:35:13 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char *dir = directories->list[i];
|
2006-04-09 22:09:24 +00:00
|
|
|
|
#ifdef WINDOWS32
|
|
|
|
|
/* WINDOWS32 chdir() doesn't work if the directory has a trailing '/'
|
|
|
|
|
But allow -C/ just in case someone wants that. */
|
|
|
|
|
{
|
|
|
|
|
char *p = dir + strlen (dir) - 1;
|
|
|
|
|
while (p > dir && (p[0] == '/' || p[0] == '\\'))
|
|
|
|
|
--p;
|
|
|
|
|
p[1] = '\0';
|
|
|
|
|
}
|
2004-11-29 01:35:13 +00:00
|
|
|
|
#endif
|
2006-04-09 22:09:24 +00:00
|
|
|
|
if (chdir (dir) < 0)
|
|
|
|
|
pfatal_with_name (dir);
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
/*
|
|
|
|
|
* THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
|
|
|
|
|
* TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
|
|
|
|
|
*
|
|
|
|
|
* The functions in dir.c can incorrectly cache information for "."
|
|
|
|
|
* before we have changed directory and this can cause file
|
|
|
|
|
* lookups to fail because the current directory (.) was pointing
|
|
|
|
|
* at the wrong place when it was first evaluated.
|
|
|
|
|
*/
|
1998-07-30 20:54:47 +00:00
|
|
|
|
no_default_sh_exe = !find_and_set_default_shell(NULL);
|
1996-05-22 21:51:45 +00:00
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#endif /* WINDOWS32 */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Figure out the level of recursion. */
|
|
|
|
|
{
|
2005-06-25 18:57:28 +00:00
|
|
|
|
struct variable *v = lookup_variable (STRING_SIZE_TUPLE (MAKELEVEL_NAME));
|
2000-06-07 05:43:37 +00:00
|
|
|
|
if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
|
1992-01-29 23:54:36 +00:00
|
|
|
|
makelevel = (unsigned int) atoi (v->value);
|
|
|
|
|
else
|
|
|
|
|
makelevel = 0;
|
|
|
|
|
}
|
|
|
|
|
|
1992-09-30 23:21:22 +00:00
|
|
|
|
/* Except under -s, always do -w in sub-makes and under -C. */
|
|
|
|
|
if (!silent_flag && (directories != 0 || makelevel > 0))
|
|
|
|
|
print_directory_flag = 1;
|
1992-07-02 22:48:17 +00:00
|
|
|
|
|
1993-04-07 20:40:35 +00:00
|
|
|
|
/* Let the user disable that with --no-print-directory. */
|
|
|
|
|
if (inhibit_print_directory_flag)
|
|
|
|
|
print_directory_flag = 0;
|
|
|
|
|
|
1999-07-08 06:49:52 +00:00
|
|
|
|
/* If -R was given, set -r too (doesn't make sense otherwise!) */
|
|
|
|
|
if (no_builtin_variables_flag)
|
|
|
|
|
no_builtin_rules_flag = 1;
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Construct the list of include directories to search. */
|
|
|
|
|
|
2006-04-09 22:09:24 +00:00
|
|
|
|
construct_include_path (include_directories == 0
|
|
|
|
|
? 0 : include_directories->list);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1993-02-04 18:23:19 +00:00
|
|
|
|
/* Figure out where we are now, after chdir'ing. */
|
|
|
|
|
if (directories == 0)
|
|
|
|
|
/* We didn't move, so we're still in the same place. */
|
|
|
|
|
starting_directory = current_directory;
|
|
|
|
|
else
|
|
|
|
|
{
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#ifdef WINDOWS32
|
1996-05-22 21:51:45 +00:00
|
|
|
|
if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
|
|
|
|
|
#else
|
1993-02-04 18:23:19 +00:00
|
|
|
|
if (getcwd (current_directory, GET_PATH_MAX) == 0)
|
1996-05-22 21:51:45 +00:00
|
|
|
|
#endif
|
1993-02-04 18:23:19 +00:00
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_GETCWD
|
2005-05-08 16:50:58 +00:00
|
|
|
|
perror_with_name ("getcwd", "");
|
1993-02-04 18:23:19 +00:00
|
|
|
|
#else
|
1998-10-03 05:39:55 +00:00
|
|
|
|
error (NILF, "getwd: %s", current_directory);
|
1993-02-04 18:23:19 +00:00
|
|
|
|
#endif
|
|
|
|
|
starting_directory = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
starting_directory = current_directory;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname ("CURDIR", current_directory, o_file, 0);
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Read any stdin makefiles into temporary files. */
|
|
|
|
|
|
|
|
|
|
if (makefiles != 0)
|
|
|
|
|
{
|
2006-04-09 22:09:24 +00:00
|
|
|
|
unsigned int i;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
for (i = 0; i < makefiles->idx; ++i)
|
|
|
|
|
if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
|
|
|
|
|
{
|
|
|
|
|
/* This makefile is standard input. Since we may re-exec
|
|
|
|
|
and thus re-read the makefiles, we read standard input
|
|
|
|
|
into a temporary file and read from that. */
|
|
|
|
|
FILE *outfile;
|
2000-04-22 02:11:17 +00:00
|
|
|
|
char *template, *tmpdir;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2000-03-27 06:54:37 +00:00
|
|
|
|
if (stdin_nm)
|
|
|
|
|
fatal (NILF, _("Makefile from standard input specified twice."));
|
1996-03-20 14:57:41 +00:00
|
|
|
|
|
|
|
|
|
#ifdef VMS
|
2000-04-22 02:11:17 +00:00
|
|
|
|
# define DEFAULT_TMPDIR "sys$scratch:"
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#else
|
2000-04-22 02:11:17 +00:00
|
|
|
|
# ifdef P_tmpdir
|
|
|
|
|
# define DEFAULT_TMPDIR P_tmpdir
|
|
|
|
|
# else
|
|
|
|
|
# define DEFAULT_TMPDIR "/tmp"
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
#define DEFAULT_TMPFILE "GmXXXXXX"
|
|
|
|
|
|
|
|
|
|
if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
|
2000-04-22 02:11:17 +00:00
|
|
|
|
/* These are also used commonly on these platforms. */
|
|
|
|
|
&& ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
|
|
|
|
|
&& ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
|
1996-03-20 14:57:41 +00:00
|
|
|
|
#endif
|
2000-04-22 02:11:17 +00:00
|
|
|
|
)
|
|
|
|
|
tmpdir = DEFAULT_TMPDIR;
|
|
|
|
|
|
2006-04-09 22:09:24 +00:00
|
|
|
|
template = alloca (strlen (tmpdir) + sizeof (DEFAULT_TMPFILE) + 1);
|
2000-04-22 02:11:17 +00:00
|
|
|
|
strcpy (template, tmpdir);
|
|
|
|
|
|
2002-08-10 01:27:16 +00:00
|
|
|
|
#ifdef HAVE_DOS_PATHS
|
2000-04-22 02:11:17 +00:00
|
|
|
|
if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
|
|
|
|
|
strcat (template, "/");
|
|
|
|
|
#else
|
2002-08-10 01:27:16 +00:00
|
|
|
|
# ifndef VMS
|
2000-04-22 02:11:17 +00:00
|
|
|
|
if (template[strlen (template) - 1] != '/')
|
|
|
|
|
strcat (template, "/");
|
2002-08-10 01:27:16 +00:00
|
|
|
|
# endif /* !VMS */
|
|
|
|
|
#endif /* !HAVE_DOS_PATHS */
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
2000-04-22 02:11:17 +00:00
|
|
|
|
strcat (template, DEFAULT_TMPFILE);
|
|
|
|
|
outfile = open_tmpfile (&stdin_nm, template);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (outfile == 0)
|
1999-07-28 06:23:37 +00:00
|
|
|
|
pfatal_with_name (_("fopen (temporary file)"));
|
2005-02-28 07:48:22 +00:00
|
|
|
|
while (!feof (stdin) && ! ferror (stdin))
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
|
|
|
|
char buf[2048];
|
1999-08-19 04:43:46 +00:00
|
|
|
|
unsigned int n = fread (buf, 1, sizeof (buf), stdin);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (n > 0 && fwrite (buf, 1, n, outfile) != n)
|
1999-07-28 06:23:37 +00:00
|
|
|
|
pfatal_with_name (_("fwrite (temporary file)"));
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
2006-04-09 22:09:24 +00:00
|
|
|
|
fclose (outfile);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Replace the name that read_all_makefiles will
|
|
|
|
|
see with the name of the temporary file. */
|
2007-03-20 03:02:26 +00:00
|
|
|
|
makefiles->list[i] = strcache_add (stdin_nm);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Make sure the temporary file will not be remade. */
|
2006-04-09 22:09:24 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
struct file *f = enter_file (strcache_add (stdin_nm));
|
2006-04-09 22:09:24 +00:00
|
|
|
|
f->updated = 1;
|
|
|
|
|
f->update_status = 0;
|
|
|
|
|
f->command_state = cs_finished;
|
|
|
|
|
/* Can't be intermediate, or it'll be removed too early for
|
|
|
|
|
make re-exec. */
|
|
|
|
|
f->intermediate = 0;
|
|
|
|
|
f->dontcare = 0;
|
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
|
1999-04-25 04:30:55 +00:00
|
|
|
|
#if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
|
1999-08-01 06:05:17 +00:00
|
|
|
|
/* Set up to handle children dying. This must be done before
|
|
|
|
|
reading in the makefiles so that `shell' function calls will work.
|
|
|
|
|
|
|
|
|
|
If we don't have a hanging wait we have to fall back to old, broken
|
1999-04-25 04:30:55 +00:00
|
|
|
|
functionality here and rely on the signal handler and counting
|
|
|
|
|
children.
|
|
|
|
|
|
1999-07-23 22:46:47 +00:00
|
|
|
|
If we're using the jobs pipe we need a signal handler so that
|
1999-08-01 06:05:17 +00:00
|
|
|
|
SIGCHLD is not ignored; we need it to interrupt the read(2) of the
|
|
|
|
|
jobserver pipe in job.c if we're waiting for a token.
|
1999-07-23 22:46:47 +00:00
|
|
|
|
|
1999-08-01 06:05:17 +00:00
|
|
|
|
If none of these are true, we don't need a signal handler at all. */
|
1998-10-03 05:39:55 +00:00
|
|
|
|
{
|
2006-04-07 01:43:44 +00:00
|
|
|
|
RETSIGTYPE child_handler (int sig);
|
1998-10-03 05:39:55 +00:00
|
|
|
|
# if defined SIGCHLD
|
2001-06-01 03:56:50 +00:00
|
|
|
|
bsd_signal (SIGCHLD, child_handler);
|
1998-10-03 05:39:55 +00:00
|
|
|
|
# endif
|
|
|
|
|
# if defined SIGCLD && SIGCLD != SIGCHLD
|
2001-06-01 03:56:50 +00:00
|
|
|
|
bsd_signal (SIGCLD, child_handler);
|
1998-10-03 05:39:55 +00:00
|
|
|
|
# endif
|
|
|
|
|
}
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1995-01-26 06:29:18 +00:00
|
|
|
|
/* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
|
|
|
|
|
#ifdef SIGUSR1
|
2001-06-01 03:56:50 +00:00
|
|
|
|
bsd_signal (SIGUSR1, debug_signal_handler);
|
1995-01-26 06:29:18 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Define the initial list of suffixes for old-style rules. */
|
|
|
|
|
|
|
|
|
|
set_default_suffixes ();
|
|
|
|
|
|
1993-10-14 22:23:39 +00:00
|
|
|
|
/* Define the file rules for the built-in suffix rules. These will later
|
|
|
|
|
be converted into pattern rules. We used to do this in
|
|
|
|
|
install_default_implicit_rules, but since that happens after reading
|
|
|
|
|
makefiles, it results in the built-in pattern rules taking precedence
|
|
|
|
|
over makefile-specified suffix rules, which is wrong. */
|
|
|
|
|
|
|
|
|
|
install_default_suffix_rules ();
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Define some internal and special variables. */
|
|
|
|
|
|
|
|
|
|
define_automatic_variables ();
|
|
|
|
|
|
|
|
|
|
/* Set up the MAKEFLAGS and MFLAGS variables
|
|
|
|
|
so makefiles can look at them. */
|
|
|
|
|
|
|
|
|
|
define_makeflags (0, 0);
|
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
/* Define the default variables. */
|
|
|
|
|
define_default_variables ();
|
1996-05-22 21:51:45 +00:00
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
default_file = enter_file (strcache_add (".DEFAULT"));
|
1996-05-22 21:51:45 +00:00
|
|
|
|
|
2009-10-25 00:46:52 +00:00
|
|
|
|
default_goal_var = define_variable_cname (".DEFAULT_GOAL", "", o_file, 0);
|
|
|
|
|
|
|
|
|
|
/* Evaluate all strings provided with --eval.
|
|
|
|
|
Also set up the $(-*-eval-flags-*-) variable. */
|
|
|
|
|
|
|
|
|
|
if (eval_strings)
|
|
|
|
|
{
|
|
|
|
|
char *p, *value;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
unsigned int len = sizeof ("--eval=") * eval_strings->idx;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < eval_strings->idx; ++i)
|
|
|
|
|
{
|
|
|
|
|
p = xstrdup (eval_strings->list[i]);
|
|
|
|
|
len += 2 * strlen (p);
|
|
|
|
|
eval_buffer (p);
|
|
|
|
|
free (p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = value = alloca (len);
|
|
|
|
|
for (i = 0; i < eval_strings->idx; ++i)
|
|
|
|
|
{
|
|
|
|
|
strcpy (p, "--eval=");
|
|
|
|
|
p += strlen (p);
|
|
|
|
|
p = quote_for_env (p, eval_strings->list[i]);
|
|
|
|
|
*(p++) = ' ';
|
|
|
|
|
}
|
|
|
|
|
p[-1] = '\0';
|
|
|
|
|
|
|
|
|
|
define_variable_cname ("-*-eval-flags-*-", value, o_automatic, 0);
|
|
|
|
|
}
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
|
|
|
|
/* Read all the makefiles. */
|
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
read_makefiles
|
2006-04-09 22:09:24 +00:00
|
|
|
|
= read_all_makefiles (makefiles == 0 ? 0 : makefiles->list);
|
1996-05-22 21:51:45 +00:00
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
#ifdef WINDOWS32
|
|
|
|
|
/* look one last time after reading all Makefiles */
|
|
|
|
|
if (no_default_sh_exe)
|
|
|
|
|
no_default_sh_exe = !find_and_set_default_shell(NULL);
|
1997-04-07 07:21:16 +00:00
|
|
|
|
#endif /* WINDOWS32 */
|
1996-05-22 21:51:45 +00:00
|
|
|
|
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#if defined (__MSDOS__) || defined (__EMX__)
|
1997-04-07 07:21:16 +00:00
|
|
|
|
/* We need to know what kind of shell we will be using. */
|
|
|
|
|
{
|
|
|
|
|
extern int _is_unixy_shell (const char *_path);
|
2005-06-25 18:57:28 +00:00
|
|
|
|
struct variable *shv = lookup_variable (STRING_SIZE_TUPLE ("SHELL"));
|
1997-04-07 07:21:16 +00:00
|
|
|
|
extern int unixy_shell;
|
|
|
|
|
extern char *default_shell;
|
|
|
|
|
|
|
|
|
|
if (shv && *shv->value)
|
|
|
|
|
{
|
|
|
|
|
char *shell_path = recursively_expand(shv);
|
|
|
|
|
|
|
|
|
|
if (shell_path && _is_unixy_shell (shell_path))
|
|
|
|
|
unixy_shell = 1;
|
|
|
|
|
else
|
|
|
|
|
unixy_shell = 0;
|
|
|
|
|
if (shell_path)
|
|
|
|
|
default_shell = shell_path;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#endif /* __MSDOS__ || __EMX__ */
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
/* Decode switches again, in case the variables were set by the makefile. */
|
2005-06-25 18:57:28 +00:00
|
|
|
|
decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
|
1993-08-11 06:59:04 +00:00
|
|
|
|
#if 0
|
2005-06-25 18:57:28 +00:00
|
|
|
|
decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
|
1993-08-11 06:59:04 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#if defined (__MSDOS__) || defined (__EMX__)
|
|
|
|
|
if (job_slots != 1
|
|
|
|
|
# ifdef __EMX__
|
|
|
|
|
&& _osmode != OS2_MODE /* turn off -j if we are in DOS mode */
|
|
|
|
|
# endif
|
|
|
|
|
)
|
1999-08-25 21:39:28 +00:00
|
|
|
|
{
|
1999-09-06 05:21:52 +00:00
|
|
|
|
error (NILF,
|
|
|
|
|
_("Parallel jobs (-j) are not supported on this platform."));
|
|
|
|
|
error (NILF, _("Resetting to single job (-j1) mode."));
|
1999-08-25 21:39:28 +00:00
|
|
|
|
job_slots = 1;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-04-25 04:30:55 +00:00
|
|
|
|
#ifdef MAKE_JOBSERVER
|
1999-08-23 05:35:14 +00:00
|
|
|
|
/* If the jobserver-fds option is seen, make sure that -j is reasonable. */
|
|
|
|
|
|
|
|
|
|
if (jobserver_fds)
|
2009-06-09 15:35:38 +00:00
|
|
|
|
{
|
|
|
|
|
const char *cp;
|
|
|
|
|
unsigned int ui;
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
for (ui=1; ui < jobserver_fds->idx; ++ui)
|
|
|
|
|
if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui]))
|
|
|
|
|
fatal (NILF, _("internal error: multiple --jobserver-fds options"));
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
/* Now parse the fds string and make sure it has the proper format. */
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
cp = jobserver_fds->list[0];
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
|
|
|
|
|
fatal (NILF,
|
|
|
|
|
_("internal error: invalid --jobserver-fds string `%s'"), cp);
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
DB (DB_JOBS,
|
|
|
|
|
(_("Jobserver client (fds %d,%d)\n"), job_fds[0], job_fds[1]));
|
2006-11-18 20:53:44 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
/* The combination of a pipe + !job_slots means we're using the
|
|
|
|
|
jobserver. If !job_slots and we don't have a pipe, we can start
|
|
|
|
|
infinite jobs. If we see both a pipe and job_slots >0 that means the
|
|
|
|
|
user set -j explicitly. This is broken; in this case obey the user
|
|
|
|
|
(ignore the jobserver pipe for this make) but print a message. */
|
1999-09-01 08:04:30 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
if (job_slots > 0)
|
|
|
|
|
error (NILF,
|
|
|
|
|
_("warning: -jN forced in submake: disabling jobserver mode."));
|
1999-09-01 08:04:30 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
/* Create a duplicate pipe, that will be closed in the SIGCHLD
|
|
|
|
|
handler. If this fails with EBADF, the parent has closed the pipe
|
|
|
|
|
on us because it didn't think we were a submake. If so, print a
|
|
|
|
|
warning then default to -j1. */
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
else if ((job_rfd = dup (job_fds[0])) < 0)
|
|
|
|
|
{
|
|
|
|
|
if (errno != EBADF)
|
|
|
|
|
pfatal_with_name (_("dup jobserver"));
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
error (NILF,
|
|
|
|
|
_("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
|
|
|
|
|
job_slots = 1;
|
|
|
|
|
}
|
1999-09-01 08:04:30 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
if (job_slots > 0)
|
|
|
|
|
{
|
|
|
|
|
close (job_fds[0]);
|
|
|
|
|
close (job_fds[1]);
|
|
|
|
|
job_fds[0] = job_fds[1] = -1;
|
|
|
|
|
free (jobserver_fds->list);
|
|
|
|
|
free (jobserver_fds);
|
|
|
|
|
jobserver_fds = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
1999-08-23 05:35:14 +00:00
|
|
|
|
/* If we have >1 slot but no jobserver-fds, then we're a top-level make.
|
|
|
|
|
Set up the pipe and install the fds option for our children. */
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
1999-09-01 08:04:30 +00:00
|
|
|
|
if (job_slots > 1)
|
1999-04-25 04:30:55 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
char *cp;
|
1999-08-23 05:35:14 +00:00
|
|
|
|
char c = '+';
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
1999-08-13 07:36:26 +00:00
|
|
|
|
if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
|
1999-07-28 06:23:37 +00:00
|
|
|
|
pfatal_with_name (_("creating jobs pipe"));
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
1999-07-23 22:46:47 +00:00
|
|
|
|
/* Every make assumes that it always has one job it can run. For the
|
|
|
|
|
submakes it's the token they were given by their parent. For the
|
1999-08-23 22:15:17 +00:00
|
|
|
|
top make, we just subtract one from the number the user wants. We
|
|
|
|
|
want job_slots to be 0 to indicate we're using the jobserver. */
|
1999-07-23 22:46:47 +00:00
|
|
|
|
|
2005-05-03 13:57:20 +00:00
|
|
|
|
master_job_slots = job_slots;
|
|
|
|
|
|
1999-07-23 22:46:47 +00:00
|
|
|
|
while (--job_slots)
|
2003-03-24 23:14:15 +00:00
|
|
|
|
{
|
|
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
EINTRLOOP (r, write (job_fds[1], &c, 1));
|
|
|
|
|
if (r != 1)
|
|
|
|
|
pfatal_with_name (_("init jobserver pipe"));
|
|
|
|
|
}
|
1999-08-23 05:35:14 +00:00
|
|
|
|
|
|
|
|
|
/* Fill in the jobserver_fds struct for our children. */
|
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
cp = xmalloc ((sizeof ("1024")*2)+1);
|
|
|
|
|
sprintf (cp, "%d,%d", job_fds[0], job_fds[1]);
|
|
|
|
|
|
1999-08-23 05:35:14 +00:00
|
|
|
|
jobserver_fds = (struct stringlist *)
|
|
|
|
|
xmalloc (sizeof (struct stringlist));
|
2006-04-09 22:09:24 +00:00
|
|
|
|
jobserver_fds->list = xmalloc (sizeof (char *));
|
2007-03-20 03:02:26 +00:00
|
|
|
|
jobserver_fds->list[0] = cp;
|
1999-08-23 05:35:14 +00:00
|
|
|
|
jobserver_fds->idx = 1;
|
|
|
|
|
jobserver_fds->max = 1;
|
1999-04-25 04:30:55 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-02-28 07:48:22 +00:00
|
|
|
|
#ifndef MAKE_SYMLINKS
|
|
|
|
|
if (check_symlink_flag)
|
|
|
|
|
{
|
|
|
|
|
error (NILF, _("Symbolic links not supported: disabling -L."));
|
|
|
|
|
check_symlink_flag = 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
|
|
|
|
|
|
|
|
|
|
define_makeflags (1, 0);
|
|
|
|
|
|
1994-10-24 22:57:07 +00:00
|
|
|
|
/* Make each `struct dep' point at the `struct file' for the file
|
|
|
|
|
depended on. Also do magic for special targets. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
snap_deps ();
|
|
|
|
|
|
1993-10-14 22:23:39 +00:00
|
|
|
|
/* Convert old-style suffix rules to pattern rules. It is important to
|
|
|
|
|
do this before installing the built-in pattern rules below, so that
|
|
|
|
|
makefile-specified suffix rules take precedence over built-in pattern
|
|
|
|
|
rules. */
|
|
|
|
|
|
|
|
|
|
convert_to_pattern ();
|
|
|
|
|
|
|
|
|
|
/* Install the default implicit pattern rules.
|
1992-01-29 23:54:36 +00:00
|
|
|
|
This used to be done before reading the makefiles.
|
|
|
|
|
But in that case, built-in pattern rules were in the chain
|
|
|
|
|
before user-defined ones, so they matched first. */
|
|
|
|
|
|
|
|
|
|
install_default_implicit_rules ();
|
|
|
|
|
|
|
|
|
|
/* Compute implicit rule limits. */
|
|
|
|
|
|
|
|
|
|
count_implicit_rule_limits ();
|
|
|
|
|
|
|
|
|
|
/* Construct the listings of directories in VPATH lists. */
|
|
|
|
|
|
|
|
|
|
build_vpath_lists ();
|
|
|
|
|
|
2005-06-25 20:00:24 +00:00
|
|
|
|
/* Mark files given with -o flags as very old and as having been updated
|
|
|
|
|
already, and files given with -W flags as brand new (time-stamp as far
|
|
|
|
|
as possible into the future). If restarts is set we'll do -W later. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
if (old_files != 0)
|
2006-04-09 22:09:24 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char **p;
|
2006-04-09 22:09:24 +00:00
|
|
|
|
for (p = old_files->list; *p != 0; ++p)
|
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
struct file *f = enter_file (*p);
|
2006-04-09 22:09:24 +00:00
|
|
|
|
f->last_mtime = f->mtime_before_update = OLD_MTIME;
|
|
|
|
|
f->updated = 1;
|
|
|
|
|
f->update_status = 0;
|
|
|
|
|
f->command_state = cs_finished;
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2005-06-25 20:00:24 +00:00
|
|
|
|
if (!restarts && new_files != 0)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char **p;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
for (p = new_files->list; *p != 0; ++p)
|
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
struct file *f = enter_file (*p);
|
1999-07-15 07:36:44 +00:00
|
|
|
|
f->last_mtime = f->mtime_before_update = NEW_MTIME;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-22 19:31:12 +00:00
|
|
|
|
/* Initialize the remote job module. */
|
|
|
|
|
remote_setup ();
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (read_makefiles != 0)
|
|
|
|
|
{
|
|
|
|
|
/* Update any makefiles if necessary. */
|
|
|
|
|
|
1998-10-03 05:39:55 +00:00
|
|
|
|
FILE_TIMESTAMP *makefile_mtimes = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
unsigned int mm_idx = 0;
|
2009-06-09 15:35:38 +00:00
|
|
|
|
char **nargv;
|
|
|
|
|
int nargc;
|
1999-11-22 06:15:35 +00:00
|
|
|
|
int orig_db_level = db_level;
|
2004-05-16 19:16:52 +00:00
|
|
|
|
int status;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1999-11-22 06:15:35 +00:00
|
|
|
|
if (! ISDB (DB_MAKEFILES))
|
|
|
|
|
db_level = DB_NONE;
|
|
|
|
|
|
|
|
|
|
DB (DB_BASIC, (_("Updating makefiles....\n")));
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Remove any makefiles we don't want to try to update.
|
|
|
|
|
Also record the current modtimes so we can compare them later. */
|
|
|
|
|
{
|
|
|
|
|
register struct dep *d, *last;
|
|
|
|
|
last = 0;
|
|
|
|
|
d = read_makefiles;
|
|
|
|
|
while (d != 0)
|
|
|
|
|
{
|
2006-04-09 22:09:24 +00:00
|
|
|
|
struct file *f = d->file;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (f->double_colon)
|
1994-04-05 10:20:03 +00:00
|
|
|
|
for (f = f->double_colon; f != NULL; f = f->prev)
|
1992-11-16 23:59:17 +00:00
|
|
|
|
{
|
|
|
|
|
if (f->deps == 0 && f->cmds != 0)
|
|
|
|
|
{
|
|
|
|
|
/* This makefile is a :: target with commands, but
|
|
|
|
|
no dependencies. So, it will always be remade.
|
|
|
|
|
This might well cause an infinite loop, so don't
|
|
|
|
|
try to remake it. (This will only happen if
|
|
|
|
|
your makefiles are written exceptionally
|
|
|
|
|
stupidly; but if you work for Athena, that's how
|
|
|
|
|
you write your makefiles.) */
|
|
|
|
|
|
1999-11-27 08:09:42 +00:00
|
|
|
|
DB (DB_VERBOSE,
|
1999-11-22 06:15:35 +00:00
|
|
|
|
(_("Makefile `%s' might loop; not remaking it.\n"),
|
|
|
|
|
f->name));
|
1992-11-16 23:59:17 +00:00
|
|
|
|
|
|
|
|
|
if (last == 0)
|
|
|
|
|
read_makefiles = d->next;
|
|
|
|
|
else
|
|
|
|
|
last->next = d->next;
|
|
|
|
|
|
|
|
|
|
/* Free the storage. */
|
2006-03-17 14:24:20 +00:00
|
|
|
|
free_dep (d);
|
1992-11-16 23:59:17 +00:00
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
d = last == 0 ? read_makefiles : last->next;
|
1992-11-16 23:59:17 +00:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (f == NULL || !f->double_colon)
|
|
|
|
|
{
|
2006-04-09 22:09:24 +00:00
|
|
|
|
makefile_mtimes = xrealloc (makefile_mtimes,
|
|
|
|
|
(mm_idx+1)
|
|
|
|
|
* sizeof (FILE_TIMESTAMP));
|
1992-01-29 23:54:36 +00:00
|
|
|
|
makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
|
|
|
|
|
last = d;
|
|
|
|
|
d = d->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
1995-11-26 01:37:07 +00:00
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Set up `MAKEFLAGS' specially while remaking makefiles. */
|
|
|
|
|
define_makeflags (1, 1);
|
|
|
|
|
|
2004-05-16 19:16:52 +00:00
|
|
|
|
rebuilding_makefiles = 1;
|
|
|
|
|
status = update_goal_chain (read_makefiles);
|
|
|
|
|
rebuilding_makefiles = 0;
|
|
|
|
|
|
|
|
|
|
switch (status)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1995-03-24 23:27:05 +00:00
|
|
|
|
case 1:
|
2002-04-20 19:25:54 +00:00
|
|
|
|
/* The only way this can happen is if the user specified -q and asked
|
|
|
|
|
* for one of the makefiles to be remade as a target on the command
|
|
|
|
|
* line. Since we're not actually updating anything with -q we can
|
|
|
|
|
* treat this as "did nothing".
|
|
|
|
|
*/
|
1995-11-26 01:37:07 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
case -1:
|
|
|
|
|
/* Did nothing. */
|
|
|
|
|
break;
|
1995-11-26 01:37:07 +00:00
|
|
|
|
|
1995-03-24 23:27:05 +00:00
|
|
|
|
case 2:
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Failed to update. Figure out if we care. */
|
|
|
|
|
{
|
|
|
|
|
/* Nonzero if any makefile was successfully remade. */
|
|
|
|
|
int any_remade = 0;
|
|
|
|
|
/* Nonzero if any makefile we care about failed
|
|
|
|
|
in updating or could not be found at all. */
|
|
|
|
|
int any_failed = 0;
|
2004-02-24 13:50:19 +00:00
|
|
|
|
unsigned int i;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
struct dep *d;
|
|
|
|
|
|
|
|
|
|
for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
|
1999-07-22 04:20:14 +00:00
|
|
|
|
{
|
|
|
|
|
/* Reset the considered flag; we may need to look at the file
|
|
|
|
|
again to print an error. */
|
|
|
|
|
d->file->considered = 0;
|
|
|
|
|
|
|
|
|
|
if (d->file->updated)
|
1997-04-07 07:21:16 +00:00
|
|
|
|
{
|
1999-07-22 04:20:14 +00:00
|
|
|
|
/* This makefile was updated. */
|
|
|
|
|
if (d->file->update_status == 0)
|
1997-04-07 07:21:16 +00:00
|
|
|
|
{
|
1999-07-22 04:20:14 +00:00
|
|
|
|
/* It was successfully updated. */
|
|
|
|
|
any_remade |= (file_mtime_no_search (d->file)
|
|
|
|
|
!= makefile_mtimes[i]);
|
|
|
|
|
}
|
|
|
|
|
else if (! (d->changed & RM_DONTCARE))
|
|
|
|
|
{
|
|
|
|
|
FILE_TIMESTAMP mtime;
|
|
|
|
|
/* The update failed and this makefile was not
|
|
|
|
|
from the MAKEFILES variable, so we care. */
|
1999-07-28 06:23:37 +00:00
|
|
|
|
error (NILF, _("Failed to remake makefile `%s'."),
|
1999-07-22 04:20:14 +00:00
|
|
|
|
d->file->name);
|
|
|
|
|
mtime = file_mtime_no_search (d->file);
|
2000-06-13 05:22:52 +00:00
|
|
|
|
any_remade |= (mtime != NONEXISTENT_MTIME
|
1999-07-22 04:20:14 +00:00
|
|
|
|
&& mtime != makefile_mtimes[i]);
|
2004-05-16 19:16:52 +00:00
|
|
|
|
makefile_status = MAKE_FAILURE;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1999-07-22 04:20:14 +00:00
|
|
|
|
else
|
|
|
|
|
/* This makefile was not found at all. */
|
|
|
|
|
if (! (d->changed & RM_DONTCARE))
|
|
|
|
|
{
|
|
|
|
|
/* This is a makefile we care about. See how much. */
|
|
|
|
|
if (d->changed & RM_INCLUDED)
|
|
|
|
|
/* An included makefile. We don't need
|
|
|
|
|
to die, but we do want to complain. */
|
1999-08-01 06:05:17 +00:00
|
|
|
|
error (NILF,
|
|
|
|
|
_("Included makefile `%s' was not found."),
|
1999-07-22 04:20:14 +00:00
|
|
|
|
dep_name (d));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* A normal makefile. We must die later. */
|
1999-07-28 06:23:37 +00:00
|
|
|
|
error (NILF, _("Makefile `%s' was not found"),
|
1999-07-22 04:20:14 +00:00
|
|
|
|
dep_name (d));
|
|
|
|
|
any_failed = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-06-14 05:26:28 +00:00
|
|
|
|
/* Reset this to empty so we get the right error message below. */
|
|
|
|
|
read_makefiles = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
if (any_remade)
|
|
|
|
|
goto re_exec;
|
1999-07-08 22:32:38 +00:00
|
|
|
|
if (any_failed)
|
1994-04-21 02:08:28 +00:00
|
|
|
|
die (2);
|
1999-07-08 22:32:38 +00:00
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case 0:
|
1993-06-04 00:27:28 +00:00
|
|
|
|
re_exec:
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Updated successfully. Re-exec ourselves. */
|
1993-06-04 00:27:28 +00:00
|
|
|
|
|
|
|
|
|
remove_intermediates (0);
|
|
|
|
|
|
|
|
|
|
if (print_data_base_flag)
|
|
|
|
|
print_data_base ();
|
|
|
|
|
|
1995-11-26 01:37:07 +00:00
|
|
|
|
log_working_directory (0);
|
1993-06-04 00:27:28 +00:00
|
|
|
|
|
2006-03-20 02:36:36 +00:00
|
|
|
|
clean_jobserver (0);
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (makefiles != 0)
|
|
|
|
|
{
|
|
|
|
|
/* These names might have changed. */
|
2004-02-24 13:50:19 +00:00
|
|
|
|
int i, j = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
for (i = 1; i < argc; ++i)
|
1999-07-21 05:53:23 +00:00
|
|
|
|
if (strneq (argv[i], "-f", 2)) /* XXX */
|
1993-01-25 22:16:33 +00:00
|
|
|
|
{
|
2009-06-09 15:35:38 +00:00
|
|
|
|
if (argv[i][2] == '\0')
|
2007-03-20 03:02:26 +00:00
|
|
|
|
/* This cast is OK since we never modify argv. */
|
|
|
|
|
argv[++i] = (char *) makefiles->list[j];
|
1993-01-25 22:16:33 +00:00
|
|
|
|
else
|
2009-09-16 17:07:01 +00:00
|
|
|
|
argv[i] = xstrdup (concat (2, "-f", makefiles->list[j]));
|
1993-01-25 22:16:33 +00:00
|
|
|
|
++j;
|
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
1993-06-04 00:27:28 +00:00
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
/* Add -o option for the stdin temporary file, if necessary. */
|
2009-06-09 15:35:38 +00:00
|
|
|
|
nargc = argc;
|
1998-07-30 20:54:47 +00:00
|
|
|
|
if (stdin_nm)
|
|
|
|
|
{
|
2006-04-09 22:09:24 +00:00
|
|
|
|
nargv = xmalloc ((nargc + 2) * sizeof (char *));
|
|
|
|
|
memcpy (nargv, argv, argc * sizeof (char *));
|
2009-09-16 17:07:01 +00:00
|
|
|
|
nargv[nargc++] = xstrdup (concat (2, "-o", stdin_nm));
|
1998-07-30 20:54:47 +00:00
|
|
|
|
nargv[nargc] = 0;
|
|
|
|
|
}
|
2009-06-09 15:35:38 +00:00
|
|
|
|
else
|
|
|
|
|
nargv = argv;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (directories != 0 && directories->idx > 0)
|
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
int bad = 1;
|
1993-03-08 18:49:51 +00:00
|
|
|
|
if (directory_before_chdir != 0)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1993-03-08 18:49:51 +00:00
|
|
|
|
if (chdir (directory_before_chdir) < 0)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
perror_with_name ("chdir", "");
|
|
|
|
|
else
|
|
|
|
|
bad = 0;
|
|
|
|
|
}
|
|
|
|
|
if (bad)
|
1999-07-28 06:23:37 +00:00
|
|
|
|
fatal (NILF, _("Couldn't change back to original directory."));
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
1993-06-04 00:27:28 +00:00
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
++restarts;
|
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
/* Reset makeflags in case they were changed. */
|
|
|
|
|
{
|
|
|
|
|
const char *pv = define_makeflags (1, 1);
|
|
|
|
|
char *p = alloca (sizeof ("MAKEFLAGS=") + strlen (pv) + 1);
|
|
|
|
|
sprintf (p, "MAKEFLAGS=%s", pv);
|
|
|
|
|
putenv (p);
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
if (ISDB (DB_BASIC))
|
|
|
|
|
{
|
|
|
|
|
char **p;
|
|
|
|
|
printf (_("Re-executing[%u]:"), restarts);
|
|
|
|
|
for (p = nargv; *p != 0; ++p)
|
|
|
|
|
printf (" %s", *p);
|
|
|
|
|
putchar ('\n');
|
|
|
|
|
}
|
|
|
|
|
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#ifndef _AMIGA
|
2006-04-09 22:09:24 +00:00
|
|
|
|
{
|
|
|
|
|
char **p;
|
|
|
|
|
for (p = environ; *p != 0; ++p)
|
|
|
|
|
{
|
|
|
|
|
if (strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH)
|
|
|
|
|
&& (*p)[MAKELEVEL_LENGTH] == '=')
|
|
|
|
|
{
|
|
|
|
|
*p = alloca (40);
|
|
|
|
|
sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
|
|
|
|
|
}
|
|
|
|
|
if (strneq (*p, "MAKE_RESTARTS=", 14))
|
|
|
|
|
{
|
|
|
|
|
*p = alloca (40);
|
|
|
|
|
sprintf (*p, "MAKE_RESTARTS=%u", restarts);
|
|
|
|
|
restarts = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#else /* AMIGA */
|
|
|
|
|
{
|
|
|
|
|
char buffer[256];
|
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
sprintf (buffer, "%u", makelevel);
|
|
|
|
|
SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
|
1996-05-13 18:40:11 +00:00
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
sprintf (buffer, "%u", restarts);
|
|
|
|
|
SetVar ("MAKE_RESTARTS", buffer, -1, GVF_GLOBAL_ONLY);
|
|
|
|
|
restarts = 0;
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
1993-06-04 00:27:28 +00:00
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
/* If we didn't set the restarts variable yet, add it. */
|
|
|
|
|
if (restarts)
|
|
|
|
|
{
|
|
|
|
|
char *b = alloca (40);
|
|
|
|
|
sprintf (b, "MAKE_RESTARTS=%u", restarts);
|
|
|
|
|
putenv (b);
|
|
|
|
|
}
|
1993-06-04 00:27:28 +00:00
|
|
|
|
|
|
|
|
|
fflush (stdout);
|
|
|
|
|
fflush (stderr);
|
|
|
|
|
|
1999-09-23 18:23:33 +00:00
|
|
|
|
/* Close the dup'd jobserver pipe if we opened one. */
|
1999-09-01 08:04:30 +00:00
|
|
|
|
if (job_rfd >= 0)
|
|
|
|
|
close (job_rfd);
|
|
|
|
|
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#ifdef _AMIGA
|
1997-04-07 07:21:16 +00:00
|
|
|
|
exec_command (nargv);
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
exit (0);
|
2003-03-24 23:14:15 +00:00
|
|
|
|
#elif defined (__EMX__)
|
|
|
|
|
{
|
|
|
|
|
/* It is not possible to use execve() here because this
|
|
|
|
|
would cause the parent process to be terminated with
|
|
|
|
|
exit code 0 before the child process has been terminated.
|
|
|
|
|
Therefore it may be the best solution simply to spawn the
|
|
|
|
|
child process including all file handles and to wait for its
|
|
|
|
|
termination. */
|
|
|
|
|
int pid;
|
|
|
|
|
int status;
|
2004-03-22 15:11:48 +00:00
|
|
|
|
pid = child_execute_job (0, 1, nargv, environ);
|
2003-03-24 23:14:15 +00:00
|
|
|
|
|
|
|
|
|
/* is this loop really necessary? */
|
|
|
|
|
do {
|
2004-03-22 15:11:48 +00:00
|
|
|
|
pid = wait (&status);
|
|
|
|
|
} while (pid <= 0);
|
2003-03-24 23:14:15 +00:00
|
|
|
|
/* use the exit code of the child process */
|
2004-03-22 15:11:48 +00:00
|
|
|
|
exit (WIFEXITED(status) ? WEXITSTATUS(status) : EXIT_FAILURE);
|
2003-03-24 23:14:15 +00:00
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
exec_command (nargv, environ);
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* NOTREACHED */
|
2002-04-20 19:25:54 +00:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
#define BOGUS_UPDATE_STATUS 0
|
|
|
|
|
assert (BOGUS_UPDATE_STATUS);
|
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
1999-11-22 06:15:35 +00:00
|
|
|
|
|
|
|
|
|
db_level = orig_db_level;
|
2004-03-22 15:11:48 +00:00
|
|
|
|
|
|
|
|
|
/* Free the makefile mtimes (if we allocated any). */
|
|
|
|
|
if (makefile_mtimes)
|
2006-04-09 22:09:24 +00:00
|
|
|
|
free (makefile_mtimes);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set up `MAKEFLAGS' again for the normal targets. */
|
|
|
|
|
define_makeflags (1, 0);
|
|
|
|
|
|
2005-06-25 18:57:28 +00:00
|
|
|
|
/* Set always_make_flag if -B was given. */
|
|
|
|
|
always_make_flag = always_make_set;
|
|
|
|
|
|
2005-06-25 20:00:24 +00:00
|
|
|
|
/* If restarts is set we haven't set up -W files yet, so do that now. */
|
|
|
|
|
if (restarts && new_files != 0)
|
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char **p;
|
2005-06-25 20:00:24 +00:00
|
|
|
|
for (p = new_files->list; *p != 0; ++p)
|
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
struct file *f = enter_file (*p);
|
2005-06-25 20:00:24 +00:00
|
|
|
|
f->last_mtime = f->mtime_before_update = NEW_MTIME;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
/* If there is a temp file from reading a makefile from stdin, get rid of
|
|
|
|
|
it now. */
|
1999-08-19 04:43:46 +00:00
|
|
|
|
if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
|
|
|
|
|
perror_with_name (_("unlink (temporary file): "), stdin_nm);
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
/* If there were no command-line goals, use the default. */
|
|
|
|
|
if (goals == 0)
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
if (default_goal_var->recursive)
|
|
|
|
|
p = variable_expand (default_goal_var->value);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
p = variable_buffer_output (variable_buffer, default_goal_var->value,
|
|
|
|
|
strlen (default_goal_var->value));
|
|
|
|
|
*p = '\0';
|
|
|
|
|
p = variable_buffer;
|
|
|
|
|
}
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
if (*p != '\0')
|
|
|
|
|
{
|
|
|
|
|
struct file *f = lookup_file (p);
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
/* If .DEFAULT_GOAL is a non-existent target, enter it into the
|
|
|
|
|
table and let the standard logic sort it out. */
|
|
|
|
|
if (f == 0)
|
|
|
|
|
{
|
|
|
|
|
struct nameseq *ns;
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
2009-09-24 02:41:44 +00:00
|
|
|
|
ns = PARSE_FILE_SEQ (&p, struct nameseq, '\0', NULL, 0);
|
2009-06-04 06:30:27 +00:00
|
|
|
|
if (ns)
|
|
|
|
|
{
|
|
|
|
|
/* .DEFAULT_GOAL should contain one target. */
|
|
|
|
|
if (ns->next != 0)
|
|
|
|
|
fatal (NILF, _(".DEFAULT_GOAL contains more than one target"));
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
f = enter_file (strcache_add (ns->name));
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
ns->name = 0; /* It was reused by enter_file(). */
|
|
|
|
|
free_ns_chain (ns);
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
if (f)
|
|
|
|
|
{
|
|
|
|
|
goals = alloc_dep ();
|
|
|
|
|
goals->file = f;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
lastgoal->next = 0;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2005-02-27 22:24:30 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
if (!goals)
|
|
|
|
|
{
|
|
|
|
|
if (read_makefiles == 0)
|
|
|
|
|
fatal (NILF, _("No targets specified and no makefile found"));
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
fatal (NILF, _("No targets"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Update the goals. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
DB (DB_BASIC, (_("Updating goal targets....\n")));
|
1999-04-13 02:28:27 +00:00
|
|
|
|
|
2009-06-04 06:30:27 +00:00
|
|
|
|
{
|
|
|
|
|
int status;
|
1999-04-13 02:28:27 +00:00
|
|
|
|
|
2004-05-16 19:16:52 +00:00
|
|
|
|
switch (update_goal_chain (goals))
|
1999-04-13 02:28:27 +00:00
|
|
|
|
{
|
|
|
|
|
case -1:
|
|
|
|
|
/* Nothing happened. */
|
|
|
|
|
case 0:
|
|
|
|
|
/* Updated successfully. */
|
2004-05-16 19:16:52 +00:00
|
|
|
|
status = makefile_status;
|
2000-06-23 19:43:11 +00:00
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
/* We are under -q and would run some commands. */
|
|
|
|
|
status = MAKE_TROUBLE;
|
1999-04-13 02:28:27 +00:00
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
/* Updating failed. POSIX.2 specifies exit status >1 for this;
|
|
|
|
|
but in VMS, there is only success and failure. */
|
2000-06-23 19:43:11 +00:00
|
|
|
|
status = MAKE_FAILURE;
|
1999-04-13 02:28:27 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-18 18:11:04 +00:00
|
|
|
|
/* If we detected some clock skew, generate one last warning */
|
|
|
|
|
if (clock_skew_detected)
|
1999-11-17 07:33:47 +00:00
|
|
|
|
error (NILF,
|
|
|
|
|
_("warning: Clock skew detected. Your build may be incomplete."));
|
1997-08-18 18:11:04 +00:00
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Exit. */
|
|
|
|
|
die (status);
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-12 22:22:07 +00:00
|
|
|
|
/* NOTREACHED */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
/* Parsing of arguments, decoding of switches. */
|
|
|
|
|
|
1994-09-06 23:13:43 +00:00
|
|
|
|
static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
|
1993-01-07 00:34:28 +00:00
|
|
|
|
static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
|
|
|
|
|
(sizeof (long_option_aliases) /
|
|
|
|
|
sizeof (long_option_aliases[0]))];
|
|
|
|
|
|
|
|
|
|
/* Fill in the string and vector for getopt. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
init_switches (void)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
2004-02-24 13:50:19 +00:00
|
|
|
|
char *p;
|
|
|
|
|
unsigned int c;
|
|
|
|
|
unsigned int i;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
if (options[0] != '\0')
|
|
|
|
|
/* Already done. */
|
|
|
|
|
return;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
p = options;
|
1994-09-09 05:37:40 +00:00
|
|
|
|
|
|
|
|
|
/* Return switch and non-switch args in order, regardless of
|
1994-09-09 06:45:51 +00:00
|
|
|
|
POSIXLY_CORRECT. Non-switch args are returned as option 1. */
|
1994-09-09 05:37:40 +00:00
|
|
|
|
*p++ = '-';
|
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
for (i = 0; switches[i].c != '\0'; ++i)
|
|
|
|
|
{
|
1992-05-11 18:11:40 +00:00
|
|
|
|
long_options[i].name = (switches[i].long_name == 0 ? "" :
|
|
|
|
|
switches[i].long_name);
|
1992-05-25 23:02:13 +00:00
|
|
|
|
long_options[i].flag = 0;
|
1993-04-14 18:20:33 +00:00
|
|
|
|
long_options[i].val = switches[i].c;
|
1999-08-31 17:02:31 +00:00
|
|
|
|
if (short_option (switches[i].c))
|
1993-04-14 18:20:33 +00:00
|
|
|
|
*p++ = switches[i].c;
|
1992-05-09 04:28:28 +00:00
|
|
|
|
switch (switches[i].type)
|
|
|
|
|
{
|
|
|
|
|
case flag:
|
|
|
|
|
case flag_off:
|
|
|
|
|
case ignore:
|
|
|
|
|
long_options[i].has_arg = no_argument;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case string:
|
2007-03-20 03:02:26 +00:00
|
|
|
|
case filename:
|
1992-05-09 04:28:28 +00:00
|
|
|
|
case positive_int:
|
|
|
|
|
case floating:
|
1999-08-31 17:02:31 +00:00
|
|
|
|
if (short_option (switches[i].c))
|
1993-04-14 18:20:33 +00:00
|
|
|
|
*p++ = ':';
|
1992-05-09 04:28:28 +00:00
|
|
|
|
if (switches[i].noarg_value != 0)
|
|
|
|
|
{
|
1999-08-31 17:02:31 +00:00
|
|
|
|
if (short_option (switches[i].c))
|
1993-04-14 18:20:33 +00:00
|
|
|
|
*p++ = ':';
|
1992-05-09 04:28:28 +00:00
|
|
|
|
long_options[i].has_arg = optional_argument;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
long_options[i].has_arg = required_argument;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*p = '\0';
|
1992-05-11 05:28:52 +00:00
|
|
|
|
for (c = 0; c < (sizeof (long_option_aliases) /
|
|
|
|
|
sizeof (long_option_aliases[0]));
|
|
|
|
|
++c)
|
|
|
|
|
long_options[i++] = long_option_aliases[c];
|
1992-05-09 04:28:28 +00:00
|
|
|
|
long_options[i].name = 0;
|
1993-01-07 00:34:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-03-24 05:56:41 +00:00
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
handle_non_switch_argument (char *arg, int env)
|
1995-03-24 05:56:41 +00:00
|
|
|
|
{
|
|
|
|
|
/* Non-option argument. It might be a variable definition. */
|
|
|
|
|
struct variable *v;
|
|
|
|
|
if (arg[0] == '-' && arg[1] == '\0')
|
|
|
|
|
/* Ignore plain `-' for compatibility. */
|
|
|
|
|
return;
|
1999-11-17 07:33:47 +00:00
|
|
|
|
v = try_variable_definition (0, arg, o_command, 0);
|
1995-03-24 05:56:41 +00:00
|
|
|
|
if (v != 0)
|
|
|
|
|
{
|
2005-02-10 00:10:57 +00:00
|
|
|
|
/* It is indeed a variable definition. If we don't already have this
|
|
|
|
|
one, record a pointer to the variable for later use in
|
|
|
|
|
define_makeflags. */
|
|
|
|
|
struct command_variable *cv;
|
|
|
|
|
|
|
|
|
|
for (cv = command_variables; cv != 0; cv = cv->next)
|
|
|
|
|
if (cv->variable == v)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (! cv) {
|
2006-04-09 22:09:24 +00:00
|
|
|
|
cv = xmalloc (sizeof (*cv));
|
2005-02-10 00:10:57 +00:00
|
|
|
|
cv->variable = v;
|
|
|
|
|
cv->next = command_variables;
|
|
|
|
|
command_variables = cv;
|
|
|
|
|
}
|
1995-03-24 05:56:41 +00:00
|
|
|
|
}
|
|
|
|
|
else if (! env)
|
|
|
|
|
{
|
|
|
|
|
/* Not an option or variable definition; it must be a goal
|
|
|
|
|
target! Enter it as a file and add it to the dep chain of
|
|
|
|
|
goals. */
|
2007-03-20 03:02:26 +00:00
|
|
|
|
struct file *f = enter_file (strcache_add (expand_command_line_file (arg)));
|
1995-03-24 05:56:41 +00:00
|
|
|
|
f->cmd_target = 1;
|
1995-11-26 01:37:07 +00:00
|
|
|
|
|
1995-03-24 05:56:41 +00:00
|
|
|
|
if (goals == 0)
|
|
|
|
|
{
|
2006-03-17 14:24:20 +00:00
|
|
|
|
goals = alloc_dep ();
|
1995-03-24 05:56:41 +00:00
|
|
|
|
lastgoal = goals;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2006-03-17 14:24:20 +00:00
|
|
|
|
lastgoal->next = alloc_dep ();
|
1995-03-24 05:56:41 +00:00
|
|
|
|
lastgoal = lastgoal->next;
|
|
|
|
|
}
|
2006-03-17 14:24:20 +00:00
|
|
|
|
|
1995-03-24 05:56:41 +00:00
|
|
|
|
lastgoal->file = f;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
/* Add this target name to the MAKECMDGOALS variable. */
|
2006-04-09 22:09:24 +00:00
|
|
|
|
struct variable *gv;
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char *value;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
2006-04-09 22:09:24 +00:00
|
|
|
|
gv = lookup_variable (STRING_SIZE_TUPLE ("MAKECMDGOALS"));
|
|
|
|
|
if (gv == 0)
|
1997-04-07 07:21:16 +00:00
|
|
|
|
value = f->name;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Paste the old and new values together */
|
|
|
|
|
unsigned int oldlen, newlen;
|
2007-03-20 03:02:26 +00:00
|
|
|
|
char *vp;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
2006-04-09 22:09:24 +00:00
|
|
|
|
oldlen = strlen (gv->value);
|
1999-08-19 04:43:46 +00:00
|
|
|
|
newlen = strlen (f->name);
|
2007-03-20 03:02:26 +00:00
|
|
|
|
vp = alloca (oldlen + 1 + newlen + 1);
|
|
|
|
|
memcpy (vp, gv->value, oldlen);
|
|
|
|
|
vp[oldlen] = ' ';
|
|
|
|
|
memcpy (&vp[oldlen + 1], f->name, newlen + 1);
|
|
|
|
|
value = vp;
|
1997-04-07 07:21:16 +00:00
|
|
|
|
}
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname ("MAKECMDGOALS", value, o_default, 0);
|
1997-04-07 07:21:16 +00:00
|
|
|
|
}
|
1995-03-24 05:56:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-25 04:30:55 +00:00
|
|
|
|
/* Print a nice usage method. */
|
|
|
|
|
|
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
print_usage (int bad)
|
1999-04-25 04:30:55 +00:00
|
|
|
|
{
|
2002-08-08 05:39:17 +00:00
|
|
|
|
const char *const *cpp;
|
1999-04-25 04:30:55 +00:00
|
|
|
|
FILE *usageto;
|
|
|
|
|
|
|
|
|
|
if (print_version_flag)
|
|
|
|
|
print_version ();
|
|
|
|
|
|
|
|
|
|
usageto = bad ? stderr : stdout;
|
|
|
|
|
|
1999-08-01 06:05:17 +00:00
|
|
|
|
fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
2002-08-08 05:39:17 +00:00
|
|
|
|
for (cpp = usage; *cpp; ++cpp)
|
|
|
|
|
fputs (_(*cpp), usageto);
|
1999-10-15 07:00:58 +00:00
|
|
|
|
|
2002-07-08 13:05:02 +00:00
|
|
|
|
if (!remote_description || *remote_description == '\0')
|
2002-08-08 05:39:17 +00:00
|
|
|
|
fprintf (usageto, _("\nThis program built for %s\n"), make_host);
|
2002-07-08 13:05:02 +00:00
|
|
|
|
else
|
2002-08-08 05:39:17 +00:00
|
|
|
|
fprintf (usageto, _("\nThis program built for %s (%s)\n"),
|
|
|
|
|
make_host, remote_description);
|
2002-07-08 13:05:02 +00:00
|
|
|
|
|
2002-08-08 05:39:17 +00:00
|
|
|
|
fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
|
1999-04-25 04:30:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
/* Decode switches from ARGC and ARGV.
|
|
|
|
|
They came from the environment if ENV is nonzero. */
|
|
|
|
|
|
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
decode_switches (int argc, char **argv, int env)
|
1993-01-07 00:34:28 +00:00
|
|
|
|
{
|
|
|
|
|
int bad = 0;
|
1993-04-14 18:20:33 +00:00
|
|
|
|
register const struct command_switch *cs;
|
1993-01-07 00:34:28 +00:00
|
|
|
|
register struct stringlist *sl;
|
|
|
|
|
register int c;
|
|
|
|
|
|
|
|
|
|
/* getopt does most of the parsing for us.
|
|
|
|
|
First, get its vectors set up. */
|
|
|
|
|
|
|
|
|
|
init_switches ();
|
|
|
|
|
|
|
|
|
|
/* Let getopt produce error messages for the command line,
|
|
|
|
|
but not for options from the environment. */
|
|
|
|
|
opterr = !env;
|
|
|
|
|
/* Reset getopt's state. */
|
1995-03-24 05:56:41 +00:00
|
|
|
|
optind = 0;
|
1992-05-09 04:28:28 +00:00
|
|
|
|
|
1994-09-10 07:01:10 +00:00
|
|
|
|
while (optind < argc)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1995-03-07 22:31:01 +00:00
|
|
|
|
/* Parse the next argument. */
|
|
|
|
|
c = getopt_long (argc, argv, options, long_options, (int *) 0);
|
1994-09-10 07:01:10 +00:00
|
|
|
|
if (c == EOF)
|
1995-03-24 05:56:41 +00:00
|
|
|
|
/* End of arguments, or "--" marker seen. */
|
|
|
|
|
break;
|
|
|
|
|
else if (c == 1)
|
|
|
|
|
/* An argument not starting with a dash. */
|
|
|
|
|
handle_non_switch_argument (optarg, env);
|
1994-09-09 05:37:40 +00:00
|
|
|
|
else if (c == '?')
|
1992-05-09 04:28:28 +00:00
|
|
|
|
/* Bad option. We will print a usage message and die later.
|
|
|
|
|
But continue to parse the other options so the user can
|
|
|
|
|
see all he did wrong. */
|
|
|
|
|
bad = 1;
|
|
|
|
|
else
|
|
|
|
|
for (cs = switches; cs->c != '\0'; ++cs)
|
1992-05-11 18:11:40 +00:00
|
|
|
|
if (cs->c == c)
|
|
|
|
|
{
|
1993-01-07 00:34:28 +00:00
|
|
|
|
/* Whether or not we will actually do anything with
|
|
|
|
|
this switch. We test this individually inside the
|
|
|
|
|
switch below rather than just once outside it, so that
|
|
|
|
|
options which are to be ignored still consume args. */
|
|
|
|
|
int doit = !env || cs->env;
|
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
switch (cs->type)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1992-05-09 04:28:28 +00:00
|
|
|
|
default:
|
|
|
|
|
abort ();
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
case ignore:
|
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
case flag:
|
|
|
|
|
case flag_off:
|
1993-01-07 00:34:28 +00:00
|
|
|
|
if (doit)
|
|
|
|
|
*(int *) cs->value_ptr = cs->type == flag;
|
1992-05-09 04:28:28 +00:00
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
case string:
|
2007-03-20 03:02:26 +00:00
|
|
|
|
case filename:
|
1993-01-07 00:34:28 +00:00
|
|
|
|
if (!doit)
|
|
|
|
|
break;
|
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
if (optarg == 0)
|
2006-11-18 20:53:44 +00:00
|
|
|
|
optarg = xstrdup (cs->noarg_value);
|
2004-02-23 06:25:54 +00:00
|
|
|
|
else if (*optarg == '\0')
|
|
|
|
|
{
|
2009-10-25 00:46:52 +00:00
|
|
|
|
char opt[2] = "c";
|
|
|
|
|
const char *op = opt;
|
|
|
|
|
|
|
|
|
|
if (short_option (cs->c))
|
|
|
|
|
opt[0] = cs->c;
|
|
|
|
|
else
|
|
|
|
|
op = cs->long_name;
|
|
|
|
|
|
|
|
|
|
error (NILF, _("the `%s%s' option requires a non-empty string argument"),
|
|
|
|
|
short_option (cs->c) ? "-" : "--", op);
|
2004-02-23 06:25:54 +00:00
|
|
|
|
bad = 1;
|
|
|
|
|
}
|
1992-05-09 04:28:28 +00:00
|
|
|
|
|
|
|
|
|
sl = *(struct stringlist **) cs->value_ptr;
|
|
|
|
|
if (sl == 0)
|
|
|
|
|
{
|
|
|
|
|
sl = (struct stringlist *)
|
|
|
|
|
xmalloc (sizeof (struct stringlist));
|
|
|
|
|
sl->max = 5;
|
|
|
|
|
sl->idx = 0;
|
2006-04-09 22:09:24 +00:00
|
|
|
|
sl->list = xmalloc (5 * sizeof (char *));
|
1992-05-09 04:28:28 +00:00
|
|
|
|
*(struct stringlist **) cs->value_ptr = sl;
|
|
|
|
|
}
|
|
|
|
|
else if (sl->idx == sl->max - 1)
|
|
|
|
|
{
|
|
|
|
|
sl->max += 5;
|
2006-04-09 22:09:24 +00:00
|
|
|
|
sl->list = xrealloc (sl->list,
|
|
|
|
|
sl->max * sizeof (char *));
|
1992-05-09 04:28:28 +00:00
|
|
|
|
}
|
2007-03-20 03:02:26 +00:00
|
|
|
|
if (cs->type == filename)
|
|
|
|
|
sl->list[sl->idx++] = expand_command_line_file (optarg);
|
|
|
|
|
else
|
|
|
|
|
sl->list[sl->idx++] = optarg;
|
1992-05-09 04:28:28 +00:00
|
|
|
|
sl->list[sl->idx] = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case positive_int:
|
2000-06-07 05:43:37 +00:00
|
|
|
|
/* See if we have an option argument; if we do require that
|
|
|
|
|
it's all digits, not something like "10foo". */
|
|
|
|
|
if (optarg == 0 && argc > optind)
|
|
|
|
|
{
|
|
|
|
|
const char *cp;
|
|
|
|
|
for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
|
|
|
|
|
;
|
|
|
|
|
if (cp[0] == '\0')
|
|
|
|
|
optarg = argv[optind++];
|
|
|
|
|
}
|
1993-01-07 00:34:28 +00:00
|
|
|
|
|
|
|
|
|
if (!doit)
|
|
|
|
|
break;
|
|
|
|
|
|
1992-05-09 04:28:28 +00:00
|
|
|
|
if (optarg != 0)
|
|
|
|
|
{
|
|
|
|
|
int i = atoi (optarg);
|
2000-06-07 05:43:37 +00:00
|
|
|
|
const char *cp;
|
|
|
|
|
|
|
|
|
|
/* Yes, I realize we're repeating this in some cases. */
|
|
|
|
|
for (cp = optarg; ISDIGIT (cp[0]); ++cp)
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
if (i < 1 || cp[0] != '\0')
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
2000-06-07 05:43:37 +00:00
|
|
|
|
error (NILF, _("the `-%c' option requires a positive integral argument"),
|
|
|
|
|
cs->c);
|
1992-05-09 04:28:28 +00:00
|
|
|
|
bad = 1;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
1992-05-09 04:28:28 +00:00
|
|
|
|
*(unsigned int *) cs->value_ptr = i;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
1992-05-09 04:28:28 +00:00
|
|
|
|
else
|
|
|
|
|
*(unsigned int *) cs->value_ptr
|
|
|
|
|
= *(unsigned int *) cs->noarg_value;
|
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#ifndef NO_FLOAT
|
1992-05-09 04:28:28 +00:00
|
|
|
|
case floating:
|
1993-01-07 00:34:28 +00:00
|
|
|
|
if (optarg == 0 && optind < argc
|
1999-08-25 21:39:28 +00:00
|
|
|
|
&& (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
|
1993-01-07 00:34:28 +00:00
|
|
|
|
optarg = argv[optind++];
|
|
|
|
|
|
|
|
|
|
if (doit)
|
1995-11-26 01:37:07 +00:00
|
|
|
|
*(double *) cs->value_ptr
|
1993-01-07 00:34:28 +00:00
|
|
|
|
= (optarg != 0 ? atof (optarg)
|
|
|
|
|
: *(double *) cs->noarg_value);
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
break;
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#endif
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
1995-11-26 01:37:07 +00:00
|
|
|
|
|
1992-05-11 18:11:40 +00:00
|
|
|
|
/* We've found the switch. Stop looking. */
|
|
|
|
|
break;
|
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-03-24 05:56:41 +00:00
|
|
|
|
/* There are no more options according to getting getopt, but there may
|
|
|
|
|
be some arguments left. Since we have asked for non-option arguments
|
|
|
|
|
to be returned in order, this only happens when there is a "--"
|
|
|
|
|
argument to prevent later arguments from being options. */
|
|
|
|
|
while (optind < argc)
|
|
|
|
|
handle_non_switch_argument (argv[optind++], env);
|
|
|
|
|
|
|
|
|
|
|
1993-05-22 20:20:16 +00:00
|
|
|
|
if (!env && (bad || print_usage_flag))
|
1992-05-09 04:28:28 +00:00
|
|
|
|
{
|
1999-08-19 04:43:46 +00:00
|
|
|
|
print_usage (bad);
|
1994-04-21 02:08:28 +00:00
|
|
|
|
die (bad ? 2 : 0);
|
1992-05-09 04:28:28 +00:00
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
/* Decode switches from environment variable ENVAR (which is LEN chars long).
|
|
|
|
|
We do this by chopping the value into a vector of words, prepending a
|
|
|
|
|
dash to the first word if it lacks one, and passing the vector to
|
|
|
|
|
decode_switches. */
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
decode_env_switches (char *envar, unsigned int len)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
2006-04-09 22:09:24 +00:00
|
|
|
|
char *varref = alloca (2 + len + 2);
|
1994-09-10 07:01:10 +00:00
|
|
|
|
char *value, *p;
|
1993-01-07 00:34:28 +00:00
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
|
|
|
|
|
/* Get the variable's value. */
|
|
|
|
|
varref[0] = '$';
|
|
|
|
|
varref[1] = '(';
|
2006-04-09 22:09:24 +00:00
|
|
|
|
memcpy (&varref[2], envar, len);
|
1993-01-07 00:34:28 +00:00
|
|
|
|
varref[2 + len] = ')';
|
|
|
|
|
varref[2 + len + 1] = '\0';
|
1994-09-10 07:01:10 +00:00
|
|
|
|
value = variable_expand (varref);
|
1993-01-07 00:34:28 +00:00
|
|
|
|
|
|
|
|
|
/* Skip whitespace, and check for an empty value. */
|
|
|
|
|
value = next_token (value);
|
|
|
|
|
len = strlen (value);
|
|
|
|
|
if (len == 0)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
return;
|
|
|
|
|
|
1993-01-07 00:34:28 +00:00
|
|
|
|
/* Allocate a vector that is definitely big enough. */
|
2006-04-09 22:09:24 +00:00
|
|
|
|
argv = alloca ((1 + len + 1) * sizeof (char *));
|
1993-01-12 19:42:13 +00:00
|
|
|
|
|
1994-09-10 07:01:10 +00:00
|
|
|
|
/* Allocate a buffer to copy the value into while we split it into words
|
|
|
|
|
and unquote it. We must use permanent storage for this because
|
|
|
|
|
decode_switches may store pointers into the passed argument words. */
|
2006-04-09 22:09:24 +00:00
|
|
|
|
p = xmalloc (2 * len);
|
1994-09-10 07:01:10 +00:00
|
|
|
|
|
1993-01-12 19:42:13 +00:00
|
|
|
|
/* getopt will look at the arguments starting at ARGV[1].
|
|
|
|
|
Prepend a spacer word. */
|
|
|
|
|
argv[0] = 0;
|
|
|
|
|
argc = 1;
|
1994-09-10 07:01:10 +00:00
|
|
|
|
argv[argc] = p;
|
|
|
|
|
while (*value != '\0')
|
|
|
|
|
{
|
1999-10-15 07:00:58 +00:00
|
|
|
|
if (*value == '\\' && value[1] != '\0')
|
1994-09-10 07:01:10 +00:00
|
|
|
|
++value; /* Skip the backslash. */
|
2000-06-07 05:43:37 +00:00
|
|
|
|
else if (isblank ((unsigned char)*value))
|
1994-09-10 07:01:10 +00:00
|
|
|
|
{
|
|
|
|
|
/* End of the word. */
|
|
|
|
|
*p++ = '\0';
|
|
|
|
|
argv[++argc] = p;
|
|
|
|
|
do
|
|
|
|
|
++value;
|
2000-06-07 05:43:37 +00:00
|
|
|
|
while (isblank ((unsigned char)*value));
|
1994-09-10 07:01:10 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
*p++ = *value++;
|
|
|
|
|
}
|
|
|
|
|
*p = '\0';
|
|
|
|
|
argv[++argc] = 0;
|
1994-09-09 05:37:40 +00:00
|
|
|
|
|
1999-10-15 07:00:58 +00:00
|
|
|
|
if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
|
1996-06-22 19:31:12 +00:00
|
|
|
|
/* The first word doesn't start with a dash and isn't a variable
|
|
|
|
|
definition. Add a dash and pass it along to decode_switches. We
|
|
|
|
|
need permanent storage for this in case decode_switches saves
|
|
|
|
|
pointers into the value. */
|
2009-09-16 17:07:01 +00:00
|
|
|
|
argv[1] = xstrdup (concat (2, "-", argv[1]));
|
1993-01-07 00:34:28 +00:00
|
|
|
|
|
|
|
|
|
/* Parse those words. */
|
|
|
|
|
decode_switches (argc, argv, 1);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-10 07:01:10 +00:00
|
|
|
|
/* Quote the string IN so that it will be interpreted as a single word with
|
1999-10-15 07:00:58 +00:00
|
|
|
|
no magic by decode_env_switches; also double dollar signs to avoid
|
|
|
|
|
variable expansion in make itself. Write the result into OUT, returning
|
|
|
|
|
the address of the next character to be written.
|
|
|
|
|
Allocating space for OUT twice the length of IN is always sufficient. */
|
1994-09-26 22:37:10 +00:00
|
|
|
|
|
|
|
|
|
static char *
|
2007-03-20 03:02:26 +00:00
|
|
|
|
quote_for_env (char *out, const char *in)
|
1994-09-10 07:01:10 +00:00
|
|
|
|
{
|
|
|
|
|
while (*in != '\0')
|
|
|
|
|
{
|
1999-10-15 07:00:58 +00:00
|
|
|
|
if (*in == '$')
|
1994-09-26 22:37:10 +00:00
|
|
|
|
*out++ = '$';
|
2000-06-07 05:43:37 +00:00
|
|
|
|
else if (isblank ((unsigned char)*in) || *in == '\\')
|
1999-10-15 07:00:58 +00:00
|
|
|
|
*out++ = '\\';
|
1994-09-10 07:01:10 +00:00
|
|
|
|
*out++ = *in++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
|
1993-01-08 21:48:11 +00:00
|
|
|
|
command switches. Include options with args if ALL is nonzero.
|
1993-01-07 00:34:28 +00:00
|
|
|
|
Don't include options with the `no_makefile' flag set if MAKEFILE. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
static const char *
|
2002-10-14 21:54:04 +00:00
|
|
|
|
define_makeflags (int all, int makefile)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
2009-10-25 00:46:52 +00:00
|
|
|
|
const char ref[] = "$(MAKEOVERRIDES)";
|
|
|
|
|
const char posixref[] = "$(-*-command-variables-*-)";
|
|
|
|
|
const char evalref[] = "$(-*-eval-flags-*-)";
|
|
|
|
|
const struct command_switch *cs;
|
1993-01-08 21:48:11 +00:00
|
|
|
|
char *flagstring;
|
1994-09-09 06:45:51 +00:00
|
|
|
|
register char *p;
|
|
|
|
|
unsigned int words;
|
1993-12-16 20:10:36 +00:00
|
|
|
|
struct variable *v;
|
1993-01-08 21:48:11 +00:00
|
|
|
|
|
|
|
|
|
/* We will construct a linked list of `struct flag's describing
|
|
|
|
|
all the flags which need to go in MAKEFLAGS. Then, once we
|
|
|
|
|
know how many there are and their lengths, we can put them all
|
|
|
|
|
together in a string. */
|
|
|
|
|
|
|
|
|
|
struct flag
|
|
|
|
|
{
|
|
|
|
|
struct flag *next;
|
1993-04-14 18:20:33 +00:00
|
|
|
|
const struct command_switch *cs;
|
2007-03-20 03:02:26 +00:00
|
|
|
|
const char *arg;
|
1993-01-08 21:48:11 +00:00
|
|
|
|
};
|
|
|
|
|
struct flag *flags = 0;
|
|
|
|
|
unsigned int flagslen = 0;
|
|
|
|
|
#define ADD_FLAG(ARG, LEN) \
|
|
|
|
|
do { \
|
2009-10-25 00:46:52 +00:00
|
|
|
|
struct flag *new = alloca (sizeof (struct flag)); \
|
1993-04-08 22:14:23 +00:00
|
|
|
|
new->cs = cs; \
|
1993-01-08 21:48:11 +00:00
|
|
|
|
new->arg = (ARG); \
|
|
|
|
|
new->next = flags; \
|
|
|
|
|
flags = new; \
|
|
|
|
|
if (new->arg == 0) \
|
|
|
|
|
++flagslen; /* Just a single flag letter. */ \
|
|
|
|
|
else \
|
2009-10-25 00:46:52 +00:00
|
|
|
|
/* " -x foo", plus space to expand "foo". */ \
|
|
|
|
|
flagslen += 1 + 1 + 1 + 1 + (3 * (LEN)); \
|
1999-08-31 17:02:31 +00:00
|
|
|
|
if (!short_option (cs->c)) \
|
1993-04-07 20:40:35 +00:00
|
|
|
|
/* This switch has no single-letter version, so we use the long. */ \
|
|
|
|
|
flagslen += 2 + strlen (cs->long_name); \
|
1993-01-08 21:48:11 +00:00
|
|
|
|
} while (0)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
for (cs = switches; cs->c != '\0'; ++cs)
|
|
|
|
|
if (cs->toenv && (!makefile || !cs->no_makefile))
|
1993-01-08 21:48:11 +00:00
|
|
|
|
switch (cs->type)
|
|
|
|
|
{
|
|
|
|
|
case ignore:
|
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1993-01-08 21:48:11 +00:00
|
|
|
|
case flag:
|
|
|
|
|
case flag_off:
|
|
|
|
|
if (!*(int *) cs->value_ptr == (cs->type == flag_off)
|
|
|
|
|
&& (cs->default_value == 0
|
|
|
|
|
|| *(int *) cs->value_ptr != *(int *) cs->default_value))
|
|
|
|
|
ADD_FLAG (0, 0);
|
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1993-01-08 21:48:11 +00:00
|
|
|
|
case positive_int:
|
|
|
|
|
if (all)
|
|
|
|
|
{
|
|
|
|
|
if ((cs->default_value != 0
|
|
|
|
|
&& (*(unsigned int *) cs->value_ptr
|
|
|
|
|
== *(unsigned int *) cs->default_value)))
|
|
|
|
|
break;
|
|
|
|
|
else if (cs->noarg_value != 0
|
|
|
|
|
&& (*(unsigned int *) cs->value_ptr ==
|
|
|
|
|
*(unsigned int *) cs->noarg_value))
|
1993-01-25 22:16:33 +00:00
|
|
|
|
ADD_FLAG ("", 0); /* Optional value omitted; see below. */
|
1993-01-08 21:48:11 +00:00
|
|
|
|
else if (cs->c == 'j')
|
|
|
|
|
/* Special case for `-j'. */
|
|
|
|
|
ADD_FLAG ("1", 1);
|
|
|
|
|
else
|
|
|
|
|
{
|
2006-04-09 22:09:24 +00:00
|
|
|
|
char *buf = alloca (30);
|
1993-01-08 21:48:11 +00:00
|
|
|
|
sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
|
|
|
|
|
ADD_FLAG (buf, strlen (buf));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#ifndef NO_FLOAT
|
1993-01-08 21:48:11 +00:00
|
|
|
|
case floating:
|
|
|
|
|
if (all)
|
|
|
|
|
{
|
|
|
|
|
if (cs->default_value != 0
|
|
|
|
|
&& (*(double *) cs->value_ptr
|
|
|
|
|
== *(double *) cs->default_value))
|
|
|
|
|
break;
|
|
|
|
|
else if (cs->noarg_value != 0
|
|
|
|
|
&& (*(double *) cs->value_ptr
|
|
|
|
|
== *(double *) cs->noarg_value))
|
1993-01-25 22:16:33 +00:00
|
|
|
|
ADD_FLAG ("", 0); /* Optional value omitted; see below. */
|
1993-01-08 21:48:11 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2006-04-09 22:09:24 +00:00
|
|
|
|
char *buf = alloca (100);
|
1993-04-26 20:05:02 +00:00
|
|
|
|
sprintf (buf, "%g", *(double *) cs->value_ptr);
|
1993-01-08 21:48:11 +00:00
|
|
|
|
ADD_FLAG (buf, strlen (buf));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* GNUmakefile (globfiles): Add AmigaDOS support files.
(distfiles): Add $(amigafiles).
(amigafiles): New variable.
Thu Nov 7 10:18:16 1995 Aaron Digulla <digulla@fh-konstanz.de>
* Added Amiga support in commands.c, dir.c, function.c,
job.c, main.c, make.h, read.c, remake.c
* commands.c: Amiga has neither SIGHUP nor SIGQUIT
* dir.c: Amiga has filenames with Upper- and Lowercase,
but "FileName" is the same as "filename". Added strieq()
which is use to compare filenames. This is like streq()
on all other systems. Also there is no such thing as
"." under AmigaDOS.
* function.c: On Amiga, the environment is not passed as envp,
there are no pipes and Amiga can't fork. Use my own function
to create a new child.
* job.c: default_shell is "" (The system automatically chooses
a shell for me). Have to use the same workaround as MSDOS for
running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
known on Amiga. Cloned code to run children from MSDOS. Own
version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
* main.c: Force stack to 20000 bytes. Read environment from ENV:
device. On Amiga, exec_command() does return, so I exit()
afterwards.
* make.h: Added strieq() to compare filenames.
* read.c: Amiga needs special extension to have passwd. Only
one include-dir. "Makefile" and "makefile" are the same.
Added "SMakefile". Added special code to handle device names (xxx:)
and "./" in rules.
* remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
instead of "lib%s.a".
* main.c, rule.c, variable.c: Avoid floats at all costs.
* vpath.c: Get rid of as many alloca()s as possible.
1996-05-09 18:02:06 +00:00
|
|
|
|
#endif
|
1993-01-08 21:48:11 +00:00
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
case filename:
|
1993-01-08 21:48:11 +00:00
|
|
|
|
case string:
|
|
|
|
|
if (all)
|
|
|
|
|
{
|
|
|
|
|
struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
|
|
|
|
|
if (sl != 0)
|
1993-03-18 01:02:20 +00:00
|
|
|
|
{
|
2007-03-20 03:02:26 +00:00
|
|
|
|
/* Add the elements in reverse order, because all the flags
|
|
|
|
|
get reversed below; and the order matters for some
|
|
|
|
|
switches (like -I). */
|
|
|
|
|
unsigned int i = sl->idx;
|
1993-03-18 01:02:20 +00:00
|
|
|
|
while (i-- > 0)
|
|
|
|
|
ADD_FLAG (sl->list[i], strlen (sl->list[i]));
|
|
|
|
|
}
|
1993-01-08 21:48:11 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
2007-03-20 03:02:26 +00:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
1993-01-08 21:48:11 +00:00
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2009-10-25 00:46:52 +00:00
|
|
|
|
/* Four more for the possible " -- ". */
|
|
|
|
|
flagslen += 4 + sizeof (posixref) + sizeof (evalref);
|
1993-01-08 21:48:11 +00:00
|
|
|
|
|
1994-09-26 22:37:10 +00:00
|
|
|
|
#undef ADD_FLAG
|
1994-09-09 06:45:51 +00:00
|
|
|
|
|
|
|
|
|
/* Construct the value in FLAGSTRING.
|
|
|
|
|
We allocate enough space for a preceding dash and trailing null. */
|
2006-04-09 22:09:24 +00:00
|
|
|
|
flagstring = alloca (1 + flagslen + 1);
|
|
|
|
|
memset (flagstring, '\0', 1 + flagslen + 1);
|
1994-09-09 06:45:51 +00:00
|
|
|
|
p = flagstring;
|
|
|
|
|
words = 1;
|
|
|
|
|
*p++ = '-';
|
|
|
|
|
while (flags != 0)
|
|
|
|
|
{
|
|
|
|
|
/* Add the flag letter or name to the string. */
|
1999-09-01 08:04:30 +00:00
|
|
|
|
if (short_option (flags->cs->c))
|
|
|
|
|
*p++ = flags->cs->c;
|
|
|
|
|
else
|
1994-09-09 06:45:51 +00:00
|
|
|
|
{
|
1999-09-01 08:04:30 +00:00
|
|
|
|
if (*p != '-')
|
|
|
|
|
{
|
|
|
|
|
*p++ = ' ';
|
|
|
|
|
*p++ = '-';
|
|
|
|
|
}
|
1994-09-09 06:45:51 +00:00
|
|
|
|
*p++ = '-';
|
|
|
|
|
strcpy (p, flags->cs->long_name);
|
|
|
|
|
p += strlen (p);
|
|
|
|
|
}
|
|
|
|
|
if (flags->arg != 0)
|
|
|
|
|
{
|
1994-09-26 22:37:10 +00:00
|
|
|
|
/* A flag that takes an optional argument which in this case is
|
|
|
|
|
omitted is specified by ARG being "". We must distinguish
|
|
|
|
|
because a following flag appended without an intervening " -"
|
|
|
|
|
is considered the arg for the first. */
|
|
|
|
|
if (flags->arg[0] != '\0')
|
1993-01-08 21:48:11 +00:00
|
|
|
|
{
|
1994-09-09 06:45:51 +00:00
|
|
|
|
/* Add its argument too. */
|
1999-08-31 17:02:31 +00:00
|
|
|
|
*p++ = !short_option (flags->cs->c) ? '=' : ' ';
|
1999-10-15 07:00:58 +00:00
|
|
|
|
p = quote_for_env (p, flags->arg);
|
1993-01-08 21:48:11 +00:00
|
|
|
|
}
|
1994-09-09 06:45:51 +00:00
|
|
|
|
++words;
|
|
|
|
|
/* Write a following space and dash, for the next flag. */
|
|
|
|
|
*p++ = ' ';
|
|
|
|
|
*p++ = '-';
|
|
|
|
|
}
|
1999-08-31 17:02:31 +00:00
|
|
|
|
else if (!short_option (flags->cs->c))
|
1994-09-09 06:45:51 +00:00
|
|
|
|
{
|
|
|
|
|
++words;
|
|
|
|
|
/* Long options must each go in their own word,
|
|
|
|
|
so we write the following space and dash. */
|
|
|
|
|
*p++ = ' ';
|
|
|
|
|
*p++ = '-';
|
|
|
|
|
}
|
|
|
|
|
flags = flags->next;
|
|
|
|
|
}
|
|
|
|
|
|
1995-08-10 23:58:12 +00:00
|
|
|
|
/* Define MFLAGS before appending variable definitions. */
|
|
|
|
|
|
|
|
|
|
if (p == &flagstring[1])
|
|
|
|
|
/* No flags. */
|
|
|
|
|
flagstring[0] = '\0';
|
|
|
|
|
else if (p[-1] == '-')
|
1996-07-26 00:33:25 +00:00
|
|
|
|
{
|
|
|
|
|
/* Kill the final space and dash. */
|
|
|
|
|
p -= 2;
|
|
|
|
|
*p = '\0';
|
|
|
|
|
}
|
1995-08-10 23:58:12 +00:00
|
|
|
|
else
|
|
|
|
|
/* Terminate the string. */
|
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
|
|
/* Since MFLAGS is not parsed for flags, there is no reason to
|
|
|
|
|
override any makefile redefinition. */
|
2009-10-25 00:46:52 +00:00
|
|
|
|
define_variable_cname ("MFLAGS", flagstring, o_env, 1);
|
|
|
|
|
|
|
|
|
|
/* Write a reference to -*-eval-flags-*-, which contains all the --eval
|
|
|
|
|
flag options. */
|
|
|
|
|
if (eval_strings)
|
|
|
|
|
{
|
|
|
|
|
if (p == &flagstring[1])
|
|
|
|
|
/* No flags written, so elide the leading dash already written. */
|
|
|
|
|
p = flagstring;
|
|
|
|
|
else
|
|
|
|
|
*p++ = ' ';
|
|
|
|
|
memcpy (p, evalref, sizeof (evalref) - 1);
|
|
|
|
|
p += sizeof (evalref) - 1;
|
|
|
|
|
}
|
1995-08-10 23:58:12 +00:00
|
|
|
|
|
1994-09-09 06:45:51 +00:00
|
|
|
|
if (all && command_variables != 0)
|
|
|
|
|
{
|
1994-09-26 22:37:10 +00:00
|
|
|
|
/* Now write a reference to $(MAKEOVERRIDES), which contains all the
|
|
|
|
|
command-line variable definitions. */
|
|
|
|
|
|
1994-09-09 06:45:51 +00:00
|
|
|
|
if (p == &flagstring[1])
|
|
|
|
|
/* No flags written, so elide the leading dash already written. */
|
|
|
|
|
p = flagstring;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Separate the variables from the switches with a "--" arg. */
|
|
|
|
|
if (p[-1] != '-')
|
1993-04-07 20:40:35 +00:00
|
|
|
|
{
|
1994-09-09 06:45:51 +00:00
|
|
|
|
/* We did not already write a trailing " -". */
|
1993-04-07 20:40:35 +00:00
|
|
|
|
*p++ = ' ';
|
|
|
|
|
*p++ = '-';
|
|
|
|
|
}
|
1994-09-09 06:45:51 +00:00
|
|
|
|
/* There is a trailing " -"; fill it out to " -- ". */
|
|
|
|
|
*p++ = '-';
|
|
|
|
|
*p++ = ' ';
|
|
|
|
|
}
|
1994-09-26 22:37:10 +00:00
|
|
|
|
|
|
|
|
|
/* Copy in the string. */
|
1994-10-01 08:07:35 +00:00
|
|
|
|
if (posix_pedantic)
|
|
|
|
|
{
|
2009-10-25 00:46:52 +00:00
|
|
|
|
memcpy (p, posixref, sizeof (posixref) - 1);
|
|
|
|
|
p += sizeof (posixref) - 1;
|
1994-10-01 08:07:35 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2009-10-25 00:46:52 +00:00
|
|
|
|
memcpy (p, ref, sizeof (ref) - 1);
|
|
|
|
|
p += sizeof (ref) - 1;
|
1994-10-01 08:07:35 +00:00
|
|
|
|
}
|
1993-01-08 21:48:11 +00:00
|
|
|
|
}
|
1994-11-06 23:33:55 +00:00
|
|
|
|
else if (p == &flagstring[1])
|
1994-11-07 18:57:56 +00:00
|
|
|
|
{
|
|
|
|
|
words = 0;
|
|
|
|
|
--p;
|
|
|
|
|
}
|
1994-09-09 06:45:51 +00:00
|
|
|
|
else if (p[-1] == '-')
|
|
|
|
|
/* Kill the final space and dash. */
|
|
|
|
|
p -= 2;
|
|
|
|
|
/* Terminate the string. */
|
|
|
|
|
*p = '\0';
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
/* If there are switches, omit the leading dash unless it is a single long
|
|
|
|
|
option with two leading dashes. */
|
|
|
|
|
if (flagstring[0] == '-' && flagstring[1] != '-')
|
|
|
|
|
++flagstring;
|
|
|
|
|
|
2009-10-25 00:46:52 +00:00
|
|
|
|
v = define_variable_cname ("MAKEFLAGS", flagstring,
|
|
|
|
|
/* This used to use o_env, but that lost when a
|
|
|
|
|
makefile defined MAKEFLAGS. Makefiles set
|
|
|
|
|
MAKEFLAGS to add switches, but we still want
|
|
|
|
|
to redefine its value with the full set of
|
|
|
|
|
switches. Of course, an override or command
|
|
|
|
|
definition will still take precedence. */
|
|
|
|
|
o_file, 1);
|
2009-06-09 15:35:38 +00:00
|
|
|
|
|
1993-12-16 20:10:36 +00:00
|
|
|
|
if (! all)
|
|
|
|
|
/* The first time we are called, set MAKEFLAGS to always be exported.
|
|
|
|
|
We should not do this again on the second call, because that is
|
|
|
|
|
after reading makefiles which might have done `unexport MAKEFLAGS'. */
|
|
|
|
|
v->export = v_export;
|
2009-06-09 15:35:38 +00:00
|
|
|
|
|
|
|
|
|
return v->value;
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print version information. */
|
|
|
|
|
|
|
|
|
|
static void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
print_version (void)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
1992-09-30 01:26:59 +00:00
|
|
|
|
static int printed_version = 0;
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
char *precede = print_data_base_flag ? "# " : "";
|
|
|
|
|
|
1992-09-30 01:26:59 +00:00
|
|
|
|
if (printed_version)
|
|
|
|
|
/* Do it only once. */
|
|
|
|
|
return;
|
|
|
|
|
|
2007-07-04 19:35:15 +00:00
|
|
|
|
printf ("%sGNU Make %s\n", precede, version_string);
|
|
|
|
|
|
|
|
|
|
if (!remote_description || *remote_description == '\0')
|
|
|
|
|
printf (_("%sBuilt for %s\n"), precede, make_host);
|
|
|
|
|
else
|
|
|
|
|
printf (_("%sBuilt for %s (%s)\n"),
|
|
|
|
|
precede, make_host, remote_description);
|
|
|
|
|
|
2002-07-08 02:26:47 +00:00
|
|
|
|
/* Print this untranslated. The coding standards recommend translating the
|
|
|
|
|
(C) to the copyright symbol, but this string is going to change every
|
|
|
|
|
year, and none of the rest of it should be translated (including the
|
|
|
|
|
word "Copyright", so it hardly seems worth it. */
|
|
|
|
|
|
2009-06-09 15:35:38 +00:00
|
|
|
|
printf ("%sCopyright (C) 2009 Free Software Foundation, Inc.\n", precede);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2007-07-04 19:35:15 +00:00
|
|
|
|
printf (_("%sLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
|
|
|
|
|
%sThis is free software: you are free to change and redistribute it.\n\
|
|
|
|
|
%sThere is NO WARRANTY, to the extent permitted by law.\n"),
|
2002-07-08 02:26:47 +00:00
|
|
|
|
precede, precede, precede);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
printed_version = 1;
|
|
|
|
|
|
|
|
|
|
/* Flush stdout so the user doesn't have to wait to see the
|
|
|
|
|
version information while things are thought about. */
|
|
|
|
|
fflush (stdout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print a bunch of information about this and that. */
|
|
|
|
|
|
|
|
|
|
static void
|
2006-03-20 02:36:36 +00:00
|
|
|
|
print_data_base ()
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
|
|
|
|
time_t when;
|
|
|
|
|
|
|
|
|
|
when = time ((time_t *) 0);
|
1999-07-28 06:23:37 +00:00
|
|
|
|
printf (_("\n# Make data base, printed on %s"), ctime (&when));
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
print_variable_data_base ();
|
|
|
|
|
print_dir_data_base ();
|
|
|
|
|
print_rule_data_base ();
|
|
|
|
|
print_file_data_base ();
|
|
|
|
|
print_vpath_data_base ();
|
2006-02-10 05:29:00 +00:00
|
|
|
|
strcache_print_stats ("#");
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
when = time ((time_t *) 0);
|
1999-07-28 06:23:37 +00:00
|
|
|
|
printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
2006-03-20 02:36:36 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
clean_jobserver (int status)
|
|
|
|
|
{
|
|
|
|
|
char token = '+';
|
|
|
|
|
|
|
|
|
|
/* Sanity: have we written all our jobserver tokens back? If our
|
|
|
|
|
exit status is 2 that means some kind of syntax error; we might not
|
|
|
|
|
have written all our tokens so do that now. If tokens are left
|
|
|
|
|
after any other error code, that's bad. */
|
|
|
|
|
|
|
|
|
|
if (job_fds[0] != -1 && jobserver_tokens)
|
|
|
|
|
{
|
|
|
|
|
if (status != 2)
|
|
|
|
|
error (NILF,
|
|
|
|
|
"INTERNAL: Exiting with %u jobserver tokens (should be 0)!",
|
|
|
|
|
jobserver_tokens);
|
|
|
|
|
else
|
|
|
|
|
while (jobserver_tokens--)
|
|
|
|
|
{
|
|
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
EINTRLOOP (r, write (job_fds[1], &token, 1));
|
|
|
|
|
if (r != 1)
|
|
|
|
|
perror_with_name ("write", "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Sanity: If we're the master, were all the tokens written back? */
|
|
|
|
|
|
|
|
|
|
if (master_job_slots)
|
|
|
|
|
{
|
|
|
|
|
/* We didn't write one for ourself, so start at 1. */
|
|
|
|
|
unsigned int tcnt = 1;
|
|
|
|
|
|
|
|
|
|
/* Close the write side, so the read() won't hang. */
|
|
|
|
|
close (job_fds[1]);
|
|
|
|
|
|
|
|
|
|
while (read (job_fds[0], &token, 1) == 1)
|
|
|
|
|
++tcnt;
|
|
|
|
|
|
|
|
|
|
if (tcnt != master_job_slots)
|
|
|
|
|
error (NILF,
|
|
|
|
|
"INTERNAL: Exiting with %u jobserver tokens available; should be %u!",
|
|
|
|
|
tcnt, master_job_slots);
|
|
|
|
|
|
|
|
|
|
close (job_fds[0]);
|
2009-06-09 15:35:38 +00:00
|
|
|
|
|
|
|
|
|
/* Clean out jobserver_fds so we don't pass this information to any
|
|
|
|
|
sub-makes. Also reset job_slots since it will be put on the command
|
|
|
|
|
line, not in MAKEFLAGS. */
|
|
|
|
|
job_slots = default_job_slots;
|
|
|
|
|
if (jobserver_fds)
|
|
|
|
|
{
|
|
|
|
|
free (jobserver_fds->list);
|
|
|
|
|
free (jobserver_fds);
|
|
|
|
|
jobserver_fds = 0;
|
|
|
|
|
}
|
2006-03-20 02:36:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
|
|
|
|
/* Exit with STATUS, cleaning up as necessary. */
|
|
|
|
|
|
|
|
|
|
void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
die (int status)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
|
|
|
|
static char dying = 0;
|
|
|
|
|
|
|
|
|
|
if (!dying)
|
|
|
|
|
{
|
1992-04-21 07:56:07 +00:00
|
|
|
|
int err;
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
dying = 1;
|
|
|
|
|
|
1992-09-30 01:26:59 +00:00
|
|
|
|
if (print_version_flag)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
print_version ();
|
|
|
|
|
|
|
|
|
|
/* Wait for children to die. */
|
2005-08-08 05:08:00 +00:00
|
|
|
|
err = (status != 0);
|
|
|
|
|
while (job_slots_used > 0)
|
1992-04-29 21:15:52 +00:00
|
|
|
|
reap_children (1, err);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
1996-06-22 19:31:12 +00:00
|
|
|
|
/* Let the remote job module clean up its state. */
|
|
|
|
|
remote_cleanup ();
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
/* Remove the intermediate files. */
|
|
|
|
|
remove_intermediates (0);
|
|
|
|
|
|
1993-01-12 19:42:13 +00:00
|
|
|
|
if (print_data_base_flag)
|
|
|
|
|
print_data_base ();
|
|
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
|
verify_file_data_base ();
|
|
|
|
|
|
2006-03-20 02:36:36 +00:00
|
|
|
|
clean_jobserver (status);
|
2005-05-03 13:57:20 +00:00
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
/* Try to move back to the original directory. This is essential on
|
|
|
|
|
MS-DOS (where there is really only one process), and on Unix it
|
|
|
|
|
puts core files in the original directory instead of the -C
|
|
|
|
|
directory. Must wait until after remove_intermediates(), or unlinks
|
|
|
|
|
of relative pathnames fail. */
|
|
|
|
|
if (directory_before_chdir != 0)
|
|
|
|
|
chdir (directory_before_chdir);
|
|
|
|
|
|
1995-11-26 01:37:07 +00:00
|
|
|
|
log_working_directory (0);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exit (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write a message indicating that we've just entered or
|
|
|
|
|
left (according to ENTERING) the current directory. */
|
|
|
|
|
|
1995-11-26 01:37:07 +00:00
|
|
|
|
void
|
2002-10-14 21:54:04 +00:00
|
|
|
|
log_working_directory (int entering)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
{
|
|
|
|
|
static int entered = 0;
|
|
|
|
|
|
1995-11-26 01:37:07 +00:00
|
|
|
|
/* Print nothing without the flag. Don't print the entering message
|
|
|
|
|
again if we already have. Don't print the leaving message if we
|
|
|
|
|
haven't printed the entering message. */
|
|
|
|
|
if (! print_directory_flag || entering == entered)
|
1992-01-29 23:54:36 +00:00
|
|
|
|
return;
|
|
|
|
|
|
1995-11-26 01:37:07 +00:00
|
|
|
|
entered = entering;
|
|
|
|
|
|
1992-01-29 23:54:36 +00:00
|
|
|
|
if (print_data_base_flag)
|
|
|
|
|
fputs ("# ", stdout);
|
|
|
|
|
|
2000-09-21 04:14:38 +00:00
|
|
|
|
/* Use entire sentences to give the translators a fighting chance. */
|
1992-01-29 23:54:36 +00:00
|
|
|
|
|
2002-07-08 13:05:02 +00:00
|
|
|
|
if (makelevel == 0)
|
|
|
|
|
if (starting_directory == 0)
|
|
|
|
|
if (entering)
|
2003-10-22 04:35:27 +00:00
|
|
|
|
printf (_("%s: Entering an unknown directory\n"), program);
|
2002-07-08 13:05:02 +00:00
|
|
|
|
else
|
2003-10-22 04:35:27 +00:00
|
|
|
|
printf (_("%s: Leaving an unknown directory\n"), program);
|
2000-09-21 04:14:38 +00:00
|
|
|
|
else
|
2002-07-08 13:05:02 +00:00
|
|
|
|
if (entering)
|
|
|
|
|
printf (_("%s: Entering directory `%s'\n"),
|
|
|
|
|
program, starting_directory);
|
|
|
|
|
else
|
|
|
|
|
printf (_("%s: Leaving directory `%s'\n"),
|
|
|
|
|
program, starting_directory);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
else
|
2002-07-08 13:05:02 +00:00
|
|
|
|
if (starting_directory == 0)
|
|
|
|
|
if (entering)
|
2003-10-22 04:35:27 +00:00
|
|
|
|
printf (_("%s[%u]: Entering an unknown directory\n"),
|
2002-07-08 13:05:02 +00:00
|
|
|
|
program, makelevel);
|
|
|
|
|
else
|
2003-10-22 04:35:27 +00:00
|
|
|
|
printf (_("%s[%u]: Leaving an unknown directory\n"),
|
2002-07-08 13:05:02 +00:00
|
|
|
|
program, makelevel);
|
2000-09-21 04:14:38 +00:00
|
|
|
|
else
|
2002-07-08 13:05:02 +00:00
|
|
|
|
if (entering)
|
|
|
|
|
printf (_("%s[%u]: Entering directory `%s'\n"),
|
|
|
|
|
program, makelevel, starting_directory);
|
|
|
|
|
else
|
|
|
|
|
printf (_("%s[%u]: Leaving directory `%s'\n"),
|
|
|
|
|
program, makelevel, starting_directory);
|
2005-02-10 00:10:57 +00:00
|
|
|
|
|
|
|
|
|
/* Flush stdout to be sure this comes before any stderr output. */
|
|
|
|
|
fflush (stdout);
|
1992-01-29 23:54:36 +00:00
|
|
|
|
}
|