Changed Makefile
This commit is contained in:
parent
e54539a103
commit
87930f7c3b
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
REBAR=rebar3
|
||||||
|
|
||||||
|
all: release
|
||||||
|
|
||||||
|
release:
|
||||||
|
${REBAR} release
|
||||||
|
|
||||||
|
compile:
|
||||||
|
${REBAR} compile
|
||||||
|
|
||||||
|
doc:
|
||||||
|
${REBAR} edoc
|
||||||
|
|
||||||
|
clean:
|
||||||
|
${REBAR} clean
|
|
@ -36,7 +36,9 @@
|
||||||
%% initialize. To ensure a synchronized start-up procedure, this
|
%% initialize. To ensure a synchronized start-up procedure, this
|
||||||
%% function does not return until Module:init/1 has returned.
|
%% function does not return until Module:init/1 has returned.
|
||||||
%%
|
%%
|
||||||
%% @spec start_link() -> {ok, Pid} | ignore | {error, Error}
|
%% @spec start_link(File, ErrorRegex) -> {ok, Pid} |
|
||||||
|
%% ignore |
|
||||||
|
%% {error, Error}
|
||||||
%% @end
|
%% @end
|
||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
start_link(File, ErrorRegex) ->
|
start_link(File, ErrorRegex) ->
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
%% @doc
|
%% @doc
|
||||||
%% Send an email to test the configuration.
|
%% Send an email to test the configuration.
|
||||||
%%
|
%%
|
||||||
%% @spec email -> binary() | {error, Type, Message}
|
%% @spec email() -> binary() | {error, Type, Message}
|
||||||
%% @end
|
%% @end
|
||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
email() ->
|
email() ->
|
||||||
|
|
Loading…
Reference in New Issue
Block a user