From: Miklos Szeredi Date: Fri, 16 Nov 2001 17:47:44 +0000 (+0000) Subject: Makefile temporarily added to python dir X-Git-Tag: fuse_0_95~26 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=66aeb510efbf3d6d46e5848be53162c156ee27a6;p=qemu-gpiodev%2Flibfuse.git Makefile temporarily added to python dir --- 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