# --- User area: customize vars/targets below ---

# <velocikat:managed:include>
# The root directory of the monorepo.
ROOT_DIR ?= ../..

# The relative path from the monorepo root to this package, used by managed targets.
# Assumes the package is in a top-level directory like 'packages/'.
PACKAGE_PATH ?= packages/cyberkat

# Include managed targets (regenerated by VelociKat)
include make/managed.mk

.PHONY: run help

help: ## Show this help message
	@echo 'Usage: make [target]'
	@echo ''
	@echo 'Available targets:'
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sed 's/^[^:]*://' | sort -u | awk 'BEGIN {FS = ":[ \t]*## "}; {printf "  \033[36m%-20s\033[0m %s\n", $$1, $$2}'
# </velocikat:managed:include>

