Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
heuzef
/
WiringPi
espelhamento de
https://github.com/WiringPi/WiringPi.git
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
9
Wiki
Atividade
Ver código fonte
Updated gpio program to fix some minor issues.
Added top-level build script for lazy building.
pull/22/head
Gordon Henderson
12 anos atrás
pai
8fcaefd557
commit
c433519cf1
1 arquivos alterados
com
28 adições
e
0 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+28
-0
build
+ 28
- 0
build
Ver arquivo
@@ -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.
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar