mirror of
git://soft.sys114.com/WiringPi2-Python
synced 2026-02-04 19:20:36 +09:00
10 lines
174 B
Makefile
10 lines
174 B
Makefile
all: bindings
|
|
python setup.py build
|
|
|
|
bindings:
|
|
grep -PhR "(?s)extern [^\"](.*);" WiringPi/ > bindings.i
|
|
swig2.0 -python wiringpi.i
|
|
|
|
install:
|
|
sudo python setup.py install
|