mirror of
git://soft.sys114.com/WiringPi2-Python
synced 2026-02-05 05:20:29 +09:00
13 lines
162 B
Makefile
13 lines
162 B
Makefile
all: bindings
|
|
python setup.py build
|
|
|
|
bindings:
|
|
swig3.0 -python -threads wiringpi.i
|
|
|
|
clean:
|
|
rm -rf build/
|
|
rm -rf dist/
|
|
|
|
install:
|
|
sudo python setup.py install
|