diff options
| author | Holden Rohrer <hr@hrhr.dev> | 2020-02-06 19:09:36 -0500 | 
|---|---|---|
| committer | Holden Rohrer <hr@hrhr.dev> | 2020-02-06 19:32:24 -0500 | 
| commit | 8381e3df41b6c8d04c2bae2bb65eba0fb08368e2 (patch) | |
| tree | 8acee97bb5c371f837bf591eb5136b73a1b4dcd6 /Makefile | |
| parent | 19d5a56264d1a718425b24469dfc149db1fc33c3 (diff) | |
switched to makefile build
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 46 | 
1 files changed, 46 insertions, 0 deletions
| diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cc90f91 --- /dev/null +++ b/Makefile @@ -0,0 +1,46 @@ +IMGS := imgs/2019-10-16.png imgs/2019-10-30.png imgs/2019-12-19.png imgs/2019-12-20.png imgs/2019-12-3.png imgs/2019-12-5.png +GRAPHS := graph/depth_width.png graph/nearest_neighbor.png +ASSETS := $(IMGS) $(GRAPHS) + +$(shell mkdir -p imgs graph outputs) + +.PHONY: all +all: outputs/posterboard.pdf outputs/report.pdf outputs/logbook.pdf +.PHONY: png +png: outputs/posterboard.png +.PHONY: clean +clean: +	rm -rf imgs graph outputs + +$(IMGS): data.py +	cd imgs && \ +	python3 ../data.py img + +$(GRAPHS): data.py  +	cd graph && \ +	python3 ../data.py depwid && \ +	python3 ../data.py nei + +outputs/posterboard.png: outputs/posterboard.pdf  +	gs -sDEVICE=pngalpha -r288 -o outputs/posterboard.png outputs/posterboard.pdf + +outputs/posterboard.pdf: $(wildcard poster/*.tex) outputs/qr-source.png outputs/qr.png $(ASSETS) +	cd poster && pdftex document.tex >/dev/null +	rm poster/document.log +	mv poster/document.pdf outputs/posterboard.pdf + +outputs/logbook.pdf: logbook.tex document/research.tex document/biblio.tex poster/hypothesis.tex data/mats.tex poster/vars.tex poster/methods.tex document/tables.tex poster/conclusion.tex data/bulletnotes.tex $(ASSETS) +	pdftex logbook.tex >/dev/null +	rm logbook.log +	mv logbook.pdf outputs + +outputs/report.pdf: $(wildcard outputs/*.tex) $(ASSETS) +	cd document && pdftex report.tex >/dev/null +	rm document/report.log +	mv document/report.pdf outputs + +outputs/qr.png: +	qrencode https://hrhr.dev/report.pdf -o outputs/qr.png + +outputs/qr-source.png: +	qrencode https://git.hrhr.dev/scifair -o outputs/qr-source.png | 
