From 36687acf5c4f76fcd3c696eed9eb77e31a801b99 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Sun, 10 Jan 2021 21:36:48 -0500 Subject: finished graphs (mostly) --- Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 47a2e33..0905900 100644 --- a/Makefile +++ b/Makefile @@ -60,13 +60,21 @@ graph/dir: mkdir -p graph touch graph/dir -graph/made: graph/depth_width.png graph/nearest_neighbor.png graph/dir +graph/made: graph/depth_width.png graph/nearest_neighbor.png graph/dir \ +graph/lineplot.png graph/boxplot.png touch graph/made graph/depth_width.png: py/data.py py/depwid.py graph/dir $(PY) py/depwid.py - mv depth_width.png graph + mv depth_width.png graph/ graph/nearest_neighbor.png: py/data.py py/neighbor.py graph/dir $(PY) py/neighbor.py - mv nearest_neighbor.png graph + mv nearest_neighbor.png graph/ + +graph/lineplot.png: py/data2.py py/lineplot.py graph/dir + $(PY) py/boxplot.py + mv boxplot.png graph/ + +graph/lineplot.png: py/data2.py py/boxplot.py graph/dir + mv lineplot.png graph/ -- cgit