diff options
author | Chris Demetriou <cgd@google.com> | 2002-11-06 18:40:25 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@google.com> | 2002-11-06 18:40:25 +0000 |
commit | d690312feb7d8904dda3f3deda039ffa44046d76 (patch) | |
tree | 5682997a1b544a708f31a8d62f3c56a789de5ef4 /sim | |
parent | a700dc3bd7ca8596ca81df2d125123205c3b3559 (diff) | |
download | gdb-d690312feb7d8904dda3f3deda039ffa44046d76.zip gdb-d690312feb7d8904dda3f3deda039ffa44046d76.tar.gz gdb-d690312feb7d8904dda3f3deda039ffa44046d76.tar.bz2 |
2002-11-06 Richard Sandiford <rsandifo@redhat.com>
* Make-common.in (SIM_EXTRA_DISTCLEAN): New macro.
(distclean): Depend on it.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/Make-common.in | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index eb38a7b..ac0c4df 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2002-11-06 Richard Sandiford <rsandifo@redhat.com> + + * Make-common.in (SIM_EXTRA_DISTCLEAN): New macro. + (distclean): Depend on it. + 2002-10-14 Alan Modra <amodra@bigpond.net.au> * cgen-trace.h: Test __BFD_H_SEEN__ rather than BFD_VERSION. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 1f29f6a..e3e1239 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -134,6 +134,8 @@ SIM_EXTRA_ALL = SIM_EXTRA_INSTALL = # Dependency of `clean' to clean any extra files. SIM_EXTRA_CLEAN = +# Likewise `distclean' +SIM_EXTRA_DISTCLEAN = # Every time a new general purpose source file was added every target's # Makefile.in needed to be updated to include the file in SIM_OBJS. @@ -622,7 +624,7 @@ clean: $(SIM_EXTRA_CLEAN) fi rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c -distclean mostlyclean maintainer-clean realclean: clean +distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN) rm -f TAGS rm -f Makefile config.cache config.log config.status .gdbinit rm -f tconfig.h config.h stamp-h |