From 2213e33dd2441eeba71dd6966d12494d64bfc168 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 31 Oct 2021 01:17:10 -0400 Subject: [PATCH] sim: common: merge multiple clean commands This provides a minor speedup when cleaning in a multi-target build. --- sim/common/Make-common.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index ffcbc7e3c05..cdad4a53d4b 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 -- 2.30.2