Files
myagents/Makefile
T

16 lines
321 B
Makefile

ROOT_DIR := $(shell pwd)
.PHONY: help install
help:
@echo "Usage: make [target]"
@echo ""
@echo " install Editable pip install of myclaude (uses uv when available)"
install:
@if command -v uv >/dev/null 2>&1; then \
uv pip install -e "$(ROOT_DIR)"; \
else \
python3 -m pip install -e "$(ROOT_DIR)"; \
fi