diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2009-11-25 21:55:47 -0700 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2009-11-25 21:55:47 -0700 |
commit | e4a9310a9769d432ea8d1fa32710ebb02eda2c60 (patch) | |
tree | f47bd877a37e71eae91baca8cfeda542968be0e9 /include | |
parent | fd8794dae791c80bfe8e4ab1aa3a9c97370695a9 (diff) |
Adding support for basic compilation ordering
Diffstat (limited to 'include')
-rw-r--r-- | include/rebar.hrl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/rebar.hrl b/include/rebar.hrl index 4b75577..fba5885 100644 --- a/include/rebar.hrl +++ b/include/rebar.hrl @@ -2,5 +2,7 @@ -record(global_state, { working_dir }). -define(CONSOLE(Str, Args), io:format(Str, Args)). +-define(WARN(Str, Args), io:format("WARN: " ++ Str, Args)). -define(FAIL, throw({error, failed})). + |