initial handshake
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
commit
4c8aa9909f
10 changed files with 564 additions and 0 deletions
17
Makefile
Normal file
17
Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
PACKAGES=$(shell go list ./... | grep -v /vendor/)
|
||||
REVISION=$(shell git rev-parse HEAD)
|
||||
DEBUG=0
|
||||
|
||||
ifeq ($(DEBUG),1)
|
||||
D =
|
||||
else
|
||||
D = @
|
||||
endif
|
||||
|
||||
all: build
|
||||
|
||||
protos:
|
||||
$(D)protobuild --quiet ${PACKAGES}
|
||||
|
||||
build:
|
||||
$(D)CGO_ENABLED=0 go build -v -ldflags '-extldflags "-static"' .
|
Loading…
Add table
Add a link
Reference in a new issue