From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:51985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RQnTy-0002px-05 for qemu-devel@nongnu.org; Wed, 16 Nov 2011 16:57:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RQnTw-0003Xx-Ud for qemu-devel@nongnu.org; Wed, 16 Nov 2011 16:57:25 -0500 Received: from mx1.redhat.com ([209.132.183.28]:58239) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RQnTw-0003Xr-Ir for qemu-devel@nongnu.org; Wed, 16 Nov 2011 16:57:24 -0500 Date: Wed, 16 Nov 2011 23:58:46 +0200 From: "Michael S. Tsirkin" Message-ID: <20111116215845.GA770@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH 1/4] Makefile: remove more generated files on clean List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Anthony Liguori , Stefan Hajnoczi , "Michael S. Tsirkin" , qemu-devel@nongnu.org, Michael Roth , Luiz Capitulino make clean missed the source qmp files generated by python. Fix that. Signed-off-by: Michael S. Tsirkin --- Makefile | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 168093c..b335f2a 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ ifeq ($(TRACE_BACKEND),dtrace) GENERATED_HEADERS += trace-dtrace.h endif GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h +GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c ifneq ($(wildcard config-host.mak),) # Put the all: rule here so that config-host.mak can contain dependencies. @@ -227,6 +228,7 @@ clean: rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp rm -f trace-dtrace.h trace-dtrace.h-timestamp + rm -f $(GENERATED_SOURCES) rm -rf $(qapi-dir) $(MAKE) -C tests clean for d in $(ALL_SUBDIRS) $(QEMULIBS) libcacard; do \ -- 1.7.5.53.gc233e