mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-22 20:36:20 +08:00
Makefile.in ($(lib)): Use shell loop instead of unportable make variable substitution.
1998-05-20 Dave Love <d.love@dl.ac.uk> * Makefile.in ($(lib)): Use shell loop instead of unportable make variable substitution. From-SVN: r19957
This commit is contained in:
parent
5a276a25c6
commit
2929d7a2a0
@ -1,3 +1,8 @@
|
||||
1998-05-20 Dave Love <d.love@dl.ac.uk>
|
||||
|
||||
* Makefile.in ($(lib)): Use shell loop instead of unportable
|
||||
make variable substitution.
|
||||
|
||||
Tue May 19 12:50:27 1998 Craig Burley <burley@gnu.org>
|
||||
|
||||
Break up main() into separate .o's so making and
|
||||
|
@ -158,7 +158,8 @@ $(lib): stamp-libf77 stamp-libi77 stamp-libu77 stamp-libe77
|
||||
$(AR) $(AR_FLAGS) $(lib) $(FOBJ)
|
||||
$(AR) $(AR_FLAGS) $(lib) $(IOBJ)
|
||||
$(AR) $(AR_FLAGS) $(lib) $(UOBJ)
|
||||
$(AR) $(AR_FLAGS) $(lib) $(F2CEXT:%=libE77/L%.o)
|
||||
objs=""; for i in $(F2CEXT); do objs="$$objs libE77/L$$i.o"; done; \
|
||||
$(AR) $(AR_FLAGS) $(lib) $$objs
|
||||
$(RANLIB) $(lib)
|
||||
|
||||
stamp-libi77: libI77/Makefile
|
||||
|
Loading…
Reference in New Issue
Block a user