diff options
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
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 |