2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/notes/journal/Makefile
2022-08-20 00:32:54 -07:00

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