From patchwork Wed Aug 15 00:36:49 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10566209 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 7C67217E1 for ; Wed, 15 Aug 2018 00:37:02 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6D56828C1F for ; Wed, 15 Aug 2018 00:37:02 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 60B592A1DC; Wed, 15 Aug 2018 00:37:02 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E708528C1F for ; Wed, 15 Aug 2018 00:37:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728453AbeHOD0h (ORCPT ); Tue, 14 Aug 2018 23:26:37 -0400 Received: from merlin.infradead.org ([205.233.59.134]:53922 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726044AbeHOD0h (ORCPT ); Tue, 14 Aug 2018 23:26:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Date:Message-ID:Subject:From:To:Sender:Reply-To:Cc:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=WbXiojAcYHcwBfBc5z1U42Z5iTTFVhLL88thTrgsEnc=; b=JrU2cT8QvBKGHthr8FJ6/3rY46 xYXY6lh7L2gdQQ5l8ECg9NsmN1W0rMXMyb9t+rrEB9MraXoMU08LHoj7Knwg3eMZnjDVSxOQ1m5XQ WBTTyxV1qEM0JblMMGMHAJAf+HjfIAUYMiz+arvY6SNDb8P0ykLVDgGsfEqPU/eEFvn0SnaVuXg4l JUwUQLv/B2z0dam1KqjtyXh+f3JHZ4BwJC2sY2H5f8oli39YcWtLwG9Ln164MIp3DEtU70arkF0Zq vZPwtCB8DfQG9cZaRO/c2OuMnyBT2NUFqjrV91J5HxFjZJOZHGRKHzLlYtcv7JCJOB1Zh5xiYsJwb yD+dGWrA==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by merlin.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fpjny-00087x-2B; Wed, 15 Aug 2018 00:36:54 +0000 To: linux-kbuild , LKML , Masahiro Yamada From: Randy Dunlap Subject: [PATCH] kconfig: add build-only configurator targets Message-ID: Date: Tue, 14 Aug 2018 17:36:49 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Language: en-US Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Add build-only targets for build_menuconfig, build_nconfig, build_xconfig, and build_gconfig. (targets must end in "config" to qualify in top-level Makefile) This allows these target to be built without execution (e.g., to look for errors or warnings) and/or to be built and checked by sparse. Signed-off-by: Randy Dunlap --- scripts/kconfig/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) --- linux-next-20180814.orig/scripts/kconfig/Makefile +++ linux-next-20180814/scripts/kconfig/Makefile @@ -33,6 +33,14 @@ config: $(obj)/conf nconfig: $(obj)/nconf $< $(silent) $(Kconfig) +build_menuconfig: $(obj)/mconf + +build_nconfig: $(obj)/nconf + +build_gconfig: $(obj)/gconf + +build_xconfig: $(obj)/qconf + localyesconfig localmodconfig: $(obj)/conf $(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config $(Q)if [ -f .config ]; then \