sshpoke/Makefile

59 lines
1.9 KiB
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 //')
2023-11-19 13:13:38 +03:00
VERSION=$(shell git describe --tags 2>/dev/null || git log --format="v0.0.0-%h" -n 1 || echo "v0.0.0-unknown")
LDFLAGS="-X 'github.com/Neur0toxine/sshpoke/cmd.Version=${VERSION}'"
2023-11-16 20:09:40 +03:00
.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}"
2023-11-19 13:13:38 +03:00
@CGO_ENABLED=0 go build -tags=release -ldflags ${LDFLAGS} -o $(BIN) .
2023-11-16 20:09:40 +03:00
@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
2023-11-18 21:51:44 +03:00
update_sshlib:
@rm -rf cryptolib && \
git clone https://go.googlesource.com/crypto cryptolib && \
rm -rf pkg/proto/ssh && \
mv cryptolib/ssh pkg/proto/ && \
mv cryptolib/internal/poly1305 pkg/proto/ssh/internal/ && \
find pkg/proto/ssh -type f -name '*.go' -exec sed -i 's?golang.org/x/crypto/ssh?github.com/Neur0toxine/sshpoke/pkg/proto/ssh?g' {} \; && \
find pkg/proto/ssh -type f -name '*.go' -exec sed -i 's?golang.org/x/crypto/internal/poly1305?github.com/Neur0toxine/sshpoke/pkg/proto/ssh/internal/poly1305?g' {} \; && \
find pkg/proto/ssh -type f -name '*_test.go' -delete && \
patch -p0 < patch/ssh_fakehost.patch && \
rm -rf pkg/proto/ssh/test && \
rm -rf pkg/proto/ssh/testdata && \
rm -rf cryptolib