summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 79203d9..fc28933 100644
--- a/Makefile
+++ b/Makefile
@@ -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