forked from yvgude/lean-ctx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (28 loc) · 1.79 KB
/
Copy pathMakefile
File metadata and controls
40 lines (28 loc) · 1.79 KB
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
40
.PHONY: setup-hooks install dev test preflight preflight-fast help
# ── Setup ─────────────────────────────────────────────────
setup-hooks: ## Configure git to use .githooks/ for hooks
git config core.hooksPath .githooks
@echo "Git hooks configured: .githooks/"
# ── Build & Install ──────────────────────────────────────
install: ## Build release + install to ~/.local/bin
cd rust && cargo install --path . --force --locked --root "$$HOME/.local"
@echo "Installed: $$(lean-ctx --version)"
dev: ## Quick debug build + copy to ~/.local/bin
cd rust && cargo build
@mkdir -p "$$HOME/.local/bin"
cp rust/target/debug/lean-ctx "$$HOME/.local/bin/lean-ctx"
@echo "Dev installed: $$(lean-ctx --version)"
test: ## Run all Rust tests + clippy
cd rust && cargo test && cargo clippy
# ── CI-parity gate ───────────────────────────────────────
# Mirrors .github/workflows/ci.yml so green-here => green-in-CI for the
# deterministic jobs (fmt/clippy/doc/gen_docs/cross-platform compile).
preflight: ## Full local CI-parity gate (fmt, clippy, doc, gen_docs, win-check, lib tests)
scripts/preflight.sh full
preflight-fast: ## Static CI-parity gate (no full test run) — what pre-push runs
scripts/preflight.sh fast
# ── Help ──────────────────────────────────────────────────
help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-18s\033[0m %s\n", $$1, $$2}'
.DEFAULT_GOAL := help