DISABLE FDs (REMOVE ME).
[jackhill/mal.git] / erlang / rebar.config
1 %%
2 %% rebar configuration file (https://github.com/rebar/rebar)
3 %%
4
5 {require_otp_vsn, "17|18"}.
6
7 {erl_opts, [debug_info, fail_on_warning]}.
8
9 {clean_files, [
10 "ebin",
11 "src/*.beam",
12 "mal",
13 "step0_repl",
14 "step1_read_print",
15 "step2_eval",
16 "step3_env",
17 "step4_if_fn_do",
18 "step5_tco",
19 "step6_file",
20 "step7_quote",
21 "step8_macros",
22 "step9_try",
23 "stepA_mal"
24 ]}.