From 67bf619c9ec4bb88068afbb589cdf98ad282fbf0 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Mon, 3 Jun 2019 22:21:56 -0400 Subject: [PATCH] Build twice so the toc is correctly generated Signed-off-by: Collin J. Doering --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e5ac20e..dab02cb 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,8 @@ PREFIX ?= . FILENAME = template $(FILENAME).pdf: $(FILENAME).tex - $(PDFLATEX) -file-line-error $(FILENAME).tex + @$(PDFLATEX) -file-line-error $(FILENAME).tex + @$(PDFLATEX) -file-line-error $(FILENAME).tex .PHONY: install install: $(FILENAME).pdf