-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
70 lines (47 loc) · 1.47 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
REPO ?= nkmedia
RELOADER ?= -s nklib_reloader
.PHONY: deps release
all: deps compile
compile:
./rebar compile
cnodeps:
./rebar compile skip_deps=true
deps:
./rebar get-deps
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 nkmedia_app $(RELOADER)
sample:
erl -config util/shell_app.config -args_file util/shell_vm.args -s nkmedia_app -s nkmedia_sample $(RELOADER)
shell2:
erl -config util/shell_app.config -args_file util/shell_vm.args $(RELOADER)
docs:
./rebar skip_deps=true doc
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/nkmedia*.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