From patchwork Sun Sep 11 07:42:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 75957 Delivered-To: patch@linaro.org Received: by 10.140.106.72 with SMTP id d66csp350509qgf; Sun, 11 Sep 2016 00:45:21 -0700 (PDT) X-Received: by 10.66.79.138 with SMTP id j10mr22255465pax.60.1473579921447; Sun, 11 Sep 2016 00:45:21 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a75si10302591pfe.201.2016.09.11.00.45.21; Sun, 11 Sep 2016 00:45:21 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=pass header.i=@nifty.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755436AbcIKHpA (ORCPT + 27 others); Sun, 11 Sep 2016 03:45:00 -0400 Received: from conuserg-11.nifty.com ([210.131.2.78]:50072 "EHLO conuserg-11.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752499AbcIKHov (ORCPT ); Sun, 11 Sep 2016 03:44:51 -0400 Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-11.nifty.com with ESMTP id u8B7gKt0025893; Sun, 11 Sep 2016 16:42:26 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com u8B7gKt0025893 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1473579746; bh=6oCVZwoz++ZFO/g90R8EoeCYWvOjUJyYw6Sb+w5Oefc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lXMdTQ5W9xyC+YXKEx43Zfp2f+XFTmg4V/LGOrvJCHbJieBhhlH9/22Wwy76wRPbs FwDOiZXohbDoS4j0vE4EjDxkm8jeotGr/VnfXmNnmLa/Gt9DH3J7JF0jcnW79JUeuq vYdkJO9duB/n0v+ihzK93k5dEjuAdwmIEW39edgRRAlASJsdbnq2yaQq8rl5BJr9hP UhuQ3vHmPOk9b6WJhsFJPdeDK8jHMvbhkGesd3m6O8MtLPxUrgG/zY8/wc8hs+yXxE 8FaNFmox/XM/qsrss1+weqNC1I231ryn7rmwhGn5DWoPmVuOv1spkku5zOCF05lfH8 nERjhfg3fke8g== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: linux-alpha@vger.kernel.org, Richard Henderson , Ivan Kokshaysky Cc: Masahiro Yamada , linux-kernel@vger.kernel.org, Matt Turner Subject: [PATCH 3/3] alpha: make short build log available for division routines Date: Sun, 11 Sep 2016 16:42:16 +0900 Message-Id: <1473579736-16139-4-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1473579736-16139-1-git-send-email-yamada.masahiro@socionext.com> References: <1473579736-16139-1-git-send-email-yamada.masahiro@socionext.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This enables the Kbuild standard log style as follows: AS arch/alpha/lib/__divlu.o AS arch/alpha/lib/__divqu.o AS arch/alpha/lib/__remlu.o AS arch/alpha/lib/__remqu.o Signed-off-by: Masahiro Yamada --- arch/alpha/lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 1.9.1 diff --git a/arch/alpha/lib/Makefile b/arch/alpha/lib/Makefile index 5f12e9d..7083434 100644 --- a/arch/alpha/lib/Makefile +++ b/arch/alpha/lib/Makefile @@ -47,5 +47,5 @@ AFLAGS___divlu.o = -DDIV -DINTSIZE AFLAGS___remlu.o = -DREM -DINTSIZE $(addprefix $(obj)/,__divqu.o __remqu.o __divlu.o __remlu.o): \ - $(src)/$(ev6-y)divide.S - $(cmd_as_o_S) + $(src)/$(ev6-y)divide.S FORCE + $(call if_changed_rule,as_o_S)