From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UaDtj-0007hm-RH for qemu-devel@nongnu.org; Wed, 08 May 2013 19:35:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UaDti-00071N-Hw for qemu-devel@nongnu.org; Wed, 08 May 2013 19:35:47 -0400 Received: from mail-ie0-x22f.google.com ([2607:f8b0:4001:c03::22f]:51276) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UaDti-00071D-55 for qemu-devel@nongnu.org; Wed, 08 May 2013 19:35:46 -0400 Received: by mail-ie0-f175.google.com with SMTP id s9so4217109iec.6 for ; Wed, 08 May 2013 16:35:45 -0700 (PDT) Sender: fluxion From: Michael Roth Date: Wed, 8 May 2013 18:33:53 -0500 Message-Id: <1368056037-16350-5-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1368056037-16350-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1368056037-16350-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 4/8] qapi: enable generation of native list code List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: akong@redhat.com, lcapitulino@redhat.com Also, fix a dependency issue with libqemuutil: qemu-sockets.c needs qapi-types.c/qapi-visit.c Signed-off-by: Michael Roth --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7dc0204..9695c9d 100644 --- a/Makefile +++ b/Makefile @@ -178,7 +178,7 @@ Makefile: $(version-obj-y) $(version-lobj-y) # Build libraries libqemustub.a: $(stub-obj-y) -libqemuutil.a: $(util-obj-y) +libqemuutil.a: $(util-obj-y) qapi-types.o qapi-visit.o ###################################################################### @@ -215,10 +215,10 @@ $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) qapi-types.c qapi-types.h :\ $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) - $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@") + $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." -b < $<, " GEN $@") qapi-visit.c qapi-visit.h :\ $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) - $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@") + $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." -b < $<, " GEN $@") qmp-commands.h qmp-marshal.c :\ $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@") -- 1.7.9.5