You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
348 B
Makefile
22 lines
348 B
Makefile
# BEGIN-EVAL makefile-parser --make-help Makefile
|
|
|
|
help:
|
|
@echo ""
|
|
@echo " Targets"
|
|
@echo ""
|
|
@echo " install Install with pip"
|
|
@echo " install-dev Install editable with pip"
|
|
@echo ""
|
|
@echo " Variables"
|
|
@echo ""
|
|
|
|
# END-EVAL
|
|
|
|
# Install with pip
|
|
install:
|
|
pip install .
|
|
|
|
# Install editable with pip
|
|
install-dev:
|
|
pip install -e .
|