-
Notifications
You must be signed in to change notification settings - Fork 48
/
Makefile
48 lines (32 loc) · 999 Bytes
/
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
.PHONY: *.erl
RUN_ARGS = erl -pa ../_build/default/lib/chumak/ebin -eval
*.erl:
erlc $@
req_client: req_client.erl
${RUN_ARGS} "req_client:main()"
req_server: req_server.erl
${RUN_ARGS} "req_server:main()"
rep_server: rep_server.erl
${RUN_ARGS} "rep_server:main()"
router_with_dealer: router_with_dealer.erl
${RUN_ARGS} "router_with_dealer:main()"
router_with_req: router_with_req.erl
${RUN_ARGS} "router_with_req:main()"
publisher: publisher.erl
${RUN_ARGS} "publisher:main()"
subscriber_a: subscriber.erl
${RUN_ARGS} 'subscriber:main(<<"A">>)'
subscriber_b: subscriber.erl
${RUN_ARGS} 'subscriber:main(<<"B">>)'
push: push.erl
${RUN_ARGS} "push:main()"
pull: pull.erl
${RUN_ARGS} 'pull:main()'
pair_server: pair_server.erl
${RUN_ARGS} "pair_server:main()"
pair_client: pair_client.erl
${RUN_ARGS} 'pair_client:main()'
resource_server: resource_server.erl
${RUN_ARGS} 'resource_server:main()'
resource_client: resource_client.erl
${RUN_ARGS} 'resource_client:main()'