-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
83 lines (59 loc) · 1.92 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
update_admin:
export UPDATER_ROOT=$$(pwd)/admin && cd ex && mix update
update_algos:
export UPDATER_ROOT=$$(pwd)/algos && cd ex && mix update
update_cms:
export UPDATER_ROOT=$$(pwd)/cms && cd ex && mix update
update_config:
export UPDATER_ROOT=$$(pwd)/config && cd ex && mix update
update_dbs:
export UPDATER_ROOT=$$(pwd)/dbs && cd ex && mix update
update_distributed:
export UPDATER_ROOT=$$(pwd)/distributed && cd ex && mix update
update_ecto:
export UPDATER_ROOT=$$(pwd)/ecto && cd ex && mix update
update_extend:
export UPDATER_ROOT=$$(pwd)/extend && cd ex && mix update
update_formats:
export UPDATER_ROOT=$$(pwd)/formats && cd ex && mix update
update_fun:
export UPDATER_ROOT=$$(pwd)/fun && cd ex && mix update
update_langs:
export UPDATER_ROOT=$$(pwd)/langs && cd ex && mix update
update_lisp:
export UPDATER_ROOT=$$(pwd)/lisp && cd ex && mix update
update_macros:
export UPDATER_ROOT=$$(pwd)/macros && cd ex && mix update
update_msgque:
export UPDATER_ROOT=$$(pwd)/msgque && cd ex && mix update
update_prod:
export UPDATER_ROOT=$$(pwd)/prod && cd ex && mix update
update_protection:
export UPDATER_ROOT=$$(pwd)/protection && cd ex && mix update
update_otp:
export UPDATER_ROOT=$$(pwd)/otp && cd ex && mix update
update_schema:
export UPDATER_ROOT=$$(pwd)/schema && cd ex && mix update
update_quality:
export UPDATER_ROOT=$$(pwd)/quality && cd ex && mix update
update_rpc:
export UPDATER_ROOT=$$(pwd)/rpc && cd ex && mix update
update_testing:
export UPDATER_ROOT=$$(pwd)/testing && cd ex && mix update
update_terminal:
export UPDATER_ROOT=$$(pwd)/terminal && 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
all: update_algos \
update_config \
update_dbs \
update_distributed \
update_ecto \
update_otp \
update_protection \
update_rpc \
update_schema \
update_testing \
update_terminal