From mboxrd@z Thu Jan 1 00:00:00 1970 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=unavailable 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 97F48C433ED for ; Wed, 12 May 2021 07:58:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 70ACE613BE for ; Wed, 12 May 2021 07:58:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230197AbhELH7Q (ORCPT ); Wed, 12 May 2021 03:59:16 -0400 Received: from conuserg-07.nifty.com ([210.131.2.74]:42319 "EHLO conuserg-07.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230111AbhELH7N (ORCPT ); Wed, 12 May 2021 03:59:13 -0400 Received: from grover.RMN.KIBA.LAB.jp (133-32-232-101.west.xps.vectant.ne.jp [133.32.232.101]) (authenticated) by conuserg-07.nifty.com with ESMTP id 14C7vbPu028192; Wed, 12 May 2021 16:57:42 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com 14C7vbPu028192 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1620806263; bh=O/74YeIerUaZTHjo5L0h/rjW9ksuxe7/2Vi6Bj2jJgk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=n2k0HLwaBPboTgP2aiPtOAYjUwvuJnkFDiFB1OgJUDZSgKFVvpj6nh42+dmUz4/x4 wNn1GipEOEKuBhSzv+9EpBiMPTc/IoSAyLGQ7/u/r8xAagWORVpUP949arlUTq/96W 51bi3R1b71lQRW5vtoV72vlnRh8r+dZlsKtpmvAitOUOApRu18gSCgyS18uaVwWlT3 toqfITN41W+LrGOoq0UX6xL1fEAE2oFFJ1u+TRI37C9MjDRfMg2AmDCjhxdjp9iW9Q gGns0yMTtnY5egP5pjAI+0pJCD0ehipmX9g4WbYxC0EIUrtvLAxP6Pae8AF046oRB3 C7UAtXlp9z3Rw== X-Nifty-SrcIP: [133.32.232.101] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , Yoshinori Sato , linux-kernel@vger.kernel.org, uclinux-h8-devel@lists.sourceforge.jp Subject: [PATCH 3/5] h8300: move core-y in arch/h8300/Makefile to arch/h8300/Kbuild Date: Wed, 12 May 2021 16:57:27 +0900 Message-Id: <20210512075729.60291-3-masahiroy@kernel.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210512075729.60291-1-masahiroy@kernel.org> References: <20210512075729.60291-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use obj-y to clean up Makefile. Signed-off-by: Masahiro Yamada --- arch/h8300/Kbuild | 1 + arch/h8300/Makefile | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/arch/h8300/Kbuild b/arch/h8300/Kbuild index a4e40e534e6a..b2583e7efbd1 100644 --- a/arch/h8300/Kbuild +++ b/arch/h8300/Kbuild @@ -1 +1,2 @@ # SPDX-License-Identifier: GPL-2.0-only +obj-y += kernel/ mm/ boot/dts/ diff --git a/arch/h8300/Makefile b/arch/h8300/Makefile index ba0f26cfad61..eb4cb8f6830c 100644 --- a/arch/h8300/Makefile +++ b/arch/h8300/Makefile @@ -30,9 +30,6 @@ ifeq ($(CROSS_COMPILE),) CROSS_COMPILE := $(call cc-cross-prefix, h8300-unknown-linux- h8300-linux-) endif -core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ -core-y += arch/$(ARCH)/boot/dts/ - libs-y += arch/$(ARCH)/lib/ boot := arch/h8300/boot -- 2.27.0