diff options
author | Toon Moene <toon@moene.indiv.nluug.nl> | 2001-11-13 01:55:38 +0100 |
---|---|---|
committer | Toon Moene <toon@gcc.gnu.org> | 2001-11-13 00:55:38 +0000 |
commit | f871d7bf4b6de64a8c4d6fae8ace3a0f3579fc24 (patch) | |
tree | 670a6697ae5679d8175961b00a036da349aea7ae /libf2c/libF77/Makefile.in | |
parent | 0f658c83b529f23e76e006461ad2595d04dbed4c (diff) | |
download | gcc-f871d7bf4b6de64a8c4d6fae8ace3a0f3579fc24.zip gcc-f871d7bf4b6de64a8c4d6fae8ace3a0f3579fc24.tar.gz gcc-f871d7bf4b6de64a8c4d6fae8ace3a0f3579fc24.tar.bz2 |
Makefile.in: Change dependencies on stamp files into dependencies on the generated .la files.
2001-11-13 Toon Moene <toon@moene.indiv.nluug.nl>
* Makefile.in: Change dependencies on stamp files
into dependencies on the generated .la files.
Get rid of objlist. Update comment.
* libF77/Makefile.in: Ditto.
* libI77/Makefile.in: Ditto.
* libU77/Makefile.in: Ditto.
From-SVN: r46970
Diffstat (limited to 'libf2c/libF77/Makefile.in')
-rw-r--r-- | libf2c/libF77/Makefile.in | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/libf2c/libF77/Makefile.in b/libf2c/libF77/Makefile.in index bdb31a8..e853b05 100644 --- a/libf2c/libF77/Makefile.in +++ b/libf2c/libF77/Makefile.in @@ -52,7 +52,7 @@ ALL_CFLAGS = -I. -I$(srcdir) -I$(G2C_H_DIR) -I$(F2C_H_DIR) $(CPPFLAGS) $(DEFS) $ .c.lo: @LIBTOOL@ --mode=compile $(CC) -c -DSkip_f2c_Undefs $(ALL_CFLAGS) $< -LINK = @LIBTOOL@ --mode=link $(CC) $(ALL_CFLAGS) -o $@ +LINK = @LIBTOOL@ --mode=link $(CC) -o $@ MISC = F77_aloc.lo VersionF.lo s_rnge.lo abort_.lo getarg_.lo iargc_.lo\ getenv_.lo signal_.lo s_stop.lo s_paus.lo system_.lo cabs.lo\ @@ -80,20 +80,11 @@ F90BIT = lbitbits.lo lbitshft.lo qbitbits.lo qbitshft.lo OBJS = $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) \ $(HALF) $(CMP) $(EFL) $(CHAR) $(F90BIT) -all: ../s-libf77 ../libfrtbegin.a - -../s-libf77: ../libF77.la - echo timestamp > ../s-libf77 +all: ../libF77.la ../libfrtbegin.a ../libF77.la: $(OBJS) $(LINK) $(OBJS) -objlist: - objs="`cat ../objlist`" ; for i in $(OBJS) ; do \ - objs="$$objs libF77/$$i" ;\ - done ; \ - echo -n $$objs > ../objlist - Makefile: Makefile.in config.status $(SHELL) config.status @@ -249,10 +240,10 @@ mostlyclean: clean: mostlyclean rm -f config.log - rm -f ../s-libf77 + rm -f ../libF77.la distclean: clean - rm -f config.cache config.status Makefile ../s-libf77 configure + rm -f config.cache config.status Makefile ../libF77.la configure maintainer-clean: |