11 lines
259 B
Makefile
11 lines
259 B
Makefile
all: ZPT003_2020_03_ats.txt elphistone_6.pdf
|
|
|
|
%.pdf: %.tex
|
|
latexmk -g -lualatex $<
|
|
|
|
ZPT003_2020_03_ats.txt: ZPT003_2020_03_ats.py consts.py
|
|
python3 $< > $@
|
|
|
|
consts.py: elphistone_6.pdf
|
|
printf "wc = %d\n" $$(pdftotext $< - | tr -d '[:space:]' | wc -m) > $@
|