summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBernd Schubert <bernd-schubert@gmx.de>2007-02-10 23:48:09 +0100
committerBernd Schubert <bernd-schubert@gmx.de>2007-02-10 23:48:09 +0100
commitf47501f47a271ced2b0c45b582c1ab10f4d3043e (patch)
treeb21ef8290d8813a8cbc11a1ebcab86020974e0c6 /Makefile
parent78971fd11db856a429bdcada36e55c399519c206 (diff)
downloadunionfs-fuse-f47501f47a271ced2b0c45b582c1ab10f4d3043e.tar.gz
Initial copy-on-write (COW) support, presently only unlink().
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6634598..e5e4251 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ LDFLAGS += -lfuse -lm
HASHTABLE_OBJ = hashtable.o hashtable_itr.o hash.o elfhash.o
-UNIONFS_OBJ = unionfs.o stats.o opts.o debug.o cache.o findbranch.o readdir.o general.o
+UNIONFS_OBJ = unionfs.o stats.o opts.o debug.o cache.o findbranch.o readdir.o general.o unlink.o cow_path.o
unionfs: $(UNIONFS_OBJ) $(HASHTABLE_OBJ)