48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
SHELL := /bin/bash
|
|
|
|
# `make` should build the binary by default.
|
|
.DEFAULT_GOAL := build
|
|
|
|
.PHONY: build fmt fmt-check lint test ci tools
|
|
|
|
BIN_DIR := $(CURDIR)/bin
|
|
BIN := $(BIN_DIR)/gog
|
|
CMD := ./cmd/gog
|
|
|
|
VERSION := $(shell git describe --tags --always --dirty 2>/dev/null || echo dev)
|
|
COMMIT := $(shell git rev-parse --short=12 HEAD 2>/dev/null || echo "")
|
|
DATE := $(shell date -u +%Y-%m-%dT%H:%M:%SZ)
|
|
LDFLAGS := -X github.com/steipete/gogcli/internal/cmd.version=$(VERSION) -X github.com/steipete/gogcli/internal/cmd.commit=$(COMMIT) -X github.com/steipete/gogcli/internal/cmd.date=$(DATE)
|
|
|
|
TOOLS_DIR := $(CURDIR)/.tools
|
|
GOFUMPT := $(TOOLS_DIR)/gofumpt
|
|
GOIMPORTS := $(TOOLS_DIR)/goimports
|
|
GOLANGCI_LINT := $(TOOLS_DIR)/golangci-lint
|
|
|
|
build:
|
|
@mkdir -p $(BIN_DIR)
|
|
@go build -ldflags "$(LDFLAGS)" -o $(BIN) $(CMD)
|
|
|
|
tools:
|
|
@mkdir -p $(TOOLS_DIR)
|
|
@GOBIN=$(TOOLS_DIR) go install mvdan.cc/gofumpt@v0.9.2
|
|
@GOBIN=$(TOOLS_DIR) go install golang.org/x/tools/cmd/goimports@v0.40.0
|
|
@GOBIN=$(TOOLS_DIR) go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1.6
|
|
|
|
fmt: tools
|
|
@$(GOIMPORTS) -w .
|
|
@$(GOFUMPT) -w .
|
|
|
|
fmt-check: tools
|
|
@$(GOIMPORTS) -w .
|
|
@$(GOFUMPT) -w .
|
|
@git diff --exit-code -- '*.go' go.mod go.sum
|
|
|
|
lint: tools
|
|
@$(GOLANGCI_LINT) run
|
|
|
|
test:
|
|
@go test ./...
|
|
|
|
ci: fmt-check lint test
|