bachelor-thesis/Makefile
Mirek Kratochvil df1d19fc5f v1
2020-05-10 19:57:36 +02:00

17 lines
350 B
Makefile

PDFS=thesis.pdf abstract-en.pdf abstract-cz.pdf
all: $(PDFS)
thesis.pdf: thesis.tex $(wildcard *.tex) refs.bib thesis.xmpdata
pdflatex $<
bibtex thesis
pdflatex $<
pdflatex $<
abstract-%.pdf: abstract-%.tex abstract-%.xmpdata metadata.tex
pdflatex $<
clean:
rm -f *.log *.dvi *.aux *.toc *.lof *.lot *.out *.bbl *.blg *.xmpi
rm -f $(PDFS)