20 lines
242 B
Makefile
20 lines
242 B
Makefile
REBAR=./rebar
|
|
|
|
all: compile
|
|
|
|
rebar:
|
|
wget https://github.com/downloads/basho/rebar/rebar -O $(REBAR)
|
|
chmod u+x $(REBAR)
|
|
|
|
compile: rebar
|
|
$(REBAR) compile
|
|
|
|
test: compile
|
|
$(REBAR) eunit
|
|
|
|
clean: rebar
|
|
$(REBAR) clean
|
|
|
|
distclean:
|
|
rm $(REBAR)
|