From: Michael S. Tsirkin Date: Wed, 16 Nov 2011 21:58:46 +0000 (+0200) Subject: Makefile: remove more generated files on clean X-Git-Tag: qemu-xen-4.3.0-rc1~1992^2~3 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=611b727374ad76fb0078ea65bc1387194913980e;p=qemu-upstream-4.3-testing.git Makefile: remove more generated files on clean make clean missed the source qmp files generated by python. Fix that. Signed-off-by: Michael S. Tsirkin Reviewed-by: Paolo Bonzini Signed-off-by: Luiz Capitulino --- diff --git a/Makefile b/Makefile index 168093c6c..b335f2a1e 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 \