esds/manual/Makefile

12 lines
179 B
Makefile
Raw Normal View History

2022-09-12 10:45:38 +02:00
manual.pdf: manual.tex
2022-09-12 11:28:20 +02:00
@grep "__version__.*=" ../esds/__init__.py|grep -o "\".*\""|tr -d "\"" > version
2022-09-12 10:45:38 +02:00
pdflatex -shell-escape manual
2022-09-12 11:28:20 +02:00
clean:
- rm manual.pdf
.PHONY: clean