diff options
Diffstat (limited to 'markley/Makefile')
-rw-r--r-- | markley/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/markley/Makefile b/markley/Makefile index e2e903b..5b8256c 100644 --- a/markley/Makefile +++ b/markley/Makefile @@ -1,6 +1,6 @@ .POSIX: -all: essayone.pdf essaytwo.pdf essaythree.pdf proposal.pdf +all: essayone.pdf essaytwo.pdf essaythree.pdf proposal.pdf biblio.pdf %.pdf: %.tex %.bib pdflatex $*.tex @@ -11,6 +11,9 @@ all: essayone.pdf essaytwo.pdf essaythree.pdf proposal.pdf proposal.pdf: proposal.tex pdflatex proposal.tex +biblio.pdf: biblio.tex + pdflatex biblio.tex + clean: rm -f essay{one,two,three}{-blx.bib,.{aux,bbl,bcf,blg,log,out,pdf,run.xml}} \ - proposal.{log,pdf,aux,out} + {biblio,proposal}.{log,pdf,aux,out} |