aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2021-01-10 21:36:48 -0500
committerHolden Rohrer <hr@hrhr.dev>2021-01-10 21:36:48 -0500
commit36687acf5c4f76fcd3c696eed9eb77e31a801b99 (patch)
treee4bfbfada2cc0806cb9feeb678838cee6d227bb9 /Makefile
parent50ad3052a0b0c2245b6f3f481f12322391737aa5 (diff)
finished graphs (mostly)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 11 insertions, 3 deletions
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/