summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1992-11-23 20:48:49 +0000
committerRoland McGrath <roland@redhat.com>1992-11-23 20:48:49 +0000
commitb8b8ba69d4cf084f870e1a1f5fde15b3f9b2be77 (patch)
tree9993f3edbb3c6165c7bfd74378859b094dd06dbd /default.c
parent081275c58eb163007e5cd5ceda55ee7121547206 (diff)
downloadgunmake-b8b8ba69d4cf084f870e1a1f5fde15b3f9b2be77.tar.gz
Formerly default.c.~19~
Diffstat (limited to 'default.c')
-rw-r--r--default.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/default.c b/default.c
index f2d65fe..e3fe88b 100644
--- a/default.c
+++ b/default.c
@@ -34,33 +34,33 @@ static char default_suffixes[]
static struct pspec default_pattern_rules[] =
{
- "(%)", "%",
- "$(AR) $(ARFLAGS) $@ $<",
+ { "(%)", "%",
+ "$(AR) $(ARFLAGS) $@ $<" },
/* The X.out rules are only in BSD's default set because
BSD Make has no null-suffix rules, so `foo.out' and
`foo' are the same thing. */
- "%.out", "%",
- "@rm -f $@ \n cp $< $@",
+ { "%.out", "%",
+ "@rm -f $@ \n cp $< $@" },
- 0, 0, 0
+ { 0, 0, 0 }
};
static struct pspec default_terminal_rules[] =
{
/* RCS. */
- "%", "%,v",
- "+$(CHECKOUT,v)",
- "%", "RCS/%,v",
- "+$(CHECKOUT,v)",
+ { "%", "%,v",
+ "+$(CHECKOUT,v)" },
+ { "%", "RCS/%,v",
+ "+$(CHECKOUT,v)" },
/* SCCS. */
- "%", "s.%",
- "$(GET) $(GFLAGS) $<",
- "%", "SCCS/s.%",
- "$(GET) $(GFLAGS) $<",
+ { "%", "s.%",
+ "$(GET) $(GFLAGS) $<" },
+ { "%", "SCCS/s.%",
+ "$(GET) $(GFLAGS) $<" },
- 0, 0, 0,
+ { 0, 0, 0 }
};
static char *default_suffix_rules[] =