forked from esl/escalus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
89 lines (68 loc) · 2.82 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.PHONY: all compile test clean
all: compile
compile: rebar
@./rebar get-deps compile > [email protected] 2>&1 \
|| (echo "$@ failed"; cat [email protected]; exit 1)
test: rebar compile
@./rebar skip_deps=true eunit > [email protected] 2>&1 \
&& (printf "%s: " $@; tail -1 [email protected]) \
|| (echo "$@ failed"; cat [email protected]; exit 2)
clean: rebar
@./rebar clean
# Usage: make ct SUITE=user_db_module_SUITE
ct: compile logs
@./run_ct SUITE=$(SUITE) > [email protected] 2>&1 \
&& grep "TEST COMPLETE" [email protected] \
|| (cat [email protected]; exit 3)
logs:
@mkdir -p logs
rebar:
wget https://github.com/rebar/rebar/releases/download/2.2.0/rebar
chmod u+x rebar
deps := $(wildcard deps/*/ebin)
dialyzer/erlang.plt:
@mkdir -p dialyzer
@dialyzer --build_plt --output_plt dialyzer/erlang.plt \
-o dialyzer/erlang.log --apps kernel stdlib crypto common_test ssl erts \
> erlang_plt.log 2>&1; status=$$? ; \
if [ $$status -ne 2 ]; then (cat erlang_plt.log; exit $$status); else exit 0; fi
dialyzer/deps.plt:
@mkdir -p dialyzer
@dialyzer --build_plt --output_plt dialyzer/deps.plt \
-o dialyzer/deps.log $(deps) > deps_plt.log 2>&1; status=$$? ; \
if [ $$status -ne 2 ]; then (cat deps_plt.log; exit $$status); else exit 0; fi
dialyzer/escalus.plt:
@mkdir -p dialyzer
@dialyzer --build_plt --output_plt dialyzer/escalus.plt \
-o dialyzer/escalus.log ebin > escalus_plt.log; status=$$? ; \
if [ $$status -ne 2 ]; then (cat escalus_plt.log; exit $$status); else exit 0; fi
erlang_plt: dialyzer/erlang.plt
@dialyzer --plt dialyzer/erlang.plt --check_plt -o dialyzer/erlang.log \
> [email protected] 2>&1; status=$$? ; \
if [ $$status -ne 2 ]; then (cat [email protected]; exit $$status); else exit 0; fi
deps_plt: dialyzer/deps.plt
@dialyzer --plt dialyzer/deps.plt --check_plt -o dialyzer/deps.log; \
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
escalus_plt: dialyzer/escalus.plt
@dialyzer --plt dialyzer/escalus.plt --check_plt -o dialyzer/escalus.log \
> [email protected] 2>&1; status=$$? ; \
if [ $$status -ne 2 ]; then (cat [email protected]; exit $$status); else exit 0; fi
dialyzer: erlang_plt deps_plt escalus_plt
@dialyzer --plts dialyzer/*.plt --no_check_plt \
--get_warnings -o dialyzer/error.log ebin; \
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
MIM := deps/mongooseim
MIM_REL := ${MIM}/rel/mongooseim
mongooseim-start: ${MIM_REL}
@${MIM_REL}/bin/mongooseimctl start && ${MIM_REL}/bin/mongooseimctl started \
|| (echo "$@ failed"; exit 4)
mongooseim-stop: ${MIM_REL}
@${MIM_REL}/bin/mongooseimctl stop && ${MIM_REL}/bin/mongooseimctl stopped > /dev/null 2>&1 \
|| (echo "$@ failed"; exit 5)
extra-deps: ${MIM}
${MIM_REL}: ${MIM}
@cd ${MIM} && make rel > rel.log 2>&1 \
|| (echo "generating MongooseIM release failed"; cat rel.log; exit 6)
${MIM}:
@ESCALUS_EXTRA_DEPS=mongooseim ./rebar get-deps > mim.log 2>&1 \
|| (echo "building MongooseIM failed"; cat mim.log; exit 7)