-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
65 lines (64 loc) · 1.57 KB
/
Makefile
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
63
64
65
.SILENT:
default:
make test
build:
go build -o gago
test:
make build
./gago run --file examples/test.gago --v
btest:
make build
./gago run --file examples/test.gago
test1:
make build
./gago run --file examples/test1.gago --v
btest1:
make build
./gago run --file examples/test1.gago
example1:
make build
echo "\n\n\n\033[95mrunning name example...\033[0m"
./gago run --file examples/name.gago
example2:
make build
echo "\n\n\n\033[95mrunning name example... (v0.4-alpha)\033[0m"
./gago run --file examples/v0.4name.gago
example3:
make build
echo "\n\n\n\033[95mrunning sleep example...\033[0m"
./gago run --file examples/sleep.gago
example4:
make build
echo "\n\n\n\033[95mrunning math example...\033[0m"
./gago run --file examples/math.gago
example5:
make build
echo "\n\n\n\033[95mrunning float example...\033[0m"
./gago run --file examples/float.gago
example6:
make build
echo "\n\n\n\033[95mrunning null example...\033[0m"
./gago run --file examples/null.gago
example7:
make build
echo "\n\n\n\033[95mrunning bool example...\033[0m"
./gago run --file examples/bool.gago
example8:
make build
echo "\n\n\n\033[95mrunning reassignment example...\033[0m"
./gago run --file examples/reassignment.gago
example9:
make build
echo "\n\n\n\033[95mrunning array example...\033[0m"
./gago run --file examples/array.gago
example10:
make build
echo "\n\n\n\033[95mrunning object example...\033[0m"
./gago run --file examples/object.gago
example11:
make build
echo "\n\n\n\033[95mrunning string example...\033[0m"
./gago run --file examples/string.gago
xrepl:
make build
./gago