-
Notifications
You must be signed in to change notification settings - Fork 268
/
Makefile
55 lines (38 loc) · 979 Bytes
/
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
PROJECT = mongodb
DIALYZER = dialyzer
all: app
# Application.
deps:
./rebar3 get-deps
app: deps
./rebar3 compile
clean:
./rebar3 clean
rm -f test/*.beam
rm -f erl_crash.dump
docs: clean-docs
./rebar3 doc skip_deps=true
clean-docs:
rm -f doc/*.css
rm -f doc/*.html
rm -f doc/*.png
rm -f doc/edoc-info
# Tests.
tests: report-rebar3-version clean app eunit ct
eunit:
./rebar3 eunit skip_deps=true
ct: app
./rebar3 ct skip_deps=true
report-rebar3-version:
./rebar3 version
# Dialyzer.
.$(PROJECT).plt:
@$(DIALYZER) --build_plt --output_plt .$(PROJECT).plt -r deps \
--apps erts kernel stdlib sasl inets crypto public_key ssl mnesia syntax_tools asn1
clean-plt:
rm -f .$(PROJECT).plt
build-plt: clean-plt .$(PROJECT).plt
dialyze: .$(PROJECT).plt
@$(DIALYZER) -I include -I deps --src -r src --plt .$(PROJECT).plt --no_native \
-Werror_handling -Wrace_conditions -Wunmatched_returns
.PHONY: deps clean-plt build-plt dialyze report-rebar3-version