forked from damiannolan/simd-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
40 lines (30 loc) · 751 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
#!/usr/bin/make -f
init: kill-dev
@echo "Initializing both blockchains..."
./network/init.sh
./network/start.sh
start:
@echo "Starting up test network"
./network/start.sh
kill-dev:
@echo "Killing simd and removing previous data"
-@rm -rf ./data
-@rm -rf ./network/relayer/config/
-@killall simd 2>/dev/null
hermes-init:
./network/hermes/restore-keys.sh
./network/hermes/setup-conn.sh
hermes-restore-keys:
./network/hermes/restore-keys.sh
hermes-setup-connection:
./network/hermes/setup-conn.sh
hermes-setup-channel:
./network/hermes/setup-channel.sh
hermes-start:
./network/hermes/start.sh
rly-init:
@echo "Initializing rly..."
./network/rly/setup-relayer.sh
./network/rly/create-path.sh
rly-start:
./network/rly/start.sh