Skip to content
Snippets Groups Projects
Commit d658e5b9 authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

Prettified docs make rules even more...

parent 489abd25
No related branches found
No related tags found
No related merge requests found
REPORT := report
PDFLATEX_FLAGS = -halt-on-error -interaction=nonstopmode \
-output-directory "../`dirname $@`"
-output-directory $(@D)
.PHONY: docs
docs: $(b)proposal.pdf $(b)presentation.pdf $(b)$(REPORT).pdf $(b)$(REPORT).bbl
docs: $(b)proposal.pdf $(b)presentation.pdf $(b)$(REPORT).pdf
$(b)%.pdf: $(d)%.tex
mkdir -p `dirname $@`
cd $(d); pdflatex ${PDFLATEX_FLAGS} `basename $^`
TEXINPUTS=$(d): pdflatex ${PDFLATEX_FLAGS} $^
$(b)$(REPORT).bbl: $(d)$(REPORT).bib
$(b)$(REPORT).bbl: $(d)$(REPORT).tex $(d)$(REPORT).bib
pdflatex ${PDFLATEX_FLAGS} $(d)$(REPORT).tex
BIBINPUTS=$(d) bibtex8 ${@:.bbl=.aux}
cd $(d); \
pdflatex ${PDFLATEX_FLAGS} $(REPORT).tex; \
pdflatex ${PDFLATEX_FLAGS} $(REPORT).tex
pdflatex ${PDFLATEX_FLAGS} $(d)$(REPORT).tex
pdflatex ${PDFLATEX_FLAGS} $(d)$(REPORT).tex
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment