fix issue #102 - 'make clean' cannot work
This commit is contained in:
parent
f33cf11cd5
commit
4d89ec1ed5
|
@ -2,7 +2,9 @@
|
||||||
%% ex: ts=4 sw=4 ft=erlang et
|
%% ex: ts=4 sw=4 ft=erlang et
|
||||||
|
|
||||||
{require_min_otp_vsn, "R17"}.
|
{require_min_otp_vsn, "R17"}.
|
||||||
|
{cover_enabled, true}.
|
||||||
|
|
||||||
|
%% fail_on_warning,
|
||||||
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
|
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
|
||||||
|
|
||||||
{erl_opts, [warn_export_all,
|
{erl_opts, [warn_export_all,
|
||||||
|
@ -19,9 +21,8 @@
|
||||||
|
|
||||||
{sub_dirs, [
|
{sub_dirs, [
|
||||||
"rel",
|
"rel",
|
||||||
"apps/emqtt",
|
"apps/*/",
|
||||||
"apps/emqttd",
|
"plugins/*/"]}.
|
||||||
"plugins/emqttd_plugin_demo"]}.
|
|
||||||
|
|
||||||
{deps, [
|
{deps, [
|
||||||
{gproc, "0.4.*", {git, "git://github.com/uwiger/gproc.git", {branch, "master"}}},
|
{gproc, "0.4.*", {git, "git://github.com/uwiger/gproc.git", {branch, "master"}}},
|
||||||
|
@ -29,3 +30,5 @@
|
||||||
{esockd, "2.*", {git, "git://github.com/emqtt/esockd.git", {branch, "master"}}},
|
{esockd, "2.*", {git, "git://github.com/emqtt/esockd.git", {branch, "master"}}},
|
||||||
{mochiweb, ".*", {git, "git://github.com/emqtt/mochiweb.git", {branch, "master"}}}
|
{mochiweb, ".*", {git, "git://github.com/emqtt/mochiweb.git", {branch, "master"}}}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
|
{recursive_cmds, [ct, eunit, clean]}.
|
||||||
|
|
Loading…
Reference in New Issue