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
302 B
Makefile
22 lines
302 B
Makefile
5 years ago
|
SHELL = /bin/bash
|
||
|
PYTHON = python3
|
||
|
PIP = pip3
|
||
|
|
||
|
define HELP
|
||
|
cat <<EOF
|
||
|
ocrd_repair_inconsistencies
|
||
|
|
||
|
Targets:
|
||
|
deps Install Python dependencies via pip
|
||
|
install Install Python package
|
||
|
EOF
|
||
|
endef
|
||
|
export HELP
|
||
|
help: ; @eval "$$HELP"
|
||
|
|
||
|
deps:
|
||
|
$(PIP) install -r requirements.txt
|
||
|
|
||
|
install:
|
||
|
$(PIP) install .
|