소스 검색

Updated gpio program to fix some minor issues.

Added top-level build script for lazy building.
pull/22/head
Gordon Henderson 12 년 전
부모
커밋
c433519cf1
1개의 변경된 파일28개의 추가작업 그리고 0개의 파일을 삭제
  1. +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.

불러오는 중...
취소
저장