-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
68 lines (47 loc) · 1.1 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
PROJECT=lethink
REBAR=`which rebar || printf ./rebar`
# Main
.PHONY: all
all: get-deps compile
.PHONY: clean
clean:
@$(REBAR) clean
.PHONY: distclean
distclean: clean-docs
rm -fr deps/
.PHONY: get-deps
get-deps:
@$(REBAR) get-deps
.PHONY: compile
compile:
@$(REBAR) compile
# Docs
docs: clean-docs
@$(REBAR) doc skip_deps=true
clean-docs:
rm -f doc/*.css
rm -f doc/*.html
rm -f doc/*.png
rm -f doc/edoc-info
# Tests.
deps/proper:
@$(REBAR) -C rebar.tests.config get-deps
cd deps/proper && $(REBAR) compile
tests: clean deps/proper all eunit ct
eunit: all
@$(REBAR) eunit skip_deps=true
ct: all
@$(REBAR) ct skip_deps=true
# Dialyzer
APPS = kernel stdlib sasl erts ssl tools os_mon runtime_tools crypto inets \
xmerl webtool snmp public_key mnesia eunit syntax_tools compiler
COMBO_PLT = .$(PROJECT).plt
check_plt: compile
dialyzer --check_plt --plt $(COMBO_PLT) --apps $(APPS) deps ebin
build_plt: compile
dialyzer --build_plt --output_plt $(COMBO_PLT) --apps $(APPS) deps ebin
dialyzer: compile
dialyzer -Wno_return --plt $(COMBO_PLT) ebin
# xref
xref:
@$(REBAR) xref skip_deps=true