-
Notifications
You must be signed in to change notification settings - Fork 1
/
Emakefile
78 lines (68 loc) · 938 Bytes
/
Emakefile
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
%% 测试
{'core/engine/test*',
[debug_info,
{outdir, "ebin/test"}
]
}.
%% 战场引擎
{'core/engine/*', [
{outdir, "ebin"}
]
}.
%% 各个战队
%% 自带例子
{'army/example_army/*',
[debug_info,
{i, "core/engine"},
{outdir, "ebin"}
]
}.
%% 其他为各人自己开发
{'army/neoedmund/*',
[debug_info,
{i, "core/engine"},
{outdir, "ebin"}
]
}.
{'army/karlcpp.random_army/*',
[debug_info,
{i, "core/engine"},
{outdir, "ebin"}
]
}.
{'army/hwh/*',
[
{i, "core/engine"},
{outdir, "ebin/hwh"}
]
}.
{'army/maddog/*',
[
{i, "core/engine"},
{outdir, "ebin"}
]
}.
{'army/langxianzhe/*',
[
{i, "core/engine"},
{outdir, "ebin"}
]
}.
{'army/laofan/*',
[
{i, "core/engine"},
{outdir, "ebin"}
]
}.
{'army/zoomquiet/*',
[
{i, "core/engine"},
{outdir, "ebin"}
]
}.
{'army/h1/*',
[
{i, "core/engine"},
{outdir, "ebin/h1"}
]
}.