Files
erlang-sqlite3/Makefile
2010-10-14 12:25:03 +04:00

23 lines
280 B
Makefile

REBAR=./rebar
all: compile
compile:
$(REBAR) get-deps compile
test: all
$(REBAR) skip_deps=true eunit
clean:
-rm -rf deps ebin priv doc/*
docs:
$(REBAR) doc
ifeq ($(wildcard dialyzer/sqlite3.plt),)
static:
$(REBAR) build_plt analyze
else
static:
$(REBAR) analyze
endif