diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-15 17:28:36 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-15 17:28:36 +0000 |
commit | 223d4670a0cf539a0e8cc6a23aad28a8340dded8 (patch) | |
tree | 4202f66b0b7c95fa6e3f1b932f58168fcaebd70b /Makefile.target | |
parent | 50a9569b591a83071052614f2ff497ff2f2aa2ef (diff) | |
download | qemu-223d4670a0cf539a0e8cc6a23aad28a8340dded8.zip |
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
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 6 |
1 files changed, 5 insertions, 1 deletions
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 |