diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-03-28 22:17:43 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-03-28 22:17:43 +0000 |
commit | 437a04cb407081a2c969c723572fe513a6e834bf (patch) | |
tree | 429922d06f510a7a72beee3f39eae0d6105840c1 /ld | |
parent | 26c61946fb633ecbe25126dfb5c600f09ccdc487 (diff) | |
download | gdb-437a04cb407081a2c969c723572fe513a6e834bf.zip gdb-437a04cb407081a2c969c723572fe513a6e834bf.tar.gz gdb-437a04cb407081a2c969c723572fe513a6e834bf.tar.bz2 |
* Makefile.am (MOSTLYCLEANFILES): Remove tmpdir.
(mostlyclean-local): New target to remove tmpdir.
* Makefile.in: Rebuild.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/Makefile.am | 4 | ||||
-rw-r--r-- | ld/Makefile.in | 7 |
3 files changed, 12 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index c5dea9c..3e9fcb3 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,9 @@ Sat Mar 28 16:48:19 1998 Ian Lance Taylor <ian@cygnus.com> + * Makefile.am (MOSTLYCLEANFILES): Remove tmpdir. + (mostlyclean-local): New target to remove tmpdir. + * Makefile.in: Rebuild. + Fix some gcc -Wall warnings: * ldcref.c (output_cref): Add casts to avoid warnings. * ldfile.c (ldfile_add_arch): Likewise. diff --git a/ld/Makefile.am b/ld/Makefile.am index 9f7f879..3a4d6a5 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -675,7 +675,9 @@ bfdsumm.texi: Makefile Makefile: configure.host configure.tgt MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \ - ldemul-list.h tmpdir crtbegin.o crtend.o + ldemul-list.h crtbegin.o crtend.o +mostlyclean-local: + -rm -rf tmpdir CLEANFILES = dep.sed .dep .dep1 bfdsumm.texi .PHONY: install-exec-local install-data-local diff --git a/ld/Makefile.in b/ld/Makefile.in index ab70896..719b22b 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -306,7 +306,7 @@ ld_new_LDADD = $(EMULATION_OFILES) $(BFDLIB) $(LIBIBERTY) TESTBFDLIB = ../bfd/.libs/libbfd.a MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \ - ldemul-list.h tmpdir crtbegin.o crtend.o + ldemul-list.h crtbegin.o crtend.o CLEANFILES = dep.sed .dep .dep1 bfdsumm.texi # Stuff that should be included in a distribution. The diststuff @@ -696,7 +696,8 @@ maintainer-clean-generic: -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) mostlyclean: mostlyclean-hdr mostlyclean-noinstPROGRAMS \ mostlyclean-compile mostlyclean-libtool \ - mostlyclean-aminfo mostlyclean-tags mostlyclean-generic + mostlyclean-aminfo mostlyclean-tags mostlyclean-generic \ + mostlyclean-local clean: clean-hdr clean-noinstPROGRAMS clean-compile clean-libtool \ clean-aminfo clean-tags clean-generic mostlyclean @@ -1174,6 +1175,8 @@ bfdsumm.texi: Makefile # We want to reconfigure if configure.host or configure.tgt changes. Makefile: configure.host configure.tgt +mostlyclean-local: + -rm -rf tmpdir .PHONY: install-exec-local install-data-local |