diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/python/Makefile b/python/Makefile new file mode 100644 index 0000000..dfaf492 --- /dev/null +++ b/python/Makefile @@ -0,0 +1,10 @@ +_fusemodule.so: _fusemodule.c + gcc -g3 -I/usr/include/python1.5 _fusemodule.c -Wl,-shared -o _fusemodule.so -Wimplicit -lfuse && python -c 'import _fuse' + +demo: _fusemodule.so + -sudo umount tmp + fusermount tmp ./fuse.py + + +clean: + rm _fusemodule.so *.pyc *.pyo |