forked from comtihon/mongodb-erlang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (37 loc) · 944 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
PROJECT = mongodb
DIALYZER = dialyzer
REBAR = $(shell which rebar || echo ./rebar)
all: app
# Application.
deps:
@$(REBAR) get-deps
app: deps
@$(REBAR) compile
clean:
@$(REBAR) clean
rm -f test/*.beam
rm -f erl_crash.dump
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.
tests: clean app eunit ct
eunit:
@$(REBAR) eunit skip_deps=true
ct: app
@$(REBAR) ct skip_deps=true
# 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