aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2001-11-16 17:47:44 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2001-11-16 17:47:44 +0000
commit66aeb510efbf3d6d46e5848be53162c156ee27a6 (patch)
treed5ce2b188ea51ac5a9e93ae9878ca855a7a1af9b /python
parentf830a7f84dda931307785dd9653c3627c9cc6386 (diff)
downloadlibfuse-66aeb510efbf3d6d46e5848be53162c156ee27a6.tar.gz
Makefile temporarily added to python dir
Diffstat (limited to 'python')
-rw-r--r--python/Makefile10
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