Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
heuzef
/
WiringPi
réplica de
https://github.com/WiringPi/WiringPi.git
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
9
Wiki
Actividad
Explorar el Código
Updated gpio program to fix some minor issues.
Added top-level build script for lazy building.
pull/22/head
Gordon Henderson
hace 12 años
padre
8fcaefd557
commit
c433519cf1
Se han
modificado 1 ficheros
con
28 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+28
-0
build
+ 28
- 0
build
Ver fichero
@@ -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.
Escribir
Vista previa
Cargando…
Cancelar
Guardar