diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,6 @@ .POSIX: .SUFFIXES: .tex .pdf +PYTHON = python all: progreport/document.pdf execsumm/document.pdf progreport/document.pdf: progreport/document.tex format.tex com.tex execsumm/document.pdf: execsumm/document.tex format.tex com.tex @@ -9,4 +10,6 @@ clean: find . -regex ".*\.\(pdf\|log\)" -exec rm -f {} + view: open -a Preview execsumm/document.pdf +plot.png: graph.py + ${PYTHON} graph.py img .PHONY: all clean |