diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 01:17:10 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 01:17:10 -0400 |
commit | 2213e33dd2441eeba71dd6966d12494d64bfc168 (patch) | |
tree | 576a29bded136312937f4adcfe6af9ef105591e0 /sim | |
parent | b46621118d69b200efc806b495ef96bbfc595bca (diff) | |
download | gdb-2213e33dd2441eeba71dd6966d12494d64bfc168.zip gdb-2213e33dd2441eeba71dd6966d12494d64bfc168.tar.gz gdb-2213e33dd2441eeba71dd6966d12494d64bfc168.tar.bz2 |
sim: common: merge multiple clean commands
This provides a minor speedup when cleaning in a multi-target build.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/Make-common.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index ffcbc7e..cdad4a5 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -513,12 +513,12 @@ TAGS: force *.[ch] ../common/*.[ch] mostlyclean clean: $(SIM_EXTRA_CLEAN) - rm -f *.[oa] *~ core - rm -f run$(EXEEXT) libsim.a - rm -f hw-config.h stamp-hw - rm -f modules.c stamp-modules - rm -f gentmap targ-map.c targ-vals.h stamp-tvals - rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c + rm -f *.[oa] *~ core \ + run$(EXEEXT) libsim.a \ + hw-config.h stamp-hw \ + modules.c stamp-modules \ + gentmap targ-map.c targ-vals.h stamp-tvals \ + tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c distclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN) rm -f TAGS |