You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
438 B
14 lines
438 B
11 years ago
|
|
||
|
.PHONY: report
|
||
|
|
||
|
# We don want to pollute the root dir, so we use a build dir
|
||
|
# http://tex.stackexchange.com/questions/12686/how-do-i-run-bibtex-after-using-the-output-directory-flag-with-pdflatex-when-f
|
||
|
report:
|
||
|
mkdir -p build
|
||
|
cp references.bib build/
|
||
|
pdflatex -output-directory=build report.tex
|
||
|
cd build; bibtex report
|
||
|
pdflatex -output-directory=build report.tex
|
||
|
pdflatex -output-directory=build report.tex
|
||
|
cp build/report.pdf ./
|