From fb290e415de1183af569d48ebf4d5300492149da Mon Sep 17 00:00:00 2001 From: feynmansfedora Date: Sun, 22 Mar 2020 14:53:36 -0400 Subject: Create Makefile Generates both progreport pdf and execsumm pdf; stub prerequisites --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..163bc67 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.POSIX: +.SUFFIXES: .tex .pdf +all: progreport/document.pdf execsumm/document.pdf +progreport/document.pdf: progreport/document.tex +execsumm/document.pdf: execsumm/document.tex +.tex.pdf: + pdftex $< +clean: + find . -name "*.pdf" | xargs rm -f +.PHONY: all clean -- cgit