-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathmakeall.sh
More file actions
32 lines (32 loc) · 887 Bytes
/
makeall.sh
File metadata and controls
32 lines (32 loc) · 887 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
32
#!/bin/bash
echo -e "---------------------------------------------------------------------"
echo -e "This will work, but you\'d better run ./gradlew clean build [install] [shadowJar]"
echo -e "Might (will) not be 100% up-to-date..."
echo -e "---------------------------------------------------------------------"
#
buildProject() {
WORK_DIR=$1
cd ${WORK_DIR} || exit
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 HC-SR04
buildProject PIR
buildProject FONA
buildProject Relay
# buildProject WeatherStation
# buildProject RasPISamples
buildProject LelandOilDetector
buildProject Serial-IO
buildProject MindWave
echo Done!