mirror of
				https://github.com/qurator-spk/ocrd_repair_inconsistencies.git
				synced 2025-10-31 00:44:13 +01:00 
			
		
		
		
	
		
			
	
	
		
			22 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
	
		
			302 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
|  | 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 . |