From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED, URIBL_DBL_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1702986880; bh=UYvkrqqBptkLhObzzTRNA92l4+e8xpKFEIQytDOoSf4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Nd6+sqEwoXp9fQVj+RhVs4s0o+fOr+NIsl6T6rapLQOS8ojLirAKXetrYb1V+5Qxa QFWLda6BA+Wlcxxb59cfCNzNXGDrogaEc2ZLXXxuVdG1mdbQALlvLytb7KduhAQPI+ BerSYU5rZKT9dkL8F1fAIZFHFXomhNAwutsUxkEXL3sRUc0WD5kcRN3+Utf7F8H9pe JvlHGTj1hcMQopKUH/Af3/l3RDgMw/9T8BfbuSQNkIetULBRLF3h+UyXS1I3Y6RmiE 582h8MejxfWH7GGOqmo0iBOI/VnQsWQ2tEV+RGkLZtUNEjDZE1/Q/bJbNJJzjFP/o9 dZ8LAmZTb8hzQ== Received: from localhost.localdomain (unknown [182.253.230.19]) by gnuweeb.org (Postfix) with ESMTPSA id B013524C191; Tue, 19 Dec 2023 18:54:37 +0700 (WIB) From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Alviro Iskandar Setiawan , Michael William Jonathan , io-uring Mailing List , Linux Kernel Mailing List , GNU/Weeb Mailing List , Stefan Metzmacher Subject: [PATCH liburing v1 1/2] Makefile: Remove the `partcheck` target Date: Tue, 19 Dec 2023 18:54:22 +0700 Message-Id: <20231219115423.222134-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231219115423.222134-1-ammarfaizi2@gnuweeb.org> References: <20231219115423.222134-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Remove the `partcheck` target because it has remained unused for nearly four years, and the associated TODO comment has not been actioned since its introduction in commit: b57dbc2d308a849 ("configure/Makefile: introduce libdevdir defaults to $(libdir)") Cc: Stefan Metzmacher Signed-off-by: Ammar Faizi --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 73d021c2e46255bf..7326e644e3a18bdb 100644 --- a/Makefile +++ b/Makefile @@ -14,9 +14,6 @@ all: .PHONY: all install default clean test .PHONY: FORCE cscope -partcheck: all - @echo "make partcheck => TODO add tests with out kernel support" - runtests: all @$(MAKE) -C test runtests runtests-loop: all -- Ammar Faizi