forked from krestenkrab/hanoidb
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (27 loc) · 690 Bytes
/
Makefile
File metadata and controls
43 lines (27 loc) · 690 Bytes
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
TARGET= hanoidb
REBAR= ./rebar
DIALYZER= dialyzer
.PHONY: plt analyze all deps compile get-deps clean
all: compile
deps: get-deps
get-deps:
@$(REBAR) get-deps
compile:
@$(REBAR) compile
clean:
@$(REBAR) clean
test: eunit
eunit: compile clean-test-btrees
@$(REBAR) eunit skip_deps=true
eunit_console:
erl -pa .eunit deps/*/ebin
clean-test-btrees:
rm -fr .eunit/Btree_* .eunit/simple
plt: compile
$(DIALYZER) --build_plt --output_plt .$(TARGET).plt -pa deps/*/ebin --apps kernel stdlib
analyze:
$(DIALYZER) --plt .$(TARGET).plt -pa deps/*/ebin ebin
analyze-nospec:
$(DIALYZER) --plt .$(TARGET).plt -pa deps/*/ebin --no_spec ebin
repl:
erl -pz deps/*/ebin -pa ebin