diff options
author | Hans Ulrich Niedermann <[email protected]> | 2011-03-23 10:54:09 +0100 |
---|---|---|
committer | Hans Ulrich Niedermann <[email protected]> | 2011-03-23 10:54:09 +0100 |
commit | 07413113d5749dc1c3d9fb66ae36945310609555 (patch) | |
tree | ccf6f23e1cb5bface20d62c5ead082e92220c8fa | |
parent | 9fe8141d2a80b6e60a716bc4c318d8929195c808 (diff) | |
download | cowboy-07413113d5749dc1c3d9fb66ae36945310609555.tar.gz cowboy-07413113d5749dc1c3d9fb66ae36945310609555.tar.bz2 cowboy-07413113d5749dc1c3d9fb66ae36945310609555.zip |
Makefile: Use a REBAR variable
Using a REBAR variable makes it easy for the user to override
the REBAR to be called.
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,13 +1,15 @@ # See LICENSE for licensing information. +REBAR = ./rebar + all: app app: - @./rebar compile + @$(REBAR) compile clean: - @./rebar clean + @$(REBAR) clean rm -f erl_crash.dump test: - @./rebar eunit + @$(REBAR) eunit |