summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2014-05-22 11:54:26 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2014-05-22 11:56:54 +0200
commitbf631718935269ab5424c38a47423f97b508ad35 (patch)
tree2e63597e9a05d1e6cd43ecfc441559cfc0a57e82 /include
parent755c6023d181b4aa87a581ac71e96d2de90a015f (diff)
downloadrebar-bf631718935269ab5424c38a47423f97b508ad35.tar.gz
Move include/rebar.hrl to src/rebar.hrl
rebar.hrl is only meant to be used by src/*.
Diffstat (limited to 'include')
-rw-r--r--include/rebar.hrl14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/rebar.hrl b/include/rebar.hrl
deleted file mode 100644
index b19fdd3..0000000
--- a/include/rebar.hrl
+++ /dev/null
@@ -1,14 +0,0 @@
-%% TODO: rename FAIL to ABORT once we require at least R13B04 for
-%% building rebar. Macros with different arity were not supported by the
-%% compiler before 13B04.
--define(FAIL, rebar_utils:abort()).
--define(ABORT(Str, Args), rebar_utils:abort(Str, Args)).
-
--define(CONSOLE(Str, Args), io:format(Str, Args)).
-
--define(DEBUG(Str, Args), rebar_log:log(debug, Str, Args)).
--define(INFO(Str, Args), rebar_log:log(info, Str, Args)).
--define(WARN(Str, Args), rebar_log:log(warn, Str, Args)).
--define(ERROR(Str, Args), rebar_log:log(standard_error, error, Str, Args)).
-
--define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).