mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-27 14:14:28 +08:00
6 lines
196 B
Makefile
6 lines
196 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'
|
|
|
|
clean:
|
|
rm -f _fusemodule.so *.pyc *.pyo
|