mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
23 lines
307 B
Makefile
23 lines
307 B
Makefile
|
DOCNAME=master
|
||
|
PDF_VIEWER=zathura
|
||
|
|
||
|
.PHONY:
|
||
|
clean
|
||
|
|
||
|
all:
|
||
|
make compile
|
||
|
make clean
|
||
|
|
||
|
compile:
|
||
|
pdflatex $(DOCNAME).tex
|
||
|
pdflatex $(DOCNAME).tex
|
||
|
pdflatex $(DOCNAME).tex
|
||
|
|
||
|
clean:
|
||
|
rm -rf *.aux *.bcf *.fdb_latexmk *.fls *.log *.out *.toc *.synctex*
|
||
|
|
||
|
view:
|
||
|
make compile
|
||
|
make clean
|
||
|
$(PDF_VIEWER) $(DOCNAME).pdf
|