diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 00:42:35 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 00:46:28 -0400 |
commit | b6143d31625b3869a6715c7479cf665272162b6f (patch) | |
tree | 184a9364dd09e60881ab953afcfc6f76c38e5756 /sim/iq2000 | |
parent | 4f2b181ecbcf53b75e0fb4dedaaf28499e0befb3 (diff) | |
download | binutils-gdb-b6143d31625b3869a6715c7479cf665272162b6f.tar.gz |
sim: silence stamp touch rules
We pretty much never care about these stamp touches, so silence them.
Also switch to using $@ when it makes sense.
Diffstat (limited to 'sim/iq2000')
-rw-r--r-- | sim/iq2000/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/iq2000/Makefile.in b/sim/iq2000/Makefile.in index af0b918b118..bbc659049ae 100644 --- a/sim/iq2000/Makefile.in +++ b/sim/iq2000/Makefile.in @@ -62,7 +62,7 @@ stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile -cpu iq2000bf -infile $(srcdir)/mloop.in $(SILENCE) $(SHELL) $(srcroot)/move-if-change eng.hin eng.h $(SILENCE) $(SHELL) $(srcroot)/move-if-change mloop.cin mloop.c - touch stamp-mloop + $(SILENCE) touch $@ iq2000-clean: rm -f mloop.c eng.h stamp-mloop @@ -73,7 +73,7 @@ stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(CPU_DIR)/iq2000.cpu Makefile $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=iq2000 \ archfile=$(CPU_DIR)/iq2000.cpu \ FLAGS="with-scache with-profile=fn" - touch stamp-arch + $(SILENCE) touch $@ arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch @true @@ -83,6 +83,6 @@ stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CPU_DIR)/iq2000 archfile=$(CPU_DIR)/iq2000.cpu \ FLAGS="with-scache with-profile=fn" \ EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)" - touch stamp-cpu + $(SILENCE) touch $@ cpu.h sem.c sem-switch.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu @true |