From 7a19cafc5d0fb8786a61fdadba1a6014a0396e5f Mon Sep 17 00:00:00 2001 From: David McNab Date: Sat, 13 Dec 2003 02:05:46 +0000 Subject: Added 'fsync' stub in example/fusexmp.c Added support for 'fsync' and 'statfs' to python interface, and to python fs example --- python/Makefile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'python/Makefile') diff --git a/python/Makefile b/python/Makefile index 12393e7..1313e9e 100644 --- a/python/Makefile +++ b/python/Makefile @@ -1,5 +1,15 @@ +#@+leo-ver=4 +#@+node:@file Makefile +# Makefile now uses distutils + _fusemodule.so: _fusemodule.c - gcc -g3 -I/usr/include/python2.1 _fusemodule.c -Wl,-shared -o _fusemodule.so -Wimplicit -lfuse && python -c 'import _fuse' + #gcc -g3 -I/usr/include/python2.1 _fusemodule.c -Wl,-shared -o _fusemodule.so -Wimplicit -lfuse && python -c 'import _fuse' + python setup.py build_ext --inplace + +install: _fusemodule.so + python setup.py install clean: - rm -f _fusemodule.so *.pyc *.pyo + rm -rf _fusemodule.so *.pyc *.pyo *~ build +#@-node:@file Makefile +#@-leo -- cgit v1.2.3