forked from NetComposer/nkbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
98 lines (71 loc) · 2.21 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
94
95
96
97
98
REPO ?= nkbase
#RELOADER ?= -s nkreloader
.PHONY: rel stagedevrel deps release
all: deps compile
compile:
./rebar compile
compile-no-deps:
./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 nkbase_app $(RELOADER)
dev_clean:
rm -rf dev/1/data
rm -rf dev/2/data
rm -rf dev/3/data
rm -rf dev/4/data
rm -rf dev/5/data
dev1:
erl -config util/dev1.config -args_file util/dev_vm.args \
-name [email protected] -s nkbase_app
dev1-master:
erl -config util/dev1.config -args_file util/dev_vm.args \
-name [email protected] -s nkbase_app -force_master
dev2:
erl -config util/dev2.config -args_file util/dev_vm.args \
-name [email protected] -s nkbase_app
dev3:
erl -config util/dev3.config -args_file util/dev_vm.args \
-name [email protected] -s nkbase_app
dev4:
erl -config util/dev4.config -args_file util/dev_vm.args \
-name [email protected] -s nkbase_app
dev5:
erl -config util/dev5.config -args_file util/dev_vm.args \
-name [email protected] -s nkbase_app
# Still failling
# docs:
# ./rebar skip_deps=true doc
# @cp -R apps/riak_core/doc doc/riak_core
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/*/ebin
dialyzer:
dialyzer -Wno_return --plt $(COMBO_PLT) ebin/nkbase*.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 \
+export_all +debug_info +"{parse_transform, lager_transform}" \
test/*.erl