From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id X2LAEsqwmWoL+iUAWB0awg (envelope-from ) for ; Thu, 03 Sep 2026 13:39:22 -0400 Received: by simark.ca (Postfix, from userid 112) id EAF6E1E167; Thu, 03 Sep 2026 13:39:21 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-5.3 required=5.0 tests=ARC_SIGNED,ARC_VALID,BAYES_00, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED autolearn=ham autolearn_force=no version=4.0.1 Received: from vm01.sourceware.org (vm01.sourceware.org [IPv6:2620:52:6:3111::32]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id CCB911E033 for ; Thu, 03 Sep 2026 13:39:20 -0400 (EDT) Received: from vm01.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 46CF84BB1C29 for ; Thu, 3 Sep 2026 17:39:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 46CF84BB1C29 Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id CE7F54B9DB51 for ; Thu, 3 Sep 2026 17:38:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org CE7F54B9DB51 Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=efficios.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=efficios.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org CE7F54B9DB51 Authentication-Results: sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1788457137; cv=none; b=OgmE2NgVK0CYv2MX+7eZxYk60+GrQlwrA2M+rzS2wC3uQwQOhxkEIDKh5kSAj+PZZznL5gx2WKK0y3t6NO5PNWy3cHf/ZZK58sk+qquFyLz8n7U38JfXpU+SyCpQ7/YADfGq9l+0u+KXM1WXEx1xf0g47Vd36W/U4hm2r/QoaME= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1788457137; c=relaxed/simple; bh=gqE8BmUS4w7TtPWQvlRCyh/DBfDb86KQuUsKG1uNXB8=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=i71wBkB3MQFmlTUBg31A6PDI/S74PXRkn3BR5zz5a4blMeChRuZudsz37Ucx1wwS6iWBXYIImgked44IJkWG04DmT3+8vAxk3xZJILqSrpDP8ICPpCXrX/HGlFZzPLzwx000yKXJPoKsuAEZbIXTi38YmXeuhP3XgYfx3Pl8jnk= ARC-Authentication-Results: i=1; sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CE7F54B9DB51 Received: by simark.ca (Postfix) id C90271E0A3; Thu, 03 Sep 2026 13:38:55 -0400 (EDT) From: Simon Marchi To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: [PATCH 1/4] gdb: remove gcore, gstack and gdb-add-index in the clean target Date: Thu, 3 Sep 2026 13:37:02 -0400 Message-ID: <20260903173854.416876-2-simon.marchi@efficios.com> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260903173854.416876-1-simon.marchi@efficios.com> References: <20260903173854.416876-1-simon.marchi@efficios.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces~public-inbox=simark.ca@sourceware.org Those are created by "make", so remove them in the clean target. On the other hand, gcore.in and gdb-add-index.in are created at configure time, so delete them in the distclean target (like gstack.in). Change-Id: Ie5557b4e1039641dd0ff837788ff57e0e3bb30de --- gdb/Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 767f92808644..6fd528c71c5f 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2408,6 +2408,7 @@ clean mostlyclean: $(CONFIG_CLEAN) rm -f gdb$(EXEEXT) core make.log rm -f gdb[0-9]$(EXEEXT) rm -f xml-builtin.c stamp-xml + rm -f gcore gstack gdb-add-index rm -f $(addsuffix /*.o,$(CONFIG_SRC_SUBDIR)) rm -f $(addsuffix /*,$(ALL_DEPDIRS)) for d in $(ALL_DEPDIRS); do \ @@ -2420,7 +2421,8 @@ clean mostlyclean: $(CONFIG_CLEAN) # functionality described is if the distributed files are unmodified. distclean: clean @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do - rm -f nm.h config.status config.h stamp-h b jit-reader.h gcore gstack gstack.in stamp-nmh + rm -f nm.h config.status config.h stamp-h b jit-reader.h stamp-nmh + rm -f gcore.in gstack.in gdb-add-index.in rm -f gdb-gdb.gdb rm -f y.output yacc.acts yacc.tmp y.tab.h rm -f config.log config.cache -- 2.55.0