1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal/erlang/rebar.config
Nathan Fiedler 77db07c9be Step 5 of Make-a-Lisp for Erlang
make test^erlang^step0 passes
make test^erlang^step1 passes
make test^erlang^step2 passes
make test^erlang^step3 passes
make test^erlang^step4 passes
make test^erlang^step5 "passes" (returns 50005000 for last test)
2015-04-04 09:15:13 -07:00

20 lines
314 B
Erlang

%%
%% rebar configuration file (https://github.com/rebar/rebar)
%%
{require_otp_vsn, "17"}.
{erl_opts, [debug_info, fail_on_warning]}.
{clean_files, [
"ebin",
"src/*.beam",
"mal",
"step0_repl",
"step1_read_print",
"step2_eval",
"step3_env",
"step4_if_fn_do",
"step5_tco"
]}.