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:
4
Makefile
4
Makefile
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user