]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in ($(TARGETLIB)): Also generate pic/$(TARGETLIB) if necessary.
authorH.J. Lu <hjl@gnu.org>
Sat, 20 Oct 2001 05:39:06 +0000 (05:39 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Sat, 20 Oct 2001 05:39:06 +0000 (22:39 -0700)
2001-10-19  H.J. Lu <hjl@gnu.org>

* Makefile.in ($(TARGETLIB)): Also generate pic/$(TARGETLIB) if
necessary.

From-SVN: r46369

libiberty/ChangeLog
libiberty/Makefile.in

index 20c08f95daa62f6ec5b42e2f97b85c0ed563af98..de76760cfbcb8f09df109a99252efa0381dbf383 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-19  H.J. Lu <hjl@gnu.org>
+
+       * Makefile.in ($(TARGETLIB)): Also generate pic/$(TARGETLIB) if
+       necessary.
+
 2001-10-17  DJ Delorie  <dj@redhat.com>
 
        * argv.c, asprintf.c, choose-temp.c, concat.c, cplus-dem.c,
index f5499029696d5915a468454bfee5dff8d1edafa6..877e0a9279f08a010e50ffc239111145ba62cdb3 100644 (file)
@@ -154,10 +154,17 @@ CONFIGURED_OFILES = asprintf.o atexit.o basename.o bcmp.o bcopy.o \
        vsprintf.o waitpid.o
 
 $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
-       -rm -f $(TARGETLIB)
+       -rm -f $(TARGETLIB) pic/$(TARGETLIB)
        $(AR) $(AR_FLAGS) $(TARGETLIB) \
          $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
        $(RANLIB) $(TARGETLIB)
+       if [ x"$(PICFLAG)" != x ]; then \
+         cd pic; \
+         $(AR) $(AR_FLAGS) $(TARGETLIB) \
+           $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
+         $(RANLIB) $(TARGETLIB); \
+         cd ..; \
+       else true; fi
 
 info: libiberty.info info-subdir
 install-info: install-info-subdir