Previously `make install` used `go install` which put the binary in ~/go/bin without codesigning, while PATH used ~/.local/bin - causing chronic stale binary issues. Now install depends on build (which codesigns on macOS) and copies to the correct location. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
.PHONY: build install clean test generate
|
|
|
|
BINARY := gt
|
|
BUILD_DIR := .
|
|
INSTALL_DIR := $(HOME)/.local/bin
|
|
|
|
# Get version info for ldflags
|
|
VERSION := $(shell git describe --tags --always --dirty 2>/dev/null || echo "dev")
|
|
COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo "unknown")
|
|
BUILD_TIME := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
|
|
|
|
LDFLAGS := -X github.com/steveyegge/gastown/internal/cmd.Version=$(VERSION) \
|
|
-X github.com/steveyegge/gastown/internal/cmd.Commit=$(COMMIT) \
|
|
-X github.com/steveyegge/gastown/internal/cmd.BuildTime=$(BUILD_TIME) \
|
|
-X github.com/steveyegge/gastown/internal/cmd.BuiltProperly=1
|
|
|
|
generate:
|
|
go generate ./...
|
|
|
|
build: generate
|
|
go build -ldflags "$(LDFLAGS)" -o $(BUILD_DIR)/$(BINARY) ./cmd/gt
|
|
ifeq ($(shell uname),Darwin)
|
|
@codesign -s - -f $(BUILD_DIR)/$(BINARY) 2>/dev/null || true
|
|
@echo "Signed $(BINARY) for macOS"
|
|
endif
|
|
|
|
install: build
|
|
@mkdir -p $(INSTALL_DIR)
|
|
@rm -f $(INSTALL_DIR)/$(BINARY)
|
|
@cp $(BUILD_DIR)/$(BINARY) $(INSTALL_DIR)/$(BINARY)
|
|
@echo "Installed $(BINARY) to $(INSTALL_DIR)/$(BINARY)"
|
|
|
|
clean:
|
|
rm -f $(BUILD_DIR)/$(BINARY)
|
|
|
|
test:
|
|
go test ./...
|