From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvKbm-0006iJ-TY for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvKbi-0006dV-4J for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:22 -0400 Received: from [199.232.76.173] (port=60266 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvKbh-0006dC-NV for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28833) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvKbh-0000HZ-B1 for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:17 -0400 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n970gGXc030798 for ; Tue, 6 Oct 2009 20:42:16 -0400 From: Juan Quintela Date: Wed, 7 Oct 2009 02:41:22 +0200 Message-Id: <9e1ecdb8b6c42c21bdc0eddabdb4057e96dba4aa.1254875337.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 26/31] Only compile sd0303 when one target uses it List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Juan Quintela --- Makefile | 3 ++- default-configs/arm-softmmu.mak | 1 + 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 0953ba5..d70372b 100644 --- a/Makefile +++ b/Makefile @@ -105,8 +105,9 @@ obj-$(CONFIG_TSC2005) += tsc2005.o obj-$(CONFIG_LM832X) += lm832x.o obj-$(CONFIG_TMP105) += tmp105.o obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o +obj-$(CONFIG_SSD0303) += ssd0303.o obj-y += i2c.o smbus.o smbus_eeprom.o max111x.o -obj-y += ssd0303.o ssd0323.o ads7846.o +obj-y += ssd0323.o ads7846.o obj-y += eeprom93xx.o obj-y += scsi-disk.o cdrom.o obj-y += scsi-generic.o scsi-bus.o diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak index dddc2a6..aed1ea3 100644 --- a/default-configs/arm-softmmu.mak +++ b/default-configs/arm-softmmu.mak @@ -14,3 +14,4 @@ CONFIG_TSC2005=y CONFIG_LM832X=y CONFIG_TMP105=y CONFIG_STELLARIS_INPUT=y +CONFIG_SD0303=y -- 1.6.2.5