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:
Dave Love 1998-05-22 10:49:26 +00:00 committed by Dave Love
parent 5a276a25c6
commit 2929d7a2a0
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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