chore(*) add makefile

This commit is contained in:
Guilherme Salazar
2019-12-11 13:51:15 -08:00
parent 95eefbd75a
commit 266274945f

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
all=build
BIN_NAME=go-pluginserver
build:
go build -ldflags="-s -w" -o $(BIN_NAME) -v
clean:
rm -rf $(BIN_NAME)
.PHONY: all build clean