Commit c691981e authored by santicomp2014's avatar santicomp2014 Committed by GitHub

Makefile: Added build for other binaries in BEE (#436)

* Makefile: added make binary for bee-file,bee-split and bee-join

* Makefile: change binary- to bee-

* Makefile: merge bee,join,split,file into make binaries
parent 3c47aa97
...@@ -18,6 +18,12 @@ binary: dist FORCE ...@@ -18,6 +18,12 @@ binary: dist FORCE
$(GO) version $(GO) version
$(GO) build -trimpath -ldflags "$(LDFLAGS)" -o dist/bee ./cmd/bee $(GO) build -trimpath -ldflags "$(LDFLAGS)" -o dist/bee ./cmd/bee
.PHONY: binaries
binaries: binary
$(GO) build -trimpath -ldflags "$(LDFLAGS)" -o dist/bee-file ./cmd/bee-file
$(GO) build -trimpath -ldflags "$(LDFLAGS)" -o dist/bee-join ./cmd/bee-join
$(GO) build -trimpath -ldflags "$(LDFLAGS)" -o dist/bee-split ./cmd/bee-split
dist: dist:
mkdir $@ mkdir $@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment