initial handshake

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2020-10-12 15:37:06 -04:00
commit 4c8aa9909f
No known key found for this signature in database
GPG key ID: 524F155275DF0C3E
10 changed files with 564 additions and 0 deletions

17
Makefile Normal file
View 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"' .