sshpoke/Makefile

42 lines
978 B
Makefile
Raw Normal View History

2023-11-16 20:09:40 +03:00
SHELL = /bin/bash -o pipefail
export PATH := $(shell go env GOPATH)/bin:$(PATH)
ROOT_DIR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
BUILD_DIR=$(ROOT_DIR)/build
BIN=$(BUILD_DIR)/sshpoke
GO_VERSION=$(shell go version | sed -e 's/go version //')
.PHONY: run clean_backend
2023-11-17 20:39:00 +03:00
build: generate deps fmt
2023-11-16 20:09:40 +03:00
@echo " ► Building with ${GO_VERSION}"
@CGO_ENABLED=0 go build -tags=release -o $(BIN) .
@echo $(BIN)
test: deps fmt
@echo " ► Running tests"
@go test -timeout 1m ./... -v -cpu 4
fmt:
@echo " ► Running gofmt"
@gofmt -l -s -w `go list -f '{{.Dir}}' ${ROOT_DIR}/... | grep -v /vendor/`
deps:
@echo " ► Installing dependencies"
@go mod tidy
@go mod vendor
run:
@$(BIN)
clean:
@rm -rf $(BUILD_DIR)
2023-11-17 20:39:00 +03:00
generate:
@echo " ► Performing code generation"
@cd $(ROOT_DIR)/pkg/plugin && go generate
install_protobuf:
@go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28
@go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2