diff options
author | Camil Staps | 2016-05-09 19:56:07 +0200 |
---|---|---|
committer | Camil Staps | 2016-05-09 19:56:07 +0200 |
commit | fb42c4151ee4111b452afaae66ec8f877e0faa3d (patch) | |
tree | 039634cda02cc323dc164899662a8c0f7fc908a7 /Makefile | |
parent | opdracht 5 & 6 (diff) |
Makefile: bibtex may fail
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +SHELL=bash TARGET=$(subst .tex,.pdf,$(wildcard */*.tex)) all: $(TARGET) @@ -5,7 +6,7 @@ all: $(TARGET) %.pdf : %.tex cd `dirname $<` && \ pdflatex -shell-escape `basename $<` && \ - bibtex `basename -s .tex $<`.aux && \ + bibtex `basename -s .tex $<`.aux; \ pdflatex -shell-escape `basename $<` && \ pdflatex -shell-escape `basename $<` && \ cd .. |