mirror of
https://github.com/openharmony/third_party_libfuse.git
synced 2026-07-21 17:15:28 -04:00
7a19cafc5d
Added support for 'fsync' and 'statfs' to python interface, and to python fs example
16 lines
391 B
Makefile
16 lines
391 B
Makefile
#@+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'
|
|
python setup.py build_ext --inplace
|
|
|
|
install: _fusemodule.so
|
|
python setup.py install
|
|
|
|
clean:
|
|
rm -rf _fusemodule.so *.pyc *.pyo *~ build
|
|
#@-node:@file Makefile
|
|
#@-leo
|