diff options
-rw-r--r-- | binutils/ChangeLog | 2 | ||||
-rw-r--r-- | binutils/Makefile.in | 4 | ||||
-rw-r--r-- | ld/ChangeLog | 2 | ||||
-rw-r--r-- | ld/Makefile.in | 4 |
4 files changed, 10 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4379edb..0623bf6 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,7 @@ Tue Sep 12 12:37:39 1995 Ian Lance Taylor <ian@cygnus.com> + * Makefile.in (maintainer-clean): New target. + * ar.c (replace_members): Don't call write_archive if nothing changed. diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 4b9443e..ad59970 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -555,7 +555,9 @@ distclean: -rm -f Makefile config.status *.o *~ \#* core y.* \ binutils.?? binutils.??s binutils.aux binutils.log binutils.toc -rm -f $(PROGS) underscore.c config.h stamp-h config.cache config.log -realclean: clean distclean +maintainer-clean realclean: clean distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." -rm -f $(DISTSTUFF) *.info TAGS etags tags: TAGS diff --git a/ld/ChangeLog b/ld/ChangeLog index 62b890e..880e11f 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -6,6 +6,8 @@ Thu Sep 12 12:50:49 1995 steve chamberlain <sac@slash.cygnus.com> Tue Sep 12 12:24:17 1995 Ian Lance Taylor <ian@cygnus.com> + * Makefile.in (maintainer-clean): New target. + * ldmain.c (struct warning_callback_info): Define. (warning_callback): Add new parameter symbol. Call warning_find_reloc to try to find the section and VMA. diff --git a/ld/Makefile.in b/ld/Makefile.in index 3289af9..33f055b 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -768,7 +768,9 @@ distclean: clean -rm -f Makefile config.status TAGS site.exp site.bak config.cache -rm -f config.h stamp-h -rm -rf ldscripts -realclean: clean distclean +maintainer-clean realclean: clean distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." -rm -f $(LDDISTSTUFF) .PHONY: diststuff mostlyclean clean distclean realclean |