mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-07 06:47:52 +00:00
Formerly default.c.~19~
This commit is contained in:
parent
081275c58e
commit
b8b8ba69d4
1 changed files with 14 additions and 14 deletions
28
default.c
28
default.c
|
@ -34,33 +34,33 @@ static char default_suffixes[]
|
||||||
|
|
||||||
static struct pspec default_pattern_rules[] =
|
static struct pspec default_pattern_rules[] =
|
||||||
{
|
{
|
||||||
"(%)", "%",
|
{ "(%)", "%",
|
||||||
"$(AR) $(ARFLAGS) $@ $<",
|
"$(AR) $(ARFLAGS) $@ $<" },
|
||||||
|
|
||||||
/* The X.out rules are only in BSD's default set because
|
/* The X.out rules are only in BSD's default set because
|
||||||
BSD Make has no null-suffix rules, so `foo.out' and
|
BSD Make has no null-suffix rules, so `foo.out' and
|
||||||
`foo' are the same thing. */
|
`foo' are the same thing. */
|
||||||
"%.out", "%",
|
{ "%.out", "%",
|
||||||
"@rm -f $@ \n cp $< $@",
|
"@rm -f $@ \n cp $< $@" },
|
||||||
|
|
||||||
0, 0, 0
|
{ 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct pspec default_terminal_rules[] =
|
static struct pspec default_terminal_rules[] =
|
||||||
{
|
{
|
||||||
/* RCS. */
|
/* RCS. */
|
||||||
"%", "%,v",
|
{ "%", "%,v",
|
||||||
"+$(CHECKOUT,v)",
|
"+$(CHECKOUT,v)" },
|
||||||
"%", "RCS/%,v",
|
{ "%", "RCS/%,v",
|
||||||
"+$(CHECKOUT,v)",
|
"+$(CHECKOUT,v)" },
|
||||||
|
|
||||||
/* SCCS. */
|
/* SCCS. */
|
||||||
"%", "s.%",
|
{ "%", "s.%",
|
||||||
"$(GET) $(GFLAGS) $<",
|
"$(GET) $(GFLAGS) $<" },
|
||||||
"%", "SCCS/s.%",
|
{ "%", "SCCS/s.%",
|
||||||
"$(GET) $(GFLAGS) $<",
|
"$(GET) $(GFLAGS) $<" },
|
||||||
|
|
||||||
0, 0, 0,
|
{ 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *default_suffix_rules[] =
|
static char *default_suffix_rules[] =
|
||||||
|
|
Loading…
Reference in a new issue