fix: resolve duplicate install target warning in Makefile

Rename first 'install' target to 'install-all' to avoid conflict
with the full installation script target at line 120.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-10 05:37:58 +01:00
parent 2849f2aece
commit 5538763293

View File

@@ -21,10 +21,10 @@ export PYTHONPATH := $(shell pwd)
# INSTALLATION & SETUP
# =============================================================================
install:
install-all:
$(PIP) install -r requirements.txt
install-dev: install
install-dev: install-all
$(PIP) install -r requirements-dev.txt
install-test: