-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (28 loc) · 866 Bytes
/
Makefile
File metadata and controls
46 lines (28 loc) · 866 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
.PHONY: all compile xref clean server client edoc lux-runpty
all: CA compile xref lux-runpty
lux-runpty: ./_build/default/lib/lux/priv/bin/runpty
./_build/default/lib/lux/priv/bin/runpty:
(cd ./_build/default/lib/lux ; \
autoconf ; \
./configure ; \
make)
compile:
rebar3 compile
xref:
rebar3 xref
edoc:
rebar3 edoc
CA:
git clone --depth 1 https://github.com/etnt/myca.git CA
clean:
rebar3 clean
# ---------------------------------------------------------------------
# TEST STUFF
# Used by Lux test scripts
# ---------------------------------------------------------------------
.PHONY: lux-tests send_messages-lux
lux-tests: send_messages-lux console_basic_flow-lux
console_basic_flow-lux:
./_build/default/lib/lux/bin/lux test/lux/console_basic_flow.lux
send_messages-lux:
./_build/default/lib/lux/bin/lux ./test/send_messages.lux