merge from gcc
This commit is contained in:
parent
f33a821352
commit
3bc62f91f4
2 changed files with 13 additions and 1 deletions
|
@ -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>
|
2001-10-17 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
* argv.c, asprintf.c, choose-temp.c, concat.c, cplus-dem.c,
|
* argv.c, asprintf.c, choose-temp.c, concat.c, cplus-dem.c,
|
||||||
|
|
|
@ -154,10 +154,17 @@ CONFIGURED_OFILES = asprintf.o atexit.o basename.o bcmp.o bcopy.o \
|
||||||
vsprintf.o waitpid.o
|
vsprintf.o waitpid.o
|
||||||
|
|
||||||
$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
|
$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
|
||||||
-rm -f $(TARGETLIB)
|
-rm -f $(TARGETLIB) pic/$(TARGETLIB)
|
||||||
$(AR) $(AR_FLAGS) $(TARGETLIB) \
|
$(AR) $(AR_FLAGS) $(TARGETLIB) \
|
||||||
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
|
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
|
||||||
$(RANLIB) $(TARGETLIB)
|
$(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
|
info: libiberty.info info-subdir
|
||||||
install-info: install-info-subdir
|
install-info: install-info-subdir
|
||||||
|
|
Loading…
Add table
Reference in a new issue