-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild_all.sh
executable file
·39 lines (31 loc) · 976 Bytes
/
build_all.sh
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
33
34
35
36
37
38
39
#! /bin/sh
set -eux
make clean
make -j build_type=bootloader model=TS100
rm -rf build/*.o build/*.d
make -j build_type=runtime model=TS100
rm -rf build/*.o build/*.d
make -j build_type=bootloader model=TS80
rm -rf build/*.o build/*.d
make -j build_type=runtime model=TS80
rm -rf build/*.o build/*.d
make -j build_type=bootloader model=TS80P
rm -rf build/*.o build/*.d
make -j build_type=runtime model=TS80P
rm -rf build/*.o build/*.d
make -j build_type=bootloader model=MHP30
rm -rf build/*.o build/*.d
make -j build_type=runtime model=MHP30
rm -rf build/*.o build/*.d
make -j build_type=bootloader model=S60P
rm -rf build/*.o build/*.d
make -j build_type=runtime model=S60P
rm -rf build/*.o build/*.d
make -j build_type=bootloader model=S99
rm -rf build/*.o build/*.d
make -j build_type=runtime model=S99
rm -rf build/*.o build/*.d
make -j build_type=bootloader model=TS101
rm -rf build/*.o build/*.d
make -j build_type=runtime model=TS101
rm -rf build/*.o build/*.d