From patchwork Mon Nov 23 04:53:57 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 11924369 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-17.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0D22BC2D0E4 for ; Mon, 23 Nov 2020 04:55:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B1FC7208B8 for ; Mon, 23 Nov 2020 04:55:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nifty.com header.i=@nifty.com header.b="PxmMBS8t" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727056AbgKWEzT (ORCPT ); Sun, 22 Nov 2020 23:55:19 -0500 Received: from conuserg-08.nifty.com ([210.131.2.75]:27300 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725831AbgKWEzT (ORCPT ); Sun, 22 Nov 2020 23:55:19 -0500 Received: from grover.flets-west.jp (softbank126090211135.bbtec.net [126.90.211.135]) (authenticated) by conuserg-08.nifty.com with ESMTP id 0AN4sGHd016676; Mon, 23 Nov 2020 13:54:16 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com 0AN4sGHd016676 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1606107257; bh=/o5wTvKOLZQLtQV9dPLOE9QXEXpoApG//zQm3uD9KRU=; h=From:To:Cc:Subject:Date:From; b=PxmMBS8tngOoTqQDbyGX9XiC/WpTr/hotBhOknWjj2HpKnns7915HCM8+lITRFnW8 fOSXycBYwvRwTIqy0D+PjyPg1ADqNzPL5qVLPiE8GG5Hb4eY24mKbaZfUzzzJ1FqH3 F2Pm0CbREAu3pSTGPPORPU/rvmX6CnPh1I+yoh4v/qtlp8VICn407Oq2RUjwFIq0H9 U4tTVuQtnBgVah5ddX3RQBybmphpOPciTPt3Z+46PF9Lxi8mrQx+FX2V3IjwT59XUX gDKPpatCsauQEoPM1SAf2bqnCIV2PZhIIybV7UvM5/6YTp9PGl/517iBnhgnaCKxO3 x7sgmljLQZhxQ== X-Nifty-SrcIP: [126.90.211.135] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Randy Dunlap , Masahiro Yamada , Jonathan Corbet , Michal Marek , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/7] kbuild: doc: update the description about kbuild Makefiles Date: Mon, 23 Nov 2020 13:53:57 +0900 Message-Id: <20201123045403.63402-1-masahiroy@kernel.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org This line was written in 2003. Now we have much more Makefiles. The number of Makefiles is not important. The point is we have a Makefile in (almost) every directory. Signed-off-by: Masahiro Yamada --- Documentation/kbuild/makefiles.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/kbuild/makefiles.rst b/Documentation/kbuild/makefiles.rst index 0d5dd5413af0..a7b874097a91 100644 --- a/Documentation/kbuild/makefiles.rst +++ b/Documentation/kbuild/makefiles.rst @@ -71,7 +71,7 @@ The Makefiles have five parts:: .config the kernel configuration file. arch/$(ARCH)/Makefile the arch Makefile. scripts/Makefile.* common rules etc. for all kbuild Makefiles. - kbuild Makefiles there are about 500 of these. + kbuild Makefiles exist in every subdirectory The top Makefile reads the .config file, which comes from the kernel configuration process.