Need to run latex between bibtex runs to resolve citation note references
authorW. Trevor King <wking@drexel.edu>
Thu, 1 Apr 2010 02:34:28 +0000 (22:34 -0400)
committerW. Trevor King <wking@drexel.edu>
Thu, 1 Apr 2010 02:34:28 +0000 (22:34 -0400)
tex/Makefile

index ea80dbf28b0245bce9e43f93c762df54ffcd9633..2d1c3001d39d3e1a4106538e024e115e8027f2a4 100644 (file)
@@ -3,8 +3,10 @@ LATEX = pdflatex
 
 thesis.pdf : build
        (cd ./build && $(LATEX) root)
+       (cd ./build && bibtex root)
        (cd ./build && $(LATEX) root)
        (cd ./build && bibtex root)
+       (cd ./build && $(LATEX) root)
        (cd ./build && bibtex root)
        (cd ./build && makeindex root.nlo -s nomencl.ist -o root.nls)
        (cd ./build && makeindex root.idx)