2023-08-31 01:10:35 +02:00
|
|
|
IMAGEDIR := images
|
|
|
|
IMAGES := $(foreach image,$(filter %.jpeg %.jpg %.png, $(wildcard $(IMAGEDIR)/*)),$(addsuffix .ps, $(basename $(image))))
|
|
|
|
|
|
|
|
target: thesis.pdf
|
|
|
|
|
|
|
|
thesis.pdf: thesis.tex bibliography.bib $(images)
|
|
|
|
latex -file-line-error -draftmode thesis.tex
|
|
|
|
bibtex8 thesis
|
|
|
|
latex -file-line-error -output-format pdf thesis
|
|
|
|
|
|
|
|
$(IMAGEDIR)/%.ps : $(IMAGEDIR)/%.jpeg
|
|
|
|
convert $< $@
|
|
|
|
$(IMAGEDIR)/%.ps : $(IMAGEDIR)/%.jpg
|
|
|
|
convert $< $@
|
|
|
|
$(IMAGEDIR)/%.ps : $(IMAGEDIR)/%.png
|
|
|
|
convert $< $@
|
|
|
|
|
|
|
|
.SECONDARY: %.ps
|
|
|
|
|
|
|
|
images: $(IMAGES)
|
2023-08-30 22:01:07 +02:00
|
|
|
|
|
|
|
clean:
|
2023-08-31 01:10:35 +02:00
|
|
|
rm -f *.aux *.lof *.log *.fls *.out *.toc *.fmt *.fot *.cb *.cb2 .*.lb *.ist *.dvi *.xdv *.run.xml *.bcf *.blg *.acr *.glg *.bbl *.glsdefs *.acn *.glo *.lot *.alg *.pdf
|