From aa9f01313dad62c1d8e9ea9bda385378d1416f2d Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Mon, 23 Mar 2020 18:26:04 -0400
Subject: added jobname flexibility to makefile
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index a7bada9..a9d6033 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:
- cd $$(dirname $@) && pdftex $$(basename $<)
+ cd $$(dirname $@) && pdftex --jobname $$(basename $*) $$(basename $<)
clean:
find -E . -regex ".*\.(pdf|log)" | xargs rm -f
.PHONY: all clean
--
cgit