You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
raven/pubsub/Makefile

12 lines
232 B
Makefile

SRC = raven.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)