From 223d4670a0cf539a0e8cc6a23aad28a8340dded8 Mon Sep 17 00:00:00 2001 From: ths Date: Sat, 15 Dec 2007 17:28:36 +0000 Subject: Split block-raw.c into block-raw-posix.c and block-raw-win32.c, by Anthony Liguori. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3814 c046a42c-6fe2-441c-8c8c-71466251a162 --- Makefile.target | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile.target') diff --git a/Makefile.target b/Makefile.target index 61697fe6fa..53607e4010 100644 --- a/Makefile.target +++ b/Makefile.target @@ -398,7 +398,11 @@ endif # must use static linking to avoid leaving stuff in virtual address space VL_OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o # XXX: suppress QEMU_TOOL tests -VL_OBJS+=block-raw.o +ifdef CONFIG_WIN32 +VL_OBJS+=block-raw-win32.o +else +VL_OBJS+=block-raw-posix.o +endif ifdef CONFIG_ALSA LIBS += -lasound -- cgit v1.2.1