-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
47 lines (31 loc) · 1.04 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
APPLICATION := app_cache
ERL := erl
EPATH := -pa ebin -pz deps/*/ebin
TEST_EPATH := -pa .eunit -pz deps/*/ebin
PLT = .app_cache_plt
ERL_LIB_DIR := $(shell if [ -d /usr/lib/erlang/lib ] ; then echo /usr/lib/erlang/lib ; else echo /usr/local/lib/erlang/lib ; fi)
PLT_APPS := $(shell ls $(ERL_LIB_DIR) | grep -v interface | sed -e 's/-[0-9.]*//')
.PHONY: all build-plt compile console deps doc clean depclean distclean dialyze release telstart test test-console
all: compile
compile:
@rebar compile
deps:
@rebar get-deps
doc:
@rebar skip_deps=true doc
clean:
@rebar skip_deps=true clean
depclean:
@rebar clean
distclean:
@rebar delete-deps
build-plt:
@dialyzer --build_plt --apps kernel stdlib sasl crypto ssl inets tools xmerl runtime_tools compiler syntax_tools mnesia public_key
dialyze: compile
@dialyzer -r ebin -r deps/*/ebin -Wno_undefined_callbacks
test: compile
@rebar skip_deps=true ct verbose=1
console:
$(ERL) -sname $(APPLICATION) $(EPATH) -config app
test-console: test
$(ERL) -sname $(APPLICATION)_test $(TEST_EPATH) -config app