summaryrefslogtreecommitdiff
path: root/Makefile.target
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-31 18:49:55 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-31 18:49:55 +0000
commit6f97dba008ec434b742764596d9e28df673cf6c2 (patch)
tree5b836102f73d309e76f442ceedec7a5288bf220b /Makefile.target
parent0e82f34d077dc254249edea9262174b1d3b44a01 (diff)
downloadqemu-6f97dba008ec434b742764596d9e28df673cf6c2.tar.gz
Move CharDriverState code out of vl.c
The motivating goal behind this is to allow other tools to use the CharDriver code. This patch is pure code motion except for the Makefile changes and the copyright/header in qemu-char.c. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5580 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r--Makefile.target2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target
index f9c0b34b98..7602d12b76 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -579,7 +579,7 @@ endif #CONFIG_BSD_USER
ifndef CONFIG_USER_ONLY
OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o net-checksum.o
-OBJS+=fw_cfg.o aio.o buffered_file.o migration.o migration-tcp.o
+OBJS+=fw_cfg.o aio.o buffered_file.o migration.o migration-tcp.o qemu-char.o
ifdef CONFIG_WIN32
OBJS+=block-raw-win32.o
else