From patchwork Sun Nov 1 14:51:12 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 37381 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 36EF8B7C26 for ; Mon, 2 Nov 2009 01:55:08 +1100 (EST) Received: from localhost ([127.0.0.1]:50245 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4bph-0007PJ-MG for incoming@patchwork.ozlabs.org; Sun, 01 Nov 2009 09:55:05 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N4bmM-0006B4-3N for qemu-devel@nongnu.org; Sun, 01 Nov 2009 09:51:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N4bmH-00067G-1g for qemu-devel@nongnu.org; Sun, 01 Nov 2009 09:51:37 -0500 Received: from [199.232.76.173] (port=35610 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4bmG-00067D-Sc for qemu-devel@nongnu.org; Sun, 01 Nov 2009 09:51:32 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56591) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N4bmG-0002Ld-Ch for qemu-devel@nongnu.org; Sun, 01 Nov 2009 09:51:32 -0500 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nA1EpVll020001 for ; Sun, 1 Nov 2009 09:51:31 -0500 Received: from localhost (vpn-10-169.rdu.redhat.com [10.11.10.169]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nA1EpUMo014594 for ; Sun, 1 Nov 2009 09:51:31 -0500 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Sun, 1 Nov 2009 12:51:12 -0200 Message-Id: <1257087078-5757-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1257087078-5757-1-git-send-email-lcapitulino@redhat.com> References: <1257087078-5757-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 2/8] Makefile: move QObject objs to their own entry X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Other subsystems will need to link against them. Signed-off-by: Luiz Capitulino --- Makefile | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 6fcbcaa..56f0301 100644 --- a/Makefile +++ b/Makefile @@ -70,6 +70,10 @@ ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) ####################################################################### +# QObject +qobject-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o qjson.o + +####################################################################### # block-obj-y is code used by both qemu system emulation and qemu-img block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o @@ -104,6 +108,7 @@ net-obj-y += $(addprefix net/, $(net-nested-y)) obj-y = $(block-obj-y) obj-y += $(net-obj-y) +obj-y += $(qobject-obj-y) obj-y += readline.o console.o obj-y += tcg-runtime.o host-utils.o @@ -135,7 +140,6 @@ obj-y += buffered_file.o migration.o migration-tcp.o qemu-sockets.o obj-y += qemu-char.o aio.o savevm.o obj-y += msmouse.o ps2.o obj-y += qdev.o qdev-properties.o -obj-y += qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o qjson.o obj-y += qemu-config.o obj-$(CONFIG_BRLAPI) += baum.o