Commit ae2040df by Eli Zaretskii Committed by DJ Delorie

Makefile.in (needed-list): Target removed (not used in GCC 3.0 and later).

* Makefile.in (needed-list): Target removed (not used in GCC
3.0 and later).  All references deleted.
(mostlyclean): Remove references to needed.awk and needed2.awk.

From-SVN: r146793
parent be537af6
2009-04-25 Eli Zaretskii <eliz@gnu.org>
* Makefile.in (needed-list): Target removed (not used in GCC
3.0 and later). All references deleted.
(mostlyclean): Remove references to needed.awk and needed2.awk.
2009-04-14 Eli Zaretskii <eliz@gnu.org> 2009-04-14 Eli Zaretskii <eliz@gnu.org>
* configure.ac (setobjs, msdosdjgpp): Move a-priori setting of * configure.ac (setobjs, msdosdjgpp): Move a-priori setting of
......
...@@ -100,7 +100,7 @@ FLAGS_TO_PASS = \ ...@@ -100,7 +100,7 @@ FLAGS_TO_PASS = \
SUBDIRS = testsuite SUBDIRS = testsuite
# FIXME: add @BUILD_INFO@ once we're sure it works for everyone. # FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir all: stamp-picdir $(TARGETLIB) required-list all-subdir
@: $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all @: $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
.PHONY: check installcheck .PHONY: check installcheck
...@@ -377,22 +377,6 @@ install_to_tooldir: all ...@@ -377,22 +377,6 @@ install_to_tooldir: all
mv -f $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB) mv -f $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)
@$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
# needed-list is used by libstdc++. NEEDED is the list of functions
# to include there. Do not add anything LGPL to this list; libstdc++
# can't use anything encumbering.
NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
vfork waitpid bcmp bcopy bzero
needed-list: Makefile
rm -f needed-list; touch needed-list; \
for f in $(NEEDED); do \
for g in $(LIBOBJS) $(EXTRA_OFILES); do \
case "$$g" in \
*$$f*) echo $$g >> needed-list ;; \
esac; \
done; \
done
# required-list was used when building a shared bfd/opcodes/libiberty # required-list was used when building a shared bfd/opcodes/libiberty
# library. I don't know if it used by anything currently. # library. I don't know if it used by anything currently.
required-list: Makefile required-list: Makefile
...@@ -440,8 +424,8 @@ maint-deps : ...@@ -440,8 +424,8 @@ maint-deps :
# multiple times, hence our explicit recursion with an empty SUBDIRS. # multiple times, hence our explicit recursion with an empty SUBDIRS.
mostlyclean: mostlyclean-subdir mostlyclean: mostlyclean-subdir
-rm -rf *.o pic core errs \#* *.E a.out -rm -rf *.o pic core errs \#* *.E a.out
-rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-* -rm -f errors dummy config.h stamp-*
-rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir -rm -f $(CONFIG_H) stamp-picdir
-rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky -rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky
-rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg -rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg
-rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr -rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr
......
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