forked from codedot/xmm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (27 loc) · 649 Bytes
/
Makefile
File metadata and controls
29 lines (27 loc) · 649 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
CONF = dummy.json
TEST = node xmm -c $(CONF)
all:
npm install
$(TEST) altnet >|$(CONF)
$(TEST) generate
$(TEST) ledger
$(TEST) what root
$(TEST) what XRP@bank
$(TEST) what EUR.bank:.1e-1@fund
$(TEST) what USD:500/BTC:1~42@fund
$(TEST) balance bank
$(TEST) send XRP:123.456@bank XRP:123.456@fund
$(TEST) ledger 2
$(TEST) balance fund
$(TEST) offer XMM:100/XRP:99~0@fund
$(TEST) trust USD:100@fund
$(TEST) cost USD:12.3@fund bank
$(TEST) ledger
$(TEST) view fund
$(TEST) kill XMM:100/XRP:99~1@fund
$(TEST) send USD:12.3@bank USD:12.3@fund
$(TEST) balance -n 3 fund
$(TEST) view fund
clean:
-rm -f $(CONF)
-rm -fr node_modules