From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 6BFC53858412; Thu, 3 Nov 2022 18:39:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6BFC53858412 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1667500792; bh=fnfyeKrWgk5c+RFeRTAda+NTdnsHCDnZc5Z99czlM0Y=; h=From:To:Subject:Date:From; b=K5jzZCcsnH2synlhUoMdRbO2DVPtkwtoK6ZeYmJ2OS2I39FtxjL+F4mgC6ZYoHeGg tqfsxDMtOIUIDnHTDErcx9sr1n1LduFg/mXTYO29oDUEOO+9eAcmHMB8AYWTCT3cAD hD5cm//LQXix0no8uJS8Ni8BfJDtlwdPT1x0LfgQ= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: gdb-cvs@sourceware.org Subject: [binutils-gdb] sim: m32c/rx: drop useless $(ENDLIST) X-Act-Checkin: binutils-gdb X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: ccc4ba59596635f08a6f96a12c72462445447d70 X-Git-Newrev: 8183b5f53f7a2d50085f6584d1bd846aff6b5dbf Message-Id: <20221103183952.6BFC53858412@sourceware.org> Date: Thu, 3 Nov 2022 18:39:52 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D8183b5f53f7a= 2d50085f6584d1bd846aff6b5dbf commit 8183b5f53f7a2d50085f6584d1bd846aff6b5dbf Author: Mike Frysinger Date: Fri Nov 4 01:07:53 2022 +0700 sim: m32c/rx: drop useless $(ENDLIST) =20 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. Diff: --- sim/m32c/Makefile.in | 7 ++----- sim/rx/Makefile.in | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/sim/m32c/Makefile.in b/sim/m32c/Makefile.in index 2436eb940f4..ea4320540a9 100644 --- a/sim/m32c/Makefile.in +++ b/sim/m32c/Makefile.in @@ -22,9 +22,7 @@ =20 SIM_EXTRA_CFLAGS =3D -DTIMER_A =20 -SIM_RUN_OBJS =3D \ - main.o \ - $(ENDLIST) +SIM_RUN_OBJS =3D main.o =20 SIM_OBJS =3D \ gdb-if.o \ @@ -37,7 +35,6 @@ SIM_OBJS =3D \ m32c.o \ srcdest.o \ syscalls.o \ - trace.o \ - $(ENDLIST) + trace.o =20 ## COMMON_POST_CONFIG_FRAG diff --git a/sim/rx/Makefile.in b/sim/rx/Makefile.in index c845fceb2fc..4e1f2acf214 100644 --- a/sim/rx/Makefile.in +++ b/sim/rx/Makefile.in @@ -22,9 +22,7 @@ =20 SIM_EXTRA_CFLAGS =3D @SIM_RX_CYCLE_ACCURATE_FLAGS@ =20 -SIM_RUN_OBJS =3D \ - main.o \ - $(ENDLIST) +SIM_RUN_OBJS =3D main.o =20 SIM_OBJS =3D \ fpu.o \ @@ -36,8 +34,7 @@ SIM_OBJS =3D \ syscalls.o \ trace.o \ gdb-if.o \ - err.o \ - $(ENDLIST) + err.o =20 ## COMMON_POST_CONFIG_FRAG