From f7d0fe0239e438c396f5602e18aaf1d615998dfe Mon Sep 17 00:00:00 2001 From: Kevin Wolf Date: Thu, 28 May 2009 16:07:04 +0200 Subject: qcow2: Split out refcount handling qcow2-refcount.c contains all functions which are related to cluster allocation and management in the image file. A large part of this is the reference counting of these clusters. Also a header file qcow2.h is introduced which will contain the interface of the split qcow2 modules. Signed-off-by: Kevin Wolf Signed-off-by: Anthony Liguori --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 209b21f39f..b44e9e123a 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,8 @@ recurse-all: $(SUBDIR_RULES) BLOCK_OBJS=cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o BLOCK_OBJS+=block/cow.o block/qcow.o aes.o block/vmdk.o block/cloop.o BLOCK_OBJS+=block/dmg.o block/bochs.o block/vpc.o block/vvfat.o -BLOCK_OBJS+=block/qcow2.o block/parallels.o block/nbd.o +BLOCK_OBJS+=block/qcow2.o block/qcow2-refcount.o +BLOCK_OBJS+=block/parallels.o block/nbd.o BLOCK_OBJS+=nbd.o block.o aio.o ifdef CONFIG_WIN32 -- cgit v1.2.1