diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-04-04 02:21:04 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-04-04 02:21:04 -0400 |
commit | 609afd96f4069c69945fedcdfa7787ae4f7de967 (patch) | |
tree | cbeae89d61b88007a2ece9bdcafc3cf692f229d1 /Makefile | |
parent | 2c18d2f1f2888eb2eb8779457db70f2f8615c2b9 (diff) |
attempted (but wrong) start of solution
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,10 +1,12 @@ .POSIX: .SUFFIXES: .tex .pdf all: progreport/document.pdf execsumm/document.pdf -progreport/document.pdf: progreport/document.tex format.tex -execsumm/document.pdf: execsumm/document.tex format.tex +progreport/document.pdf: progreport/document.tex format.tex com.tex +execsumm/document.pdf: execsumm/document.tex format.tex com.tex .tex.pdf: cd ${@D} && pdftex --jobname ${*F} ${<F} clean: find -E . -regex ".*\.(pdf|log)" -exec rm -f {} + +view: + open -a Preview execsumm/document.pdf .PHONY: all clean |