diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-11-03 23:09:24 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-11-03 23:09:24 +0000 |
commit | 3c1af24dd57ec984e227d867729e3494ffcdac9c (patch) | |
tree | 169333c6ef06decb02cdb5a47bf06a3485b8447a /ld | |
parent | 2cae23628a16c1a4bb0736966ffd20bc7b793301 (diff) | |
download | gdb-3c1af24dd57ec984e227d867729e3494ffcdac9c.zip gdb-3c1af24dd57ec984e227d867729e3494ffcdac9c.tar.gz gdb-3c1af24dd57ec984e227d867729e3494ffcdac9c.tar.bz2 |
* Makefile.in (distclean): Don't get rid of dvi or info files.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/Makefile.in | 13 |
2 files changed, 13 insertions, 4 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 50c16d3..01577c9 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Wed Nov 3 15:10:15 1993 Ken Raeburn (raeburn@rover.cygnus.com) + + * Makefile.in (distclean): Don't delete dvi or info files. + Wed Nov 3 12:07:39 1993 David J. Mackenzie (djm@thepub.cygnus.com) * ldlang.c (lang_add_output): Take new arg, FROM_SCRIPT. diff --git a/ld/Makefile.in b/ld/Makefile.in index 3eadf75..6b58ca3 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -168,7 +168,7 @@ LIBIBERTY = ../libiberty/libiberty.a ALL_EMULATIONS=em_lnk960.o em_sun3.o em_i386aout.o em_go32.o \ em_m88kbcs.o em_a29k.o em_news.o em_hp300bsd.o em_hp3hpux.o \ em_h8300.o em_h8300h.o em_ebmon29k.o em_sun4.o em_gld960.o \ - em_m68kcoff.o em_st2000.o em_sa29200.o \ + em_m68kcoff.o em_st2000.o em_sa29200.o em_i386mach.o \ em_vanilla.o em_i386coff.o em_z8ksim.o em_mipslit.o em_i386bsd.o \ em_mipsbig.o em_mipsbsd.o em_mipsidt.o em_vax.o em_h8500.o \ em_hppaosf.o em_mipsidtl.o em_sh.o em_elf_i386.o em_alpha.o \ @@ -281,6 +281,9 @@ em_hppaosf.c: $(srcdir)/emulparams/hppaosf.sh \ em_i386aout.c: $(srcdir)/emulparams/i386aout.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} i386aout +em_i386mach.c: $(srcdir)/emulparams/i386mach.sh \ + $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} + ${GENSCRIPTS} i386mach em_ebmon29k.c: $(srcdir)/emulparams/ebmon29k.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/ebmon29k.sc ${GEN_DEPENDS} ${GENSCRIPTS} ebmon29k @@ -685,9 +688,11 @@ mostlyclean: -rm -f ld ld1 ld2 ld3 *.o y.output cdtest cdtest.out clean: mostlyclean -rm -f $(LD_PROG) -distclean: clean - -rm -fr Makefile config.status TAGS sysdep.h ldscripts site.exp -realclean: distclean +distclean: + -rm -fr Makefile config.status TAGS sysdep.h ldscripts site.exp \ + $(STAGESTUFF) ld.?? ld.??s ld.toc ld.aux ld.log ldlex.[qp] \ + $(LD_PROG) ld ld1 ld2 ld3 *.o y.output cdtest cdtest.out +realclean: clean distclean -rm -f $(LDDISTSTUFF) lintlog:$(SOURCES) Makefile |