forked from msgpack/msgpack-erlang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
61 lines (44 loc) · 1.08 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
.PHONY: compile xref eunit clean doc check make deps test
REBAR=./rebar
all: compile
# for busy typos
m: all
ma: all
mak: all
make: all
console: compile
@erl -pa ebin
deps:
@$(REBAR) update-deps get-deps
compile:
@$(REBAR) compile
xref: compile
@$(REBAR) xref
test: compile xref
@./rebar eunit
clean:
@$(REBAR) clean
doc:
@$(REBAR) doc
APPS = kernel stdlib runtime_tools
COMBO_PLT = $(HOME)/.msgpack_dialyzer_plt
check_plt: xref
dialyzer --check_plt --plt $(COMBO_PLT) --apps $(APPS)
build_plt: xref
dialyzer --build_plt --output_plt $(COMBO_PLT) --apps $(APPS)
dialyzer: xref
@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) ebin | fgrep -v -f ./dialyzer.ignore-warnings
check: compile xref
# @echo "you need $(REBAR) build-plt before make check"
# @$(REBAR) build-plt
dialyzer --check
# @$(REBAR) check-plt
# @$(REBAR) dialyze
crosslang:
@echo "do ERL_LIBS=../ before you make crosslang or fail"
cd test && make crosslang