forked from sschellhoff/SFMLGameDevelopmentByExample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·62 lines (50 loc) · 829 Bytes
/
build.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
echo "building chapter_01"
cd chapter_01/1.\ Opening\ the\ window/
./build.sh
cd ../2.\ Rendering\ the\ rectangle/
./build.sh
cd ../3.\ Drawing\ a\ sprite/
./build.sh
cd ../..
echo "building chapter_02"
cd chapter_02/1.\ Core\ game\ structure
./build.sh
cd ../..
echo "building chapter_03"
cd chapter_03/
./build.sh
cd ..
echo "building chapter_04"
cd chapter_04/
./build.sh
cd ..
echo "building chapter_05"
cd chapter_05/
./build.sh
cd ..
echo "building chapter_06"
cd chapter_06/
./build.sh
cd ..
echo "building chapter_07"
cd chapter_07/
./build.sh
cd ..
echo "building chapter_08"
cd chapter_08/
./build.sh
cd ..
echo "building chapter_09"
cd chapter_09/
./build.sh
cd ..
echo "building chapter_10"
cd chapter_10/
./build.sh
cd ..
echo "building chapter_11"
cd chapter_11/
./build.sh
cd ..
echo "done"