* tests/early-libtool.at: Fix goofed up make rules in

previous commit.
This commit is contained in:
Ralf Wildenhues 2005-08-26 13:54:04 +00:00 committed by Peter Rosin
parent d485025de4
commit 9c08dbfa0e
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,9 @@
2005-08-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Peter Ekberg <peda@lysator.liu.se>
* tests/early-libtool.at: Fix goofed up make rules in
previous commit.
* tests/inherited_flags.at: Weaken for MSVC.
* tests/early-libtool.at, tests/template.at: Fix for compiler
that do not understand '-c -o'.

View File

@ -59,7 +59,7 @@ hell$(EXEEXT): main.$(OBJEXT) libhello.la
.SUFFIXES: .c .$(OBJEXT) .lo
.c.$(OBJEXT):
$(COMPILE) -c $@ $<
$(COMPILE) -c $<
.c.lo:
$(LTCOMPILE) -c -o $@ $<
]])
@ -164,7 +164,7 @@ hell$(EXEEXT): main.$(OBJEXT) libhello.la
.SUFFIXES: .c .$(OBJEXT)
.c.$(OBJEXT):
$(COMPILE) -c $@ $<
$(COMPILE) -c $<
]])
AT_DATA([hello.c],