added Makefile

This commit is contained in:
Maas
2011-10-19 10:14:13 +02:00
parent 1125eb1ad7
commit 2ccdf4946b

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
REBAR=./rebar
all: compile
rebar:
wget https://bitbucket.org/basho/rebar/downloads/rebar -O $(REBAR)
chmod u+x $(REBAR)
compile: rebar
$(REBAR) compile
test: compile
$(REBAR) eunit
clean: rebar
$(REBAR) clean
distclean:
rm $(REBAR)