From patchwork Tue May 12 10:08:07 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 23212 X-Patchwork-Delegate: lethal@linux-sh.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n4CAB0l3031263 for ; Tue, 12 May 2009 10:11:00 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751174AbZELKK6 (ORCPT ); Tue, 12 May 2009 06:10:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752250AbZELKK6 (ORCPT ); Tue, 12 May 2009 06:10:58 -0400 Received: from rv-out-0506.google.com ([209.85.198.238]:31117 "EHLO rv-out-0506.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750886AbZELKK5 (ORCPT ); Tue, 12 May 2009 06:10:57 -0400 Received: by rv-out-0506.google.com with SMTP id f9so2490344rvb.1 for ; Tue, 12 May 2009 03:10:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :subject; bh=ukMp+JNxLFBdrnaGm+pgeZNgpjno/Lp0UqGw6VZTNss=; b=KMPUvcoFnKYI9UaZvczOL1covyroFPaLzHPCd7xvjsmbLGQUffijtRynYU5c1Qdbku ieWqVhJ3dTUh0MQ2XNpyEtuLIJxeiIK8QNosIFnl4dOy0Q1rq7U8zKmJd+3iN0kHnX/n XvAfqdPSbirh4ZJmblFShVjAro1XNU5ET+XgE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:subject; b=fa7kDH73FW1/LZq8a3ee+GVlHTgLJLSxWEQLci9xLAeSI2r4OK9CGn/xXHwKHfCYlV AA4EmRg6imYsDDZ6vhyHgjzxZg3Xvra6S9znFjd4rs0CkVEheFAgIJpKJ0Yg4S3XHt3H FCWS3XyUXTsfKZS4VlhfQVSME/2o1mrPG1Xsk= Received: by 10.114.152.17 with SMTP id z17mr6375876wad.73.1242123057702; Tue, 12 May 2009 03:10:57 -0700 (PDT) Received: from rx1.opensource.se (210.5.32.202.bf.2iij.net [202.32.5.210]) by mx.google.com with ESMTPS id m28sm9188257poh.24.2009.05.12.03.10.55 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 12 May 2009 03:10:56 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , lethal@linux-sh.org Date: Tue, 12 May 2009 19:08:07 +0900 Message-Id: <20090512100807.25601.56979.sendpatchset@rx1.opensource.se> Subject: [PATCH] sh: clean vsyscall files V2 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org From: Magnus Damm Fix so vsyscall-trapa.so and vsyscall.lds get removed with a make distclean. Signed-off-by: Magnus Damm --- Changes since V1: - use CLEAN_FILES instead of MRPROPER_FILES arch/sh/Makefile | 1 + arch/sh/kernel/vsyscall/Makefile | 2 ++ 2 files changed, 3 insertions(+) -- 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/sh/Makefile +++ work/arch/sh/Makefile 2009-05-12 14:12:09.000000000 +0900 @@ -204,6 +204,7 @@ archprepare: maketools archclean: $(Q)$(MAKE) $(clean)=$(boot) + $(Q)$(MAKE) $(clean)=arch/sh/kernel/vsyscall define archhelp @echo '* zImage - Compressed kernel image' --- 0001/arch/sh/kernel/vsyscall/Makefile +++ work/arch/sh/kernel/vsyscall/Makefile 2009-05-12 14:12:35.000000000 +0900 @@ -34,3 +34,5 @@ SYSCFLAGS_vsyscall-syms.o = -r $(obj)/vsyscall-syms.o: $(src)/vsyscall.lds \ $(obj)/vsyscall-trapa.o $(obj)/vsyscall-note.o FORCE $(call if_changed,syscall) + +CLEAN_FILES += $(obj)/vsyscall-trapa.so $(obj)/vsyscall.lds