]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Formerly default.c.~19~
authorRoland McGrath <roland@redhat.com>
Mon, 23 Nov 1992 20:48:49 +0000 (20:48 +0000)
committerRoland McGrath <roland@redhat.com>
Mon, 23 Nov 1992 20:48:49 +0000 (20:48 +0000)
default.c

index f2d65fefeb8be4a3bc06343187ff9e3c5df5a7e1..e3fe88bb14b7589bf5d0927ba5bd97aa4bc668de 100644 (file)
--- 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[] =