From ebb733c0f9ab045b6fd6245df2baf2e87463e1bc Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Wed, 17 Nov 1999 07:33:47 +0000 Subject: * Many cleanups and bugfixes. * New handling of += in target-specific variables. --- main.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 4ea4f66..a1b3d74 100644 --- a/main.c +++ b/main.c @@ -419,6 +419,11 @@ struct file *default_file; int posix_pedantic; +/* Nonzero if we have seen the `.NOTPARALLEL' target. + This turns off parallel builds for this invocation of make. */ + +int not_parallel; + /* 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. */ @@ -1776,7 +1781,8 @@ int main (int argc, char ** argv) /* If we detected some clock skew, generate one last warning */ if (clock_skew_detected) - error (NILF, _("*** Warning: Clock skew detected. Your build may be incomplete.")); + error (NILF, + _("warning: Clock skew detected. Your build may be incomplete.")); /* Exit. */ die (status); @@ -1860,7 +1866,7 @@ handle_non_switch_argument (arg, env) if (arg[0] == '-' && arg[1] == '\0') /* Ignore plain `-' for compatibility. */ return; - v = try_variable_definition (0, arg, o_command); + v = try_variable_definition (0, arg, o_command, 0); if (v != 0) { /* It is indeed a variable definition. Record a pointer to -- cgit v1.2.3