From patchwork Thu Feb 19 02:13:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 5849641 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 6DC2ABF440 for ; Thu, 19 Feb 2015 02:12:55 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3B8652021F for ; Thu, 19 Feb 2015 02:12:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5AB7C20219 for ; Thu, 19 Feb 2015 02:12:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751728AbbBSCMw (ORCPT ); Wed, 18 Feb 2015 21:12:52 -0500 Received: from mail-pa0-f48.google.com ([209.85.220.48]:35487 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751501AbbBSCMw (ORCPT ); Wed, 18 Feb 2015 21:12:52 -0500 Received: by padfa1 with SMTP id fa1so5817202pad.2; Wed, 18 Feb 2015 18:12:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:subject; bh=3M6L0EOTel1SNZcRLd7DGlXXemMm65pTgIX5KGqXZr0=; b=JcgtmaNweu2yyX1HZ+O9wBO2PNoPaw+eCGbcHekjNXLP6lJgv3gGcOdi5rDFzs3/JP PrnrCYQywG1AdCz/DFpT5x+IK2Ar/ZSNuKsYRaY5LH6IeOkoZTVg1RNsD1Rmw8RtyJdj TXdkzH7JZu9oRKiyaQ/KIgHjpqoq7Jj2VKB14gozzSoUbP1sWcIm9QU9bLgfAxn07tQ4 P/0z2kykcAtg7KSrdVJxdGC9a50Qcc4WxUI6VPS9f8W/tgLvOnjn4RSFc39fOV8GiC31 qwtRx+cq1XNhM4AbTQptgFHIMQQwjEfeDaNCt80oQUf/Z16Mv8woqCKVt5AfHAXsDFYM 3JYw== X-Received: by 10.66.221.70 with SMTP id qc6mr3733449pac.92.1424311971462; Wed, 18 Feb 2015 18:12:51 -0800 (PST) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id hu12sm8904778pdb.41.2015.02.18.18.12.48 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Feb 2015 18:12:50 -0800 (PST) From: Magnus Damm To: luto@amacapital.net Cc: linux-sh@vger.kernel.org, x86@kernel.org, linux-kernel@vger.kernel.org, mingo@redhat.com, hpa@zytor.com, Magnus Damm , tglx@linutronix.de Date: Thu, 19 Feb 2015 11:13:11 +0900 Message-Id: <20150219021311.24366.75477.sendpatchset@little-apple> Subject: [PATCH] x86/vdso: Remove all generated files during clean Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Magnus Damm Make sure the following files are removed as expected during "make clean": + arch/x86/vdso/vdso-image-32-int80.c + arch/x86/vdso/vdso-image-32-syscall.c + arch/x86/vdso/vdso-image-32-sysenter.c + arch/x86/vdso/vdso-image-64.c Signed-off-by: Magnus Damm --- arch/x86/vdso/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/arch/x86/vdso/Makefile +++ work/arch/x86/vdso/Makefile 2015-02-19 10:50:15.975470639 +0900 @@ -1,3 +1,4 @@ + # # Building vDSO images for x86. # @@ -206,4 +207,5 @@ $(vdso_img_insttargets): install_%: $(ob PHONY += vdso_install $(vdso_img_insttargets) vdso_install: $(vdso_img_insttargets) FORCE -clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* +clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* \ + vdso-image-32* vdso-image-64*