2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/notes/journal/Makefile

23 lines
307 B
Makefile
Raw Normal View History

2022-08-20 00:32:54 -07:00
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