159 lines
3.7 KiB
Makefile
159 lines
3.7 KiB
Makefile
# Makefile for chess server and client
|
|
|
|
# Variables
|
|
BINARY_DIR := bin
|
|
SERVER_BINARY := $(BINARY_DIR)/chess-server
|
|
CLIENT_BINARY := $(BINARY_DIR)/chess-client
|
|
SERVER_SOURCE := ./cmd/chess-server
|
|
CLIENT_SOURCE := ./cmd/chess-client
|
|
GO := go
|
|
GOFLAGS := -trimpath
|
|
LDFLAGS := -s -w
|
|
|
|
# Build info
|
|
GIT_COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo "unknown")
|
|
BUILD_TIME := $(shell date -u '+%Y-%m-%d_%H:%M:%S')
|
|
VERSION := $(shell git describe --tags --abbrev=0 2>/dev/null || echo "dev")
|
|
|
|
# Default target
|
|
.PHONY: all
|
|
all: build
|
|
|
|
# Build both binaries
|
|
.PHONY: build
|
|
build: server client
|
|
|
|
# Build server only
|
|
.PHONY: server
|
|
server: $(SERVER_BINARY)
|
|
|
|
$(SERVER_BINARY): $(BINARY_DIR)
|
|
$(GO) build $(GOFLAGS) -ldflags "$(LDFLAGS)" -o $(SERVER_BINARY) $(SERVER_SOURCE)
|
|
@echo "Built server: $(SERVER_BINARY)"
|
|
|
|
# Build client only
|
|
.PHONY: client
|
|
client: $(CLIENT_BINARY)
|
|
|
|
$(CLIENT_BINARY): $(BINARY_DIR)
|
|
$(GO) build $(GOFLAGS) -ldflags "$(LDFLAGS)" -o $(CLIENT_BINARY) $(CLIENT_SOURCE)
|
|
@echo "Built client: $(CLIENT_BINARY)"
|
|
|
|
# Create bin directory
|
|
$(BINARY_DIR):
|
|
@mkdir -p $(BINARY_DIR)
|
|
|
|
# Run server with default settings
|
|
.PHONY: run-server
|
|
run-server: server
|
|
$(SERVER_BINARY) -api-port 8080 -dev -storage-path db/chess.db
|
|
|
|
# Run server with web UI
|
|
.PHONY: run-server-web
|
|
run-server-web: server
|
|
$(SERVER_BINARY) -api-port 8080 -dev -storage-path db/chess.db -serve -web-port 9090
|
|
|
|
# Run client
|
|
.PHONY: run-client
|
|
run-client: client
|
|
$(CLIENT_BINARY)
|
|
|
|
# Run tests (start server and run test scripts)
|
|
.PHONY: test
|
|
test: server
|
|
test/run-test-server.sh
|
|
|
|
# Run individual test suites
|
|
.PHONY: test-api
|
|
test-api:
|
|
test/test-api.sh
|
|
|
|
.PHONY: test-db
|
|
test-db:
|
|
test/test-db.sh
|
|
|
|
.PHONY: test-longpoll
|
|
test-longpoll:
|
|
test/test-longpoll.sh
|
|
|
|
# Database operations
|
|
.PHONY: db-init
|
|
db-init: server
|
|
$(SERVER_BINARY) db init -path db/chess.db
|
|
|
|
.PHONY: db-clean
|
|
db-clean:
|
|
# ☣ DESTRUCTIVE: Removes database
|
|
rm -f db/chess.db db/chess.db-*
|
|
|
|
# Development build (with race detector)
|
|
.PHONY: dev
|
|
dev:
|
|
$(GO) build -race -o $(SERVER_BINARY) $(SERVER_SOURCE)
|
|
$(GO) build -race -o $(CLIENT_BINARY) $(CLIENT_SOURCE)
|
|
@echo "Built with race detector enabled"
|
|
|
|
# Clean build artifacts
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(SERVER_BINARY) $(CLIENT_BINARY)
|
|
rm -rf $(BINARY_DIR)
|
|
@echo "Cleaned build artifacts"
|
|
|
|
# Install dependencies
|
|
.PHONY: deps
|
|
deps:
|
|
$(GO) mod download
|
|
$(GO) mod verify
|
|
|
|
# Update dependencies
|
|
.PHONY: deps-update
|
|
deps-update:
|
|
$(GO) get -u ./...
|
|
$(GO) mod tidy
|
|
|
|
# Format code
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GO) fmt ./...
|
|
|
|
# Run linter
|
|
.PHONY: lint
|
|
lint:
|
|
golangci-lint run ./...
|
|
|
|
# Show help
|
|
.PHONY: help
|
|
help:
|
|
@echo "Chess Build System"
|
|
@echo ""
|
|
@echo "Build targets:"
|
|
@echo " make build Build both server and client"
|
|
@echo " make server Build server only"
|
|
@echo " make client Build client only"
|
|
@echo " make dev Build with race detector"
|
|
@echo ""
|
|
@echo "Run targets:"
|
|
@echo " make run-server Run server (port 8080, dev mode)"
|
|
@echo " make run-server-web Run server with web UI (ports 8080/9090)"
|
|
@echo " make run-client Run client"
|
|
@echo ""
|
|
@echo "Test targets:"
|
|
@echo " make test Run all tests"
|
|
@echo " make test-api Run API tests"
|
|
@echo " make test-db Run database tests"
|
|
@echo " make test-longpoll Run long-poll tests"
|
|
@echo ""
|
|
@echo "Database targets:"
|
|
@echo " make db-init Initialize database"
|
|
@echo " make db-clean Remove database (destructive)"
|
|
@echo ""
|
|
@echo "Maintenance:"
|
|
@echo " make clean Remove build artifacts"
|
|
@echo " make deps Download dependencies"
|
|
@echo " make deps-update Update dependencies"
|
|
@echo " make fmt Format code"
|
|
@echo " make lint Run linter"
|
|
|
|
# Default make without arguments shows help
|
|
.DEFAULT_GOAL := help
|