From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id BCFFE3858D28 for ; Thu, 3 Nov 2022 18:39:27 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BCFFE3858D28 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 5B677341242; Thu, 3 Nov 2022 18:39:27 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: m32c/rx: drop useless $(ENDLIST) Date: Fri, 4 Nov 2022 01:39:22 +0700 Message-Id: <20221103183922.30784-1-vapier@gentoo.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: 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. --- 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 2436eb940f45..ea4320540a9c 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 diff --git a/sim/rx/Makefile.in b/sim/rx/Makefile.in index c845fceb2fc0..4e1f2acf2143 100644 --- a/sim/rx/Makefile.in +++ b/sim/rx/Makefile.in @@ -22,9 +22,7 @@ SIM_EXTRA_CFLAGS = @SIM_RX_CYCLE_ACCURATE_FLAGS@ -SIM_RUN_OBJS = \ - main.o \ - $(ENDLIST) +SIM_RUN_OBJS = main.o SIM_OBJS = \ fpu.o \ @@ -36,8 +34,7 @@ SIM_OBJS = \ syscalls.o \ trace.o \ gdb-if.o \ - err.o \ - $(ENDLIST) + err.o ## COMMON_POST_CONFIG_FRAG -- 2.38.1