diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-11-04 01:07:53 +0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-11-04 01:39:05 +0700 |
commit | 8183b5f53f7a2d50085f6584d1bd846aff6b5dbf (patch) | |
tree | ddb17133f19b9da8eeb31733617b6ae60c4110a6 /sim/m32c | |
parent | ccc4ba59596635f08a6f96a12c72462445447d70 (diff) | |
download | gdb-8183b5f53f7a2d50085f6584d1bd846aff6b5dbf.zip gdb-8183b5f53f7a2d50085f6584d1bd846aff6b5dbf.tar.gz gdb-8183b5f53f7a2d50085f6584d1bd846aff6b5dbf.tar.bz2 |
sim: m32c/rx: drop useless $(ENDLIST)
This is used to allow for dangling \ in object lists, but these are the
only ports that do it, and it isn't really necessary. Punt it to keep
the various makefiles harmonized.
Diffstat (limited to 'sim/m32c')
-rw-r--r-- | sim/m32c/Makefile.in | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sim/m32c/Makefile.in b/sim/m32c/Makefile.in index 2436eb9..ea43205 100644 --- a/sim/m32c/Makefile.in +++ b/sim/m32c/Makefile.in @@ -22,9 +22,7 @@ SIM_EXTRA_CFLAGS = -DTIMER_A -SIM_RUN_OBJS = \ - main.o \ - $(ENDLIST) +SIM_RUN_OBJS = main.o SIM_OBJS = \ gdb-if.o \ @@ -37,7 +35,6 @@ SIM_OBJS = \ m32c.o \ srcdest.o \ syscalls.o \ - trace.o \ - $(ENDLIST) + trace.o ## COMMON_POST_CONFIG_FRAG |