summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-03-26 06:56:54 +0000
committerPaul Smith <psmith@gnu.org>2000-03-26 06:56:54 +0000
commitb6c5c8b8da186baf0bd226f5a5bb6be75fc63e68 (patch)
treed4dcc537b40b129bd0779bc31e1686e217a9585a /default.c
parentecd7ad00eb49a4056da853039c8872777326ef21 (diff)
downloadmake-b6c5c8b8da186baf0bd226f5a5bb6be75fc63e68.tar.gz
* Ignore attempt to change a file into itself.
* Define COFLAGS to avoid unknown variable warning. * Fix some usec problems on UnixWare. * Don't remove .INTERMEDIATE targets specified on the command line.
Diffstat (limited to 'default.c')
-rw-r--r--default.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/default.c b/default.c
index 517d3253..5d981b98 100644
--- a/default.c
+++ b/default.c
@@ -396,10 +396,10 @@ static char *default_variables[] =
/* This expands to $(CO) $(COFLAGS) $< $@ if $@ does not exist,
and to the empty string if $@ does exist. */
- "CHECKOUT,v",
- "+$(if $(wildcard $@),,$(CO) $(COFLAGS) $< $@)",
-
+ "CHECKOUT,v", "+$(if $(wildcard $@),,$(CO) $(COFLAGS) $< $@)",
"CO", "co",
+ "COFLAGS", "",
+
"CPP", "$(CC) -E",
#ifdef CRAY
"CF77PPFLAGS", "-P",