From 230eafed9aefda8688c8b9269e600b7289326a52 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Fri, 7 Feb 2020 00:14:10 -0500 Subject: cleaned up python directory structure --- Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2145259..dade053 100644 --- a/Makefile +++ b/Makefile @@ -10,16 +10,17 @@ all: outputs/posterboard.pdf outputs/report.pdf outputs/logbook.pdf png: outputs/posterboard.png .PHONY: clean clean: - rm -rf imgs graph outputs + rm -rf imgs graph outputs data/tables.tex -$(IMGS): data.py +$(IMGS): python/data.py python/img.py cd imgs && \ - python3 ../data.py img + python3 ../python/img.py -$(GRAPHS): data.py - cd graph && \ - python3 ../data.py depwid && \ - python3 ../data.py nei +graph/depth_width.png: python/data.py python/depwid.py + cd graph && python3 ../python/depwid.py + +graph/nearest_neighbor.png: python/data.py python/neighbor.py + cd graph && python3 ../python/neighbor.py outputs/posterboard.png: outputs/posterboard.pdf gs -sDEVICE=pngalpha -r288 -o outputs/posterboard.png outputs/posterboard.pdf @@ -45,6 +46,5 @@ outputs/qr.png: outputs/qr-source.png: qrencode https://git.hrhr.dev/scifair -o outputs/qr-source.png - -data/tables.tex: +data/tables.tex: data/maketables.sh data/tables.orig.tex data/maketables.sh -- cgit