summaryrefslogtreecommitdiff
path: root/makefile
blob: c27ab892c4faa568a70500378f256d7db265145d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
install:
	cargo install --path btc-wire --bin btc-wire-cli --bin btc-wire-utils --bin btc-wire
	cargo install --path wire-gateway

test_gateway:
	test/gateway/api.sh

test_btc:
	test/btc/wire.sh
	test/btc/lifetime.sh
	test/btc/reconnect.sh
	test/btc/fail.sh
	test/btc/stress.sh
	test/btc/conflict.sh
	test/btc/reorg.sh
	test/btc/hell.sh
	test/btc/analysis.sh
	test/btc/config.sh

test: install test_gateway test_btc