이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
도움말
로그인
heuzef
/
WiringPi
의 미러
https://github.com/WiringPi/WiringPi.git
보기
1
좋아요
0
포크
0
코드
이슈
0
릴리즈
9
위키
활동
소스 검색
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.
쓰기
미리보기
불러오는 중...
취소
저장