diff options
author | Paul Smith <psmith@gnu.org> | 1999-07-22 04:20:14 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-07-22 04:20:14 +0000 |
commit | ec50fe2a2baf518181896a0cc5f376eb4d47ff0a (patch) | |
tree | 24a371fa169122d485250f3ed33f79b733de6f95 /default.c | |
parent | c69d4c95bf2027252e13e4dec3fb2dcfd10fc4e7 (diff) | |
download | gunmake-ec50fe2a2baf518181896a0cc5f376eb4d47ff0a.tar.gz |
* Installed new versions of GLIBC glob library.
* Installed Tim Magill's "graph pruning" performance enhancement.
* Update version to 3.77.90 for the release.
* Require automake 1.4.
Diffstat (limited to 'default.c')
-rw-r--r-- | default.c | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -183,21 +183,21 @@ static char *default_suffix_rules[] = ".S.o", "$(COMPILE.S) -o $@ $<", ".c.o", - "$(COMPILE.c) $< $(OUTPUT_OPTION)", + "$(COMPILE.c) $(OUTPUT_OPTION) $<", ".cc.o", - "$(COMPILE.cc) $< $(OUTPUT_OPTION)", + "$(COMPILE.cc) $(OUTPUT_OPTION) $<", ".C.o", - "$(COMPILE.C) $< $(OUTPUT_OPTION)", + "$(COMPILE.C) $(OUTPUT_OPTION) $<", ".cpp.o", - "$(COMPILE.cpp) $< $(OUTPUT_OPTION)", + "$(COMPILE.cpp) $(OUTPUT_OPTION) $<", ".f.o", - "$(COMPILE.f) $< $(OUTPUT_OPTION)", + "$(COMPILE.f) $(OUTPUT_OPTION) $<", ".p.o", - "$(COMPILE.p) $< $(OUTPUT_OPTION)", + "$(COMPILE.p) $(OUTPUT_OPTION) $<", ".F.o", - "$(COMPILE.F) $< $(OUTPUT_OPTION)", + "$(COMPILE.F) $(OUTPUT_OPTION) $<", ".r.o", - "$(COMPILE.r) $< $(OUTPUT_OPTION)", + "$(COMPILE.r) $(OUTPUT_OPTION) $<", ".mod.o", "$(COMPILE.mod) -o $@ $<", @@ -222,9 +222,9 @@ static char *default_suffix_rules[] = "@$(RM) $@ \n $(LEX.l) $< > $@", ".F.f", - "$(PREPROCESS.F) $< $(OUTPUT_OPTION)", + "$(PREPROCESS.F) $(OUTPUT_OPTION) $<", ".r.f", - "$(PREPROCESS.r) $< $(OUTPUT_OPTION)", + "$(PREPROCESS.r) $(OUTPUT_OPTION) $<", /* This might actually make lex.yy.c if there's no %R% directive in $*.l, but in that case why were you |