From 7d32b4b78455cf2bd0f37d07f976e04e249a8923 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Fri, 17 Apr 2020 22:31:14 -0400 Subject: python makes png --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') 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 -- cgit