mirror of
https://github.com/openharmony/third_party_libfuse.git
synced 2026-07-22 17:45:25 -04:00
11 lines
260 B
Makefile
11 lines
260 B
Makefile
_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
|