This website works better with JavaScript.
首頁
說明
登入
heuzef
/
WiringPi
镜像来自
https://github.com/WiringPi/WiringPi.git
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
9
Wiki
Activity
瀏覽代碼
Updated gpio program to fix some minor issues.
Added top-level build script for lazy building.
pull/22/head
Gordon Henderson
12 年之前
父節點
8fcaefd557
當前提交
c433519cf1
共有
1 個文件被更改
,包括
28 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+28
-0
build
+ 28
- 0
build
查看文件
@@ -0,0 +1,28 @@
#!/bin/bash
if [ x$1 = "xclean" ]; then
echo Cleaning
echo
cd wiringPi
make clean
cd ../gpio
make clean
cd ../examples
make clean
cd ..
else
echo wiringPi Build script - please wait...
echo
cd wiringPi
make
sudo make install
cd ../gpio
make
sudo make install
cd ../examples
make
cd ..
fi
echo
echo All Done.
Write
Preview
Loading…
取消
儲存