From e70a117c476b3a22d10d1d01b9e67ed386e1180f Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Sun, 22 Mar 2020 15:19:11 -0400 Subject: fixed makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 11e867d..3f466ac 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ all: progreport/document.pdf execsumm/document.pdf progreport/document.pdf: progreport/document.tex format.tex execsumm/document.pdf: execsumm/document.tex format.tex .tex.pdf: - pdftex $< + cd $$(dirname $@) && pdftex document.tex clean: find . -name "*.pdf" | xargs rm -f .PHONY: all clean -- cgit