aboutsummaryrefslogtreecommitdiff
path: root/sim/or1k
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-10-31 00:42:35 -0400
committerMike Frysinger <vapier@gentoo.org>2021-10-31 00:46:28 -0400
commitb6143d31625b3869a6715c7479cf665272162b6f (patch)
tree184a9364dd09e60881ab953afcfc6f76c38e5756 /sim/or1k
parent4f2b181ecbcf53b75e0fb4dedaaf28499e0befb3 (diff)
downloadgdb-b6143d31625b3869a6715c7479cf665272162b6f.zip
gdb-b6143d31625b3869a6715c7479cf665272162b6f.tar.gz
gdb-b6143d31625b3869a6715c7479cf665272162b6f.tar.bz2
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/or1k')
-rw-r--r--sim/or1k/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/or1k/Makefile.in b/sim/or1k/Makefile.in
index 6d399de..e6fb632 100644
--- a/sim/or1k/Makefile.in
+++ b/sim/or1k/Makefile.in
@@ -77,7 +77,7 @@ stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile
-cpu or1k32bf -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 $@
or1k.o: or1k.c $(OR1K32BF_INCLUDE_DEPS)
$(COMPILE) $<
$(POSTCOMPILE)
@@ -112,7 +112,7 @@ stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(OR1K_CGEN_DEPS)
mach=or32,or32nd \
archfile=$(CPU_DIR)/or1k.cpu \
FLAGS="with-scache"
- touch $@
+ $(SILENCE) touch $@
$(srcdir)/arch.h $(srcdir)/arch.c $(srcdir)/cpuall.h: $(CGEN_MAINT) stamp-arch
@true
@@ -123,6 +123,6 @@ stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(OR1K_CGEN_DEPS)
archfile=$(CPU_DIR)/or1k.cpu \
FLAGS="with-scache" \
EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
- touch $@
+ $(SILENCE) touch $@
$(srcdir)/cpu.h $(srcdir)/cpu.c $(srcdir)/model.c $(srcdir)/sem.c $(srcdir)/sem-switch.c $(srcdir)/decode.c $(srcdir)/decode.h: $(CGEN_MAINT) stamp-cpu
@true