summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRadek Podgorny <radek@podgorny.cz>2007-02-10 01:28:56 +0100
committerRadek Podgorny <radek@podgorny.cz>2007-02-10 01:28:56 +0100
commit147b4290ff738371057476c2df101e9596acf50c (patch)
treec0687f0d886e7b79c644887da03a651496ae9a1d /Makefile
parent9ab5bf74f620e4fdbc4fcbf6daaa1b9448d3fb5d (diff)
downloadunionfs-fuse-147b4290ff738371057476c2df101e9596acf50c.tar.gz
Added a hashtable from Christopher Clark for possible future use
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ac9c142..1d7ced1 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,12 @@ CFLAGS += -Wall
CPPFLAGS += -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26
LDFLAGS += -lfuse
+
+HASHTABLE_OBJ = hashtable.o hashtable_itr.o
UNIONFS_OBJ = unionfs.o stats.o opts.o debug.o cache.o
-unionfs: $(UNIONFS_OBJ)
+unionfs: $(UNIONFS_OBJ) $(HASHTABLE_OBJ)
$(CC) $(LDFLAGS) -o $@ $(UNIONFS_OBJ)
clean: