Commit 7bd52f25 by Manfred Hollstein Committed by Jeff Law

Makefile.in ($(lib)): Call $(AR) repeatedly to avoid overflowing argument size…

Makefile.in ($(lib)): Call $(AR) repeatedly to avoid overflowing argument size limit on ancious System V.

        * Makefile.in ($(lib)): Call $(AR) repeatedly to avoid overflowing
        argument size limit on ancious System V.

From-SVN: r17848
parent e203760c
Wed Feb 11 01:46:20 1998 Manfred Hollstein <manfred@s-direktnet.de>
* Makefile.in ($(lib)): Call $(AR) repeatedly to avoid overflowing
argument size limit on ancious System V.
Sun Feb 8 00:32:17 1998 Manfred Hollstein <manfred@s-direktnet.de> Sun Feb 8 00:32:17 1998 Manfred Hollstein <manfred@s-direktnet.de>
* Makefile.in: Add `info install-info clean-info check dvi' targets. * Makefile.in: Add `info install-info clean-info check dvi' targets.
......
...@@ -154,7 +154,10 @@ all: f2c.h $(lib) ...@@ -154,7 +154,10 @@ all: f2c.h $(lib)
$(lib): stamp-libf77 stamp-libi77 stamp-libu77 stamp-libe77 $(lib): stamp-libf77 stamp-libi77 stamp-libu77 stamp-libe77
rm -f $(lib) rm -f $(lib)
$(AR) $(AR_FLAGS) $(lib) $(FOBJ) $(IOBJ) $(UOBJ) $(F2CEXT:%=libE77/L%.o) $(AR) $(AR_FLAGS) $(lib) $(FOBJ)
$(AR) $(AR_FLAGS) $(lib) $(IOBJ)
$(AR) $(AR_FLAGS) $(lib) $(UOBJ)
$(AR) $(AR_FLAGS) $(lib) $(F2CEXT:%=libE77/L%.o)
$(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