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/bpf | |
parent | 4f2b181ecbcf53b75e0fb4dedaaf28499e0befb3 (diff) | |
download | gdb-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/bpf')
-rw-r--r-- | sim/bpf/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sim/bpf/Makefile.in b/sim/bpf/Makefile.in index c33096b..e50e5c5 100644 --- a/sim/bpf/Makefile.in +++ b/sim/bpf/Makefile.in @@ -89,7 +89,7 @@ stamp-arch: $(CGEN_COMMON_DEPS) $(CGEN_ARCH_SCM) mach=bpf cpu=bpfbf \ archfile=$(srcdir)/../../cpu/bpf.cpu \ FLAGS="with-scache" - touch $@ + $(SILENCE) touch $@ $(srcdir)/arch.h $(srcdir)/arch.c $(srcdir)/cpuall.h: $(CGEN_MAINT) stamp-arch @true @@ -99,7 +99,7 @@ stamp-cpu: $(CGEN_COMMON_DEPS) $(CGEN_CPU_SCM) archfile=$(srcdir)/../../cpu/bpf.cpu \ FLAGS="with-multiple-isa with-scache" rm -f $(srcdir)/model.c - touch $@ + $(SILENCE) touch $@ $(srcdir)/cpu.h $(srcdir)/cpu.c $(srcdir)/model.c: $(CGEN_MAINT) stamp-cpu @true @@ -121,7 +121,7 @@ stamp-defs-le: $(CGEN_COMMON_DEPS) $(CGEN_CPU_SCM) archfile=$(srcdir)/../../cpu/bpf.cpu \ FLAGS="with-scache" \ SUFFIX="-le" - touch $@ + $(SILENCE) touch $@ $(srcdir)/defs-le.h: $(CGEN_MAINT) stamp-defs-le @true @@ -132,7 +132,7 @@ stamp-defs-be: $(CGEN_COMMON_DEPS) $(CGEN_CPU_SCM) archfile=$(srcdir)/../../cpu/bpf.cpu \ FLAGS="with-scache" \ SUFFIX="-be" - touch $@ + $(SILENCE) touch $@ $(srcdir)/defs-be.h: $(CGEN_MAINT) stamp-defs-be @true @@ -143,7 +143,7 @@ stamp-decode-le: $(CGEN_COMMON_DEPS) $(CGEN_CPU_SCM) $(GEN_DECODE_SCM) FLAGS="with-scache" \ SUFFIX="-le" \ EXTRAFILES="$(CGEN_CPU_SEM)" - touch $@ + $(SILENCE) touch $@ $(srcdir)/sem-le.c $(srcdir)/decode-le.c $(srcdir)/decode-le.h: \ $(CGEN_MAINT) stamp-decode-le @true @@ -156,7 +156,7 @@ stamp-decode-be: $(CGEN_COMMON_DEPS) $(CGEN_CPU_SCM) $(GEN_DECODE_SCM) FLAGS="with-scache" \ SUFFIX="-be" \ EXTRAFILES="$(CGEN_CPU_SEM)" - touch $@ + $(SILENCE) touch $@ $(srcdir)/sem-be.c $(srcdir)/decode-be.c $(srcdir)/decode-be.h: \ $(CGEN_MAINT) stamp-decode-be @true @@ -171,7 +171,7 @@ stamp-mloop-le: $(srcdir)/../common/genmloop.sh mloop.in Makefile -infile $(srcdir)/mloop.in -outfile-suffix -le $(SILENCE) $(SHELL) $(srcroot)/move-if-change eng-le.hin eng-le.h $(SILENCE) $(SHELL) $(srcroot)/move-if-change mloop-le.cin mloop-le.c - touch $@ + $(SILENCE) touch $@ mloop-le.c eng-le.h: stamp-mloop-le @true @@ -181,7 +181,7 @@ stamp-mloop-be: $(srcdir)/../common/genmloop.sh mloop.in Makefile -infile $(srcdir)/mloop.in -outfile-suffix -be $(SILENCE) $(SHELL) $(srcroot)/move-if-change eng-be.hin eng-be.h $(SILENCE) $(SHELL) $(srcroot)/move-if-change mloop-be.cin mloop-be.c - touch $@ + $(SILENCE) touch $@ mloop-be.c eng-be.h: stamp-mloop-be @true |