make the makefile quieter

This commit is contained in:
Andreas Zweili 2018-07-20 19:03:32 +02:00
parent 6bdf8c4198
commit 697c46a31e
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ PUML_PDF=$(FIGURES_PUML:.puml=.svg)
all: projektantrag_main.pdf ## Build full thesis (LaTeX + figures)
projektantrag_main.pdf: $(SVG_PDF) $(EPS_PDF) $(DOT_PDF) $(TEX_PDF) $(PUML_PDF) projektantrag.tex general/ibzlogo.pdf
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(PAPER)
latexmk -quiet -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(PAPER)
clean: ## Clean LaTeX and output figure files
latexmk -c
@ -48,7 +48,7 @@ pictures/%.pdf: pictures/%.dot ## Figures for the manuscript
dot -Tpdf $< -o $@
pictures/%.pdf: pictures/%.tex ## Figures for the manuscript
latexmk -pdf -outdir=pictures -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
latexmk -quiet -pdf -outdir=pictures -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
pictures/%.svg: pictures/%.puml
java -jar ~/bin/plantuml.jar -tsvg $<

View File

@ -16,7 +16,7 @@ PUML_PDF=$(FIGURES_PUML:.puml=.svg)
all: projekthandbuch_main.pdf ## Build full thesis (LaTeX + figures)
projekthandbuch_main.pdf: $(SVG_PDF) $(EPS_PDF) $(DOT_PDF) $(TEX_PDF) $(PUML_PDF) projekthandbuch.tex general/ibzlogo.pdf
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(PAPER)
latexmk -quiet -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(PAPER)
clean: ## Clean LaTeX and output figure files
latexmk -c
@ -48,7 +48,7 @@ pictures/%.pdf: pictures/%.dot ## Figures for the manuscript
dot -Tpdf $< -o $@
pictures/%.pdf: pictures/%.tex ## Figures for the manuscript
latexmk -pdf -outdir=pictures -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
latexmk -quiet -pdf -outdir=pictures -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
pictures/%.svg: pictures/%.puml
java -jar ~/bin/plantuml.jar -tsvg $<