From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42696) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF1DC-0007oT-UI for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SF1D6-0002Hz-2E for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:42 -0400 Received: from e06smtp10.uk.ibm.com ([195.75.94.106]:35908) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF1D5-0002Gj-Q5 for qemu-devel@nongnu.org; Tue, 03 Apr 2012 06:43:36 -0400 Received: from /spool/local by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 3 Apr 2012 11:43:29 +0100 Received: from d06av12.portsmouth.uk.ibm.com (d06av12.portsmouth.uk.ibm.com [9.149.37.247]) by d06nrmr1407.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q33Ah0l12334828 for ; Tue, 3 Apr 2012 11:43:00 +0100 Received: from d06av12.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av12.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q33AgxU3026691 for ; Tue, 3 Apr 2012 04:43:00 -0600 From: Stefan Hajnoczi Date: Tue, 3 Apr 2012 11:42:47 +0100 Message-Id: <1333449767-16410-9-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1333449767-16410-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1333449767-16410-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 8/8] make: fix clean rule by removing build file in qom/ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Anthony PERARD , qemu-devel@nongnu.org, Stefan Hajnoczi From: Anthony PERARD Make clean does not clean the 'qom' directory, leaving *.o and *.d files. This patch fixes this. Signed-off-by: Anthony PERARD Signed-off-by: Stefan Hajnoczi --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 35c7a2a..a78f53d 100644 --- a/Makefile +++ b/Makefile @@ -217,6 +217,7 @@ clean: rm -f *.o *.d *.a *.lo $(TOOLS) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~ rm -Rf .libs rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d fsdev/*.o fsdev/*.d ui/*.o ui/*.d qapi/*.o qapi/*.d qga/*.o qga/*.d + rm -f qom/*.o qom/*.d rm -f qemu-img-cmds.h rm -f trace/*.o trace/*.d rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp -- 1.7.9.1