From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56205 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWjdI-0004Ix-98 for qemu-devel@nongnu.org; Thu, 08 Jul 2010 01:26:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OWjdG-0003FO-Jf for qemu-devel@nongnu.org; Thu, 08 Jul 2010 01:26:48 -0400 Received: from fgwmail6.fujitsu.co.jp ([192.51.44.36]:36309) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OWjdG-0003F4-5c for qemu-devel@nongnu.org; Thu, 08 Jul 2010 01:26:46 -0400 Received: from m4.gw.fujitsu.co.jp ([10.0.50.74]) by fgwmail6.fujitsu.co.jp (Fujitsu Gateway) with ESMTP id o685QeT1013748 for (envelope-from seto.hidetoshi@jp.fujitsu.com); Thu, 8 Jul 2010 14:26:40 +0900 Received: from smail (m4 [127.0.0.1]) by outgoing.m4.gw.fujitsu.co.jp (Postfix) with ESMTP id D6A3C45DE6E for ; Thu, 8 Jul 2010 14:26:39 +0900 (JST) Received: from s4.gw.fujitsu.co.jp (s4.gw.fujitsu.co.jp [10.0.50.94]) by m4.gw.fujitsu.co.jp (Postfix) with ESMTP id B14E745DE4D for ; Thu, 8 Jul 2010 14:26:39 +0900 (JST) Received: from s4.gw.fujitsu.co.jp (localhost.localdomain [127.0.0.1]) by s4.gw.fujitsu.co.jp (Postfix) with ESMTP id 9B66C1DB8037 for ; Thu, 8 Jul 2010 14:26:39 +0900 (JST) Received: from m107.s.css.fujitsu.com (m107.s.css.fujitsu.com [10.249.87.107]) by s4.gw.fujitsu.co.jp (Postfix) with ESMTP id 59F741DB803A for ; Thu, 8 Jul 2010 14:26:39 +0900 (JST) Message-ID: <4C356168.2010703@jp.fujitsu.com> Date: Thu, 08 Jul 2010 14:26:00 +0900 From: Hidetoshi Seto MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] Makefile: add fsdev/*.{o,d} to clean List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl There were fsdev/qemu-fsdev.{o,d} not removed at "make clean". Signed-off-by: Hidetoshi Seto --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 560eac6..7b82a33 100644 --- a/Makefile +++ b/Makefile @@ -159,7 +159,7 @@ clean: # avoid old build problems by removing potentially incorrect old files rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ - rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d + rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d fsdev/*.o fsdev/*.d rm -f qemu-img-cmds.h $(MAKE) -C tests clean for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser libdis libdis-user; do \ -- 1.7.1.1