From 9b95c5e7c4d4fcb1602aa4103b4c13bc45d5d30b Mon Sep 17 00:00:00 2001 From: whyrusleeping Date: Tue, 10 Dec 2019 11:15:50 +0100 Subject: [PATCH] add a make target for shed --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index b7d0f98e2..04f88a6b8 100644 --- a/Makefile +++ b/Makefile @@ -70,6 +70,12 @@ lotus-seal-worker: $(BUILD_DEPS) .PHONY: lotus-seal-worker BINS+=lotus-seal-worker +lotus-shed: $(BUILD_DEPS) + rm -f lotus-shed + go build $(GOFLAGS) -o lotus-shed ./cmd/lotus-shed +.PHONY: lotus-seal-worker +BINS+=lotus-seal-worker + build: lotus lotus-storage-miner lotus-seal-worker .PHONY: build