Files
esqlite/Makefile
2011-12-31 10:37:35 +01:00

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)