forked from NetComposer/nkcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
93 lines (65 loc) · 2.19 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
90
91
92
93
REPO ?= nkcluster
#RELOADER ?= -s nkreloader
.PHONY: deps release dev
all: deps compile
compile:
./rebar compile
cnodeps:
./rebar compile skip_deps=true
deps:
./rebar get-deps
find deps -name "rebar.config" | xargs perl -pi -e 's/lager, "2.0.3"/lager, ".*"/g'
(cd deps/lager && git checkout 2.1.1)
clean:
./rebar clean
distclean: clean
./rebar delete-deps
tests: compile eunit
eunit:
export ERL_FLAGS="-config test/app.config -args_file test/vm.args"; \
./rebar eunit skip_deps=true
shell:
erl -config util/shell_app.config -args_file util/shell_vm.args -s nkcluster_app $(RELOADER)
shell-test:
erl -config test/app.config -args_file test/vm.args -s nkcluster_app $(RELOADER)
docs:
./rebar skip_deps=true doc
dev1:
erl -config util/dev1.config -args_file util/dev_vm.args \
-name [email protected] -s nkcluster_app $(RELOADER)
dev2:
erl -config util/dev2.config -args_file util/dev_vm.args \
-name [email protected] -s nkcluster_app $(RELOADER)
dev3:
erl -config util/dev3.config -args_file util/dev_vm.args \
-name [email protected] -s nkcluster_app $(RELOADER)
dev4:
erl -config util/dev4.config -args_file util/dev_vm.args \
-name [email protected] -s nkcluster_app $(RELOADER)
dev5:
erl -config util/dev5.config -args_file util/dev_vm.args \
-name [email protected] -s nkcluster_app $(RELOADER)
dev:
erl -config test/app.config -args_file test/vm.args \
-s nkcluster_app $(RELOADER)
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)/.$(REPO)_combo_dialyzer_plt
check_plt:
dialyzer --check_plt --plt $(COMBO_PLT) --apps $(APPS) deps/*/ebin
build_plt:
dialyzer --build_plt --output_plt $(COMBO_PLT) --apps $(APPS) deps/nk*/ebin
dialyzer:
dialyzer -Wno_return --plt $(COMBO_PLT) ebin/nkcluster*.beam #| \
# fgrep -v -f ./dialyzer.ignore-warnings
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)
build_tests:
erlc -pa ebin -pa deps/lager/ebin -o ebin -I include -pa deps/nklib \
+export_all +debug_info +"{parse_transform, lager_transform}" \
test/*.erl