diff --git a/Makefile b/Makefile index 30037853c..fe43dbd3e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ BASE_DIR = $(shell pwd) REBAR = $(BASE_DIR)/rebar DIST = $(BASE_DIR)/rel/$(APP) -all: submods deps compile +all: compile compile: deps @$(REBAR) compile diff --git a/rebar.config b/rebar.config index 37f3894b9..201c42f5b 100644 --- a/rebar.config +++ b/rebar.config @@ -3,13 +3,11 @@ {require_min_otp_vsn, "R17"}. -%% fail_on_warning, -{erl_opts, [debug_info, {parse_transform, lager_transform}]}. - {erl_opts, [warn_export_all, warn_unused_import, {i, "include"}, - {src_dirs, ["src"]}]}. + {src_dirs, ["src"]}, + [debug_info, {parse_transform, lager_transform}]]}. {eunit_opts, [verbose]}.