forked from nygge/abnfc
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
56 lines (40 loc) · 1.12 KB
/
Makefile
File metadata and controls
56 lines (40 loc) · 1.12 KB
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
REBAR?=./rebar
.PHONY: all bootstrap clean deps compile xref doc test eunit eqc proper \
compile-for-eunit compile-for-eqc compile-for-proper
all: compile
bootstrap:
@rm -rf ebin
@mkdir ebin
erlc -I include -o ebin src/abnfc.erl
erlc -I include -o ebin src/abnfc_gen.erl
erlc -I include -o ebin src/abnfc_ast.erl
erlc -I include -o ebin src/abnfc_rfc4234.erl
erlc -I include -o ebin src/rfc4234_core.erl
./bootstrap
$(MAKE) clean
$(MAKE) all
deps:
$(REBAR) get-deps
clean:
$(REBAR) clean -r
compile:
$(REBAR) compile
xref:
$(REBAR) xref skip_deps=true
doc:
@rm -rf README.md doc/edoc-info doc/*.md
$(REBAR) -C rebar.config.doc get-deps compile
$(REBAR) -C rebar.config.doc doc skip_deps=true
test: eunit
eunit: compile-for-eunit
$(REBAR) eunit skip_deps=true
eqc: compile-for-eqc
$(REBAR) eqc skip_deps=true
proper: compile-for-proper
@echo "rebar does not implement a 'proper' command" && false
compile-for-eunit:
$(REBAR) compile eunit compile_only=true
compile-for-eqc:
$(REBAR) -D QC -D QC_EQC compile eqc compile_only=true
compile-for-proper:
$(REBAR) -D QC -D QC_PROPER compile eqc compile_only=true