add simple Makefile
parent
2a2c97feff
commit
bb925a6a5b
@ -0,0 +1,21 @@
|
|||||||
|
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 .
|
Loading…
Reference in New Issue