-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMakefile
39 lines (30 loc) · 834 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Color definitions
BLUE=\033[0;34m
GREEN=\033[0;32m
YELLOW=\033[0;33m
RED=\033[0;31m
NC=\033[0m # No Color
BINARY_NAME=mcp
ALIAS_NAME=mcpt
VERSION=$(shell git describe --tags --always --dirty 2>/dev/null || echo "dev")
# Default Makefile step
default: setup
@echo "$(GREEN)All setup steps completed successfully!$(NC)"
check-go:
@echo "$(BLUE)Checking Go installation and version...$(NC)"
chmod +x ./scripts/check_go.bash
./scripts/check_go.bash
build:
@echo "$(YELLOW)Building $(BINARY_NAME)...$(NC)"
go build -ldflags "-X main.Version=$(VERSION)" -o bin/$(BINARY_NAME) ./cmd/mcptools
test: check-go
@echo "$(YELLOW)Running tests...$(NC)"
go test -v ./...
lint: check-go
@echo "$(BLUE)Running linter...$(NC)"
golangci-lint run ./...
dist:
mkdir -p dist
clean:
rm -rf bin/* dist/*
release: clean lint test build