diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-08-01 21:46:49 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-08-01 21:46:49 +0000 |
commit | b932caba32c6eb627470d29e7ba1933589b4f8a0 (patch) | |
tree | ee344e9b3649308a9356cc512be5fc52107cdf4b /Makefile.target | |
parent | 3eb2619fe55aa7b040aba4fbf9242c50d0a9672e (diff) |
new disk image layer
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1030 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 d565e1dd9a..9c9cfcfead 100644 --- a/Makefile.target +++ b/Makefile.target @@ -161,6 +161,9 @@ endif DEFINES+=-D_GNU_SOURCE LIBS+=-lm +ifndef CONFIG_USER_ONLY +LIBS+=-lz +endif ifdef CONFIG_WIN32 LIBS+=-lwinmm -lws2_32 -liphlpapi endif @@ -237,7 +240,8 @@ ifeq ($(ARCH),alpha) endif # must use static linking to avoid leaving stuff in virtual address space -VL_OBJS=vl.o osdep.o block.o monitor.o pci.o console.o +VL_OBJS=vl.o osdep.o block.o readline.o monitor.o pci.o console.o +VL_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o ifeq ($(TARGET_ARCH), i386) # Hardware support |