Commit 2929d7a2 by Dave Love Committed by Dave Love

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
parent 5a276a25
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> Tue May 19 12:50:27 1998 Craig Burley <burley@gnu.org>
Break up main() into separate .o's so making and Break up main() into separate .o's so making and
......
...@@ -158,7 +158,8 @@ $(lib): stamp-libf77 stamp-libi77 stamp-libu77 stamp-libe77 ...@@ -158,7 +158,8 @@ $(lib): stamp-libf77 stamp-libi77 stamp-libu77 stamp-libe77
$(AR) $(AR_FLAGS) $(lib) $(FOBJ) $(AR) $(AR_FLAGS) $(lib) $(FOBJ)
$(AR) $(AR_FLAGS) $(lib) $(IOBJ) $(AR) $(AR_FLAGS) $(lib) $(IOBJ)
$(AR) $(AR_FLAGS) $(lib) $(UOBJ) $(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) $(RANLIB) $(lib)
stamp-libi77: libI77/Makefile stamp-libi77: libI77/Makefile
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment