Commit d4a8b2cc authored by Taddeüs Kroes's avatar Taddeüs Kroes

Fixed BibTex in make rules.

parent fe10d9a9
......@@ -12,3 +12,4 @@
*.snm
src/old/*
src/old_kivy/*
build/*
@unpublished{TUIOspecification,
author = "test",
title = "test",
note = "url: http://tuio.org/?specification",
}
article{TUIOarticle,
author = {Martin Kaltenbrunner, Till Bovermann, Ross Bencina, Enrico
Costanza},
title = {TUIO: A protocol for table-top tangible user interfaces},
journal = {Proc. of the The 6th Int'l Workshop on Gesture in Human-Computer
Interaction and Simulation},
pages = }
}
.PHONY: docs
report=report
docs: $(b)proposal.pdf $(b)presentation.pdf $(b)report.pdf
docs: $(b)proposal.pdf $(b)presentation.pdf $(b)$(report).pdf $(b)$(report).bbl
$(b)%.pdf: $(d)%.tex
mkdir -p `dirname $@`
cd $(d); \
pdflatex -halt-on-error -interaction=nonstopmode \
-output-directory "../`dirname $@`" `basename $^`
$(b)$(report).bbl: $(d)$(report).bib
mkdir -p `dirname $@`
cp $(d)$(report).bib $(b)$(report).bib
cd $(b); bibtex8 $(report).aux
cd $(d); \
pdflatex -halt-on-error -interaction=nonstopmode \
-output-directory "../`dirname $@`" $(report).tex; \
pdflatex -halt-on-error -interaction=nonstopmode \
-output-directory "../`dirname $@`" $(report).tex
.PHONY: docs
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment