mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 06:18:05 +02:00
22 lines
307 B
Makefile
22 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
|