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/frv/Makefile.in | |
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/frv/Makefile.in')
-rw-r--r-- | sim/frv/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/frv/Makefile.in b/sim/frv/Makefile.in index fd8df13..640da02 100644 --- a/sim/frv/Makefile.in +++ b/sim/frv/Makefile.in @@ -62,7 +62,7 @@ stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile -cpu frvbf -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 $@ frv-clean: rm -f mloop.c eng.h stamp-mloop @@ -73,7 +73,7 @@ stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(srcdir)/../../cpu/frv.cpu $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=all \ archfile=$(srcdir)/../../cpu/frv.cpu \ FLAGS="with-scache" - 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) $(srcdir)/../../c archfile=$(srcdir)/../../cpu/frv.cpu \ FLAGS="with-scache with-profile=fn with-generic-write with-parallel-only" \ EXTRAFILES="$(CGEN_CPU_SEM)" - touch stamp-cpu + $(SILENCE) touch $@ cpu.h sem.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu # @true |