-
Notifications
You must be signed in to change notification settings - Fork 18
/
Emakefile.in
97 lines (97 loc) · 2.06 KB
/
Emakefile.in
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
% behaviors first - otherwise there are compile warnings
{["src/cloud_beh.erl",
"src/crdt/types/crdt_beh.erl",
"src/db_backend_beh.erl",
"src/gen_component.erl",
"src/gossip_beh.erl",
"src/gossip_load_beh.erl",
"src/lb_active_beh.erl",
"src/lb_psv_beh.erl",
"src/pdb_beh.erl",
"src/rm_beh.erl",
"src/rrepair/hfs_beh.erl",
"src/rt_beh.erl",
"src/slide_beh.erl",
"src/transactions/tx_op_beh.erl"],
[debug_info,
inline_list_funcs,
warn_exported_vars,
warn_missing_spec,
warn_untyped_record,
warn_unused_import,
{outdir, "ebin"},
{i, "include"},
{i, "contrib/yaws/include"},
{i, "contrib/log4erl/include"}
@EMAKEFILEDEFINES@
@YAWS_OPTIONS@
]}.
% now the source and all of its sub-directories:
{["src/*",
"src/comm_layer/*",
"src/cp/*",
"src/crdt/*",
"src/crdt/types/*",
"src/json/*",
"src/paxos/*",
"src/rbr/*",
"src/rrepair/*",
"src/simulation/*",
"src/time/*",
"src/transactions/*",
"src/tx/*"],
[debug_info,
inline_list_funcs,
warn_exported_vars,
warn_missing_spec,
warn_untyped_record,
warn_unused_import,
{outdir, "ebin"},
{i, "ebin"},
{i, "include"},
{i, "contrib/yaws/include"},
{i, "contrib/log4erl/include"}
@EMAKEFILEDEFINES@
@YAWS_OPTIONS@
]}.
% unit tests:
{"test/*",
[debug_info,
inline_list_funcs,
nowarn_export_all,
warn_exported_vars,
warn_missing_spec,
warn_untyped_record,
warn_unused_import,
{outdir, "test"},
{i, "include"}
@EMAKEFILEDEFINES@
]}.
% contributing libraries:
{"contrib/log4erl/src/*",
[debug_info,
inline_list_funcs,
nowarn_obsolete_guard,
nowarn_unused_function,
nowarn_unused_vars,
{outdir, "contrib/log4erl/ebin/"},
{i, "contrib/log4erl/include"}
]}.
{"contrib/dotto/src/*",
[debug_info,
inline_list_funcs,
nowarn_obsolete_guard,
nowarn_unused_function,
nowarn_unused_vars,
{outdir, "contrib/dotto/ebin/"}
]}.
{"contrib/yaws/src/*",
[debug_info,
inline_list_funcs,
nowarn_obsolete_guard,
nowarn_unused_function,
nowarn_unused_vars,
{outdir, "contrib/yaws/ebin/"},
{i, "contrib/yaws/include"}
@YAWS_OPTIONS@
]}.