-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
89 lines (63 loc) · 1.75 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
REBAR = $(shell pwd)/rebar
.PHONY: deps rel stagedevrel
all: deps compile
compile:
$(REBAR) compile
deps:
$(REBAR) get-deps
clean:
$(REBAR) clean
distclean: clean devclean relclean
$(REBAR) delete-deps
test:
$(REBAR) skip_deps=true eunit
rel: all
$(REBAR) generate
relclean:
rm -rf rel/rebar_ci
devrel: dev1 dev2 dev3
###
### Docs
###
docs:
$(REBAR) skip_deps=true doc
##
## Developer targets
##
stage : rel
$(foreach dep,$(wildcard deps/* wildcard apps/*), rm -rf rel/rebar_ci/lib/$(shell basename $(dep))-* && ln -sf $(abspath $(dep)) rel/rebar_ci/lib;)
stagedevrel: dev1 dev2 dev3
$(foreach dev,$^,\
$(foreach dep,$(wildcard deps/* wildcard apps/*), rm -rf dev/$(dev)/lib/$(shell basename $(dep))-* && ln -sf $(abspath $(dep)) dev/$(dev)/lib;))
devrel: dev1 dev2 dev3
devclean:
rm -rf dev
dev1 dev2 dev3: all
mkdir -p dev
(cd rel && $(REBAR) generate target_dir=../dev/$@ overlay_vars=vars/$@.config)
##
## 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 = $(HOME)/.rebar_ci_combo_dialyzer_plt
check_plt: deps compile
dialyzer --check_plt --plt $(COMBO_PLT) --apps $(APPS) \
deps/*/ebin apps/*/ebin
build_plt: deps compile
dialyzer --build_plt --output_plt $(COMBO_PLT) --apps $(APPS) \
deps/*/ebin apps/*/ebin
dialyzer: deps compile
@echo
@echo Use "'make check_plt'" to check PLT prior to using this target.
@echo Use "'make build_plt'" to build PLT prior to using this target.
@echo
@sleep 1
dialyzer -Wno_return --plt $(COMBO_PLT) deps/*/ebin apps/*/ebin
cleanplt:
@echo
@echo "Are you sure? It takes about 1/2 hour to re-build."
@echo Deleting $(COMBO_PLT) in 5 seconds.
@echo
sleep 5
rm $(COMBO_PLT)