summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorAntoine A <>2022-02-15 16:05:04 +0100
committerAntoine A <>2022-02-15 16:58:41 +0100
commit88556bdbfa2140e8d11367cf87601df0c70f0604 (patch)
tree39ad5eed91fb8d074c5fa668840d533bfbe43616 /makefile
parent187f435336d86935a92b4d55a5a17cd5e24b9aab (diff)
downloaddepolymerization-88556bdbfa2140e8d11367cf87601df0c70f0604.tar.gz
depolymerization-88556bdbfa2140e8d11367cf87601df0c70f0604.tar.bz2
depolymerization-88556bdbfa2140e8d11367cf87601df0c70f0604.zip
Replace argh CLI parser with clap, merge wire binary with its bootstrap and improve config error msg
Diffstat (limited to 'makefile')
-rw-r--r--makefile16
1 files changed, 10 insertions, 6 deletions
diff --git a/makefile b/makefile
index 9500176..aed52be 100644
--- a/makefile
+++ b/makefile
@@ -1,12 +1,16 @@
install:
- cargo install --path btc-wire --bin btc-wire-cli --bin btc-wire-utils --bin btc-wire
- cargo install --path eth-wire --bin eth-wire-cli --bin eth-wire-utils --bin eth-wire
+ cargo install --path btc-wire --bin btc-wire
+ cargo install --path eth-wire --bin eth-wire
cargo install --path wire-gateway
-test_gateway: install
+install_test: install
+ cargo install --path btc-wire --bin btc-wire-utils
+ cargo install --path eth-wire --bin eth-wire-utils
+
+test_gateway: install_test
test/gateway/api.sh
-test_btc: install
+test_btc: install_test
test/btc/wire.sh
test/btc/lifetime.sh
test/btc/reconnect.sh
@@ -19,7 +23,7 @@ test_btc: install
test/btc/maxfee.sh
test/btc/config.sh
-test_eth: install
+test_eth: install_test
test/eth/wire.sh
test/eth/lifetime.sh
test/eth/reconnect.sh
@@ -28,7 +32,7 @@ test_eth: install
test/eth/hell.sh
test/eth/analysis.sh
-test: install test_gateway test_eth test_btc
+test: test_gateway test_eth test_btc
segwit_demo:
cargo run --release --bin segwit-demo \ No newline at end of file