forked from kbarber/erlang-mdigraph
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
44 lines (35 loc) · 991 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
all: compile
compile:
./rebar compile
clean:
./rebar clean
rm -fr logs
rm -f test/*.beam
test: all
./rebar skip_deps=true eunit
./rebar ct
eunit:
./rebar skip_deps=true eunit suites=so_digraph,test_so_digraph
docs:
./rebar skip_deps=true doc
APPS = kernel stdlib sasl erts ssl tools os_mon runtime_tools crypto inets\
xmerl snmp public_key mnesia eunit syntax_tools compiler eunit webtool
COMBO_PLT = $(HOME)/.xl_digraph_dialyzer_plt
check_plt: compile
dialyzer --check_plt --plt $(COMBO_PLT) --apps $(APPS) \
build_plt: compile
dialyzer --build_plt --output_plt $(COMBO_PLT) --apps $(APPS) \
dialyzer: all
@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
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)