aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2011-03-23 13:56:17 +0100
committerLoïc Hoguin <[email protected]>2011-03-23 13:56:17 +0100
commite5bce3ca88879fa51d5daf8aa534339173ed90a4 (patch)
treeccf6f23e1cb5bface20d62c5ead082e92220c8fa
parent9fe8141d2a80b6e60a716bc4c318d8929195c808 (diff)
parent07413113d5749dc1c3d9fb66ae36945310609555 (diff)
downloadcowboy-e5bce3ca88879fa51d5daf8aa534339173ed90a4.tar.gz
cowboy-e5bce3ca88879fa51d5daf8aa534339173ed90a4.tar.bz2
cowboy-e5bce3ca88879fa51d5daf8aa534339173ed90a4.zip
Merge remote-tracking branch 'ndim/master'
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ec86c18..f463c99 100644
--- a/Makefile
+++ b/Makefile
@@ -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