agentic-codebase 0.2.6

Semantic code compiler for AI agents - transforms codebases into navigable concept graphs
Documentation
.PHONY: all build build-debug test test-unit test-integration lint lint-fmt lint-clippy bench clean install

all: build

build:
	cargo build --release

build-debug:
	cargo build

test: test-unit test-integration

test-unit:
	cargo test --lib

test-integration:
	cargo test --tests

lint: lint-fmt lint-clippy

lint-fmt:
	cargo fmt --check

lint-clippy:
	cargo clippy -- -D warnings

bench:
	cargo bench

clean:
	cargo clean

install:
	cargo install --path .