diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-12-25 14:23:24 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-12-25 14:24:05 -0500 |
commit | 2a005e97c913b205a7531a99970257c82397c359 (patch) | |
tree | 091309108c43f51a95af12538915f76d887d0170 | |
parent | edda128da79dc50e6932355e6fd73516a03dd186 (diff) | |
download | gdb-2a005e97c913b205a7531a99970257c82397c359.zip gdb-2a005e97c913b205a7531a99970257c82397c359.tar.gz gdb-2a005e97c913b205a7531a99970257c82397c359.tar.bz2 |
sim: build: drop support for subdir distclean
All ports that need to clean things up at distclean time have moved
to the top-level build, so we can drop support for this hook.
-rw-r--r-- | sim/common/Make-common.in | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 7b1caa0..1e1ea0e 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -102,8 +102,6 @@ SIM_EXTRA_LIBS = SIM_RUN_OBJS = nrun.o # 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. @@ -276,9 +274,8 @@ mostlyclean clean: $(SIM_EXTRA_CLEAN) modules.c stamp-modules \ tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c -distclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN) - rm -f TAGS - rm -f Makefile config.cache config.log config.status +distclean maintainer-clean realclean: clean + rm -f TAGS Makefile .c.o: $(COMPILE) $< |