summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRadek Podgorny <radek@podgorny.cz>2007-02-09 16:25:03 +0100
committerRadek Podgorny <radek@podgorny.cz>2007-02-09 16:25:03 +0100
commitc87e2389941761dd67f0e638a0dbce376e06ad58 (patch)
tree7d906e3f90b41e4b6154c4b0b268fef80c0b9708 /Makefile
parenteb3198e7c52c19b598f9dfd20618c2d6749aa234 (diff)
downloadunionfs-fuse-c87e2389941761dd67f0e638a0dbce376e06ad58.tar.gz
Converted to make (credits go to Bernd Schubert)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ac9c142
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+CFLAGS += -Wall
+CPPFLAGS += -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26
+LDFLAGS += -lfuse
+
+UNIONFS_OBJ = unionfs.o stats.o opts.o debug.o cache.o
+
+
+unionfs: $(UNIONFS_OBJ)
+ $(CC) $(LDFLAGS) -o $@ $(UNIONFS_OBJ)
+
+clean:
+ rm -f unionfs
+ rm -f *.o