mirror of
https://github.com/rairyx/raven.git
synced 2024-11-11 19:10:50 +00:00
12 lines
241 B
Makefile
12 lines
241 B
Makefile
SRC = pubsub-interop.go
|
|
BIN = $(SRC:.go=)
|
|
DHT_SERVER = libp2p-bootstrap.goelzer.io
|
|
|
|
all: $(SRC)
|
|
go build -o $(BIN) $(SRC)
|
|
|
|
install:
|
|
-ssh $(DHT_SERVER) killall -9 dht-interop
|
|
scp $(SRC:.go=) $(DHT_SERVER):~/
|
|
ssh $(DHT_SERVER) ./$(BIN)
|