From 917d6d61eb3a2c0ef075e51ad5803d72602a2b56 Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Fri, 22 Jan 2016 16:22:08 -0500 Subject: Started fleshing out chapter 5. --- report/Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'report/Makefile') diff --git a/report/Makefile b/report/Makefile index 6b58488..2b1a083 100644 --- a/report/Makefile +++ b/report/Makefile @@ -10,8 +10,9 @@ # PDF = combox-report.pdf -REPORT = combox.tex -REPORT_INCLUDES = graphs/*.tex chapters/*.tex +REPORT_TEX = combox.tex +REPORT_AUX = combox.aux +REPORT_INCLUDES = graphs/*.tex chapters/*.tex bib/combox.bib DVI = combox.dvi all: $(PDF) @@ -20,8 +21,11 @@ all: $(PDF) $(PDF): $(DVI) @dvipdf $< $@ -$(DVI): $(REPORT) $(REPORT_INCLUDES) - @latex $<; latex $<; latex $< +$(DVI): $(REPORT_TEX) $(REPORT_INCLUDES) + @latex $< + @bibtex $(REPORT_AUX) + @latex $< + @latex $< clean: rm -f $(PDF) *.aux *.dvi *.log *~ -- cgit v1.2.3