diff options
author | Tom Tromey <tom@tromey.com> | 2023-08-19 10:53:53 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-08-19 10:53:53 -0600 |
commit | f03d5c972e1b74c53c601f18a6ec5962879336cc (patch) | |
tree | 1b78f62144454a7052fff709bc4956956ae7b8af /sim/cris | |
parent | 9d4f36166d626554adbecbc5bc0f1f4791354e03 (diff) | |
download | gdb-f03d5c972e1b74c53c601f18a6ec5962879336cc.zip gdb-f03d5c972e1b74c53c601f18a6ec5962879336cc.tar.gz gdb-f03d5c972e1b74c53c601f18a6ec5962879336cc.tar.bz2 |
Remove extraneous '%' from sim/cris/local.mk
I saw this warning from make:
Makefile:5043: *** mixed implicit and normal rules: deprecated syntax
I believe this snuck in by error with the recent cgen-related changes.
This patch removes the stray '%' and rebuilds the Makefile.in. I'm
checking this in.
Diffstat (limited to 'sim/cris')
-rw-r--r-- | sim/cris/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/cris/local.mk b/sim/cris/local.mk index 2546ed5..12fa86b 100644 --- a/sim/cris/local.mk +++ b/sim/cris/local.mk @@ -125,4 +125,4 @@ $(srcdir)/%D%/cpuv10.h $(srcdir)/%D%/cpuv10.c $(srcdir)/%D%/semcrisv10f-switch.c %D%/cgen-cpu-decode-v32f: $(AM_V_GEN)cpu=crisv32f mach=crisv32 SUFFIX=v32 FLAGS="with-scache with-profile=fn" EXTRAFILES="$(CGEN_CPU_SEMSW)"; $(CGEN_GEN_CPU_DECODE) $(AM_V_at)$(SHELL) $(srcroot)/move-if-change $(srcdir)/%D%/semv32-switch.c $(srcdir)/%D%/semcrisv32f-switch.c -$(srcdir)/%D%/cpuv32.h $(srcdir)/%D%/cpuv32.c $(srcdir)/%D%/semcrisv32f-switch.c %$(srcdir)/%D%/modelv32.c $(srcdir)/%D%/decodev32.c $(srcdir)/%D%/decodev32.h: @CGEN_MAINT@ %D%/cgen-cpu-decode-v32f +$(srcdir)/%D%/cpuv32.h $(srcdir)/%D%/cpuv32.c $(srcdir)/%D%/semcrisv32f-switch.c $(srcdir)/%D%/modelv32.c $(srcdir)/%D%/decodev32.c $(srcdir)/%D%/decodev32.h: @CGEN_MAINT@ %D%/cgen-cpu-decode-v32f |