Makefile temporarily added to python dir
authorMiklos Szeredi <miklos@szeredi.hu>
Fri, 16 Nov 2001 17:47:44 +0000 (17:47 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Fri, 16 Nov 2001 17:47:44 +0000 (17:47 +0000)
python/Makefile [new file with mode: 0644]

diff --git a/python/Makefile b/python/Makefile
new file mode 100644 (file)
index 0000000..dfaf492
--- /dev/null
@@ -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