-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
67 lines (45 loc) · 1.75 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
66
67
update_algos:
export UPDATER_ROOT=$$(pwd)/algos && cd ex && mix update
update_apps:
export UPDATER_ROOT=$$(pwd)/apps && cd ex && mix update
update_async:
export UPDATER_ROOT=$$(pwd)/async && cd ex && mix update
update_cli:
export UPDATER_ROOT=$$(pwd)/cli && cd ex && mix update
update_clients:
export UPDATER_ROOT=$$(pwd)/clients && cd ex && mix update
update_db:
export UPDATER_ROOT=$$(pwd)/dbs && cd ex && mix update
update_editors:
export UPDATER_ROOT=$$(pwd)/editors && cd ex && mix update
update_formats:
export UPDATER_ROOT=$$(pwd)/formats && cd ex && mix update
update_gamedev:
export UPDATER_ROOT=$$(pwd)/gamedev && cd ex && mix update
update_gui:
export UPDATER_ROOT=$$(pwd)/gui && cd ex && mix update
update_langs:
export UPDATER_ROOT=$$(pwd)/langs && cd ex && mix update
update_macros:
export UPDATER_ROOT=$$(pwd)/macros && cd ex && mix update
update_math:
export UPDATER_ROOT=$$(pwd)/math && cd ex && mix update
update_prod:
export UPDATER_ROOT=$$(pwd)/prod && cd ex && mix update
update_reasoning:
export UPDATER_ROOT=$$(pwd)/rpc && cd ex && mix update
update_rpc:
export UPDATER_ROOT=$$(pwd)/prod && cd ex && mix update
update_schema:
export UPDATER_ROOT=$$(pwd)/schema && cd ex && mix update
update_system:
export UPDATER_ROOT=$$(pwd)/system && cd ex && mix update
update_testing:
export UPDATER_ROOT=$$(pwd)/testing && cd ex && mix update
update_tutorials:
export UPDATER_ROOT=$$(pwd)/tutorials && cd ex && mix update
update_utils:
export UPDATER_ROOT=$$(pwd)/utils && cd ex && mix update
update_web:
export UPDATER_ROOT=$$(pwd)/web && cd ex && mix update
update_all: update_algos update_cli update_editors update_formats update_gamedev update_langs update_macros update_schema update_system update_testing update_utils update_web