~dricottone/fmg-timesheets

ref: ae939a2885fa86f68a1456565d379ca233ec3b19 fmg-timesheets/Makefile -rw-r--r-- 325 bytes
ae939a28Dominic Ricottone Goodbye HTML, hello XML 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: clean
clean:
	rm --force --recursive __pycache__
	rm --force --recursive **/__pycache__
	rm --force --recursive .venv

.venv:
	python3 -m venv .venv
	bash -c "source .venv/bin/activate && python3 -m pip install pdfminer.six"

.PHONY: run
run: .venv
	bash -c "source .venv/bin/activate && python3 main.py data/*.pdf"