-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathrebar.config
More file actions
21 lines (19 loc) · 795 Bytes
/
rebar.config
File metadata and controls
21 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{erl_opts, [debug_info
]}.
{erl_first_files, ["src/wrangler_parse.yrl"
,"src/wrangler_parse.erl"
,"src/wrangler_expand_rule.erl"
,"src/wrangler_scan.erl"
,"src/wrangler_epp_dodger.erl"
,"src/wrangler_syntax.erl"
,"src/wrangler_syntax_lib.erl"
,"src/wrangler_misc.erl"
,"src/api_ast_traverse.erl"
,"src/api_refac.erl"
]}.
{post_hooks, [{clean, "cd ./c_src && make clean && cd ../.."}
,{clean, "rm -f src/wrangler_parse.erl"}
,{clean, "rm -f priv/suffixtree priv/gsuffixtree"}
,{compile, "./configure"}
,{compile, "make conf c elisp"}
]}.