forked from OlivierLD/raspberry-coffee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakeall
More file actions
31 lines (31 loc) · 799 Bytes
/
makeall
File metadata and controls
31 lines (31 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
echo ---------------------------------------------------------------------
echo This will work, but you\'d better run ./gradlew clean build [install]
echo ---------------------------------------------------------------------
#
buildProject() {
WORK_DIR=$1
cd $WORK_DIR
echo Building $WORK_DIR
../gradlew clean build install
cd ..
}
echo Building everything...
buildProject SevenSegDisplay
buildProject I2C.SPI
buildProject ADC
buildProject DAC
buildProject GPIO.01
# buildProject GPS.sun.servo
buildProject PhoneKeyboard3x4
buildProject Arduino.RaspberryPI
buildProject RangeSensor
buildProject PIR
buildProject FONA
buildProject Relay
buildProject WeatherStation
buildProject RasPISamples
buildProject LelandOilDetector
buildProject Serial.IO
buildProject MindWave
echo Done!