diff options
Diffstat (limited to 'Makefile.orig')
-rw-r--r-- | Makefile.orig | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/Makefile.orig b/Makefile.orig index 6d668ef..ed3c2d6 100644 --- a/Makefile.orig +++ b/Makefile.orig @@ -3,16 +3,12 @@ DIRS = outputs graph PDFS = poster/document.pdf report/document.pdf logbook/document.pdf +PYTHON = python3 +PDFTEX = pdftex +GHOSTSCRIPT = gs pdfs: outputs/poster.pdf outputs/report.pdf outputs/logbook.pdf $(DIRS): mkdir -p $@ - -outputs/poster.pdf: poster/document.pdf outputs - cp -f $< $@ -outputs/report.pdf: report/document.pdf outputs - cp -f $< $@ -outputs/logbook.pdf: logbook/document.pdf outputs - cp -f $< $@ png: outputs/poster.png clean: @@ -21,25 +17,25 @@ clean: imgs: python/data.py python/img.py mkdir -p imgs cd imgs && \ - python3 ../python/img.py + $(PYTHON) ../python/img.py graph/depth_width.png: python/data.py python/depwid.py graph - cd graph && python3 ../python/depwid.py + cd graph && $(PYTHON) ../python/depwid.py graph/nearest_neighbor.png: python/data.py python/neighbor.py graph - cd graph && python3 ../python/neighbor.py + cd graph && $(PYTHON) ../python/neighbor.py graph/made: graph/depth_width.png graph/nearest_neighbor.png graph touch graph/made outputs/poster.png: outputs/poster.pdf outputs - gs -sDEVICE=pngalpha -r288 -o outputs/poster.png outputs/poster.pdf + $(GHOSTSCRIPT) -sDEVICE=pngalpha -r288 -o outputs/poster.png outputs/poster.pdf $(PDFS): gen/tables.tex imgs graph/made .tex.pdf: cd ${@D} && \ - pdftex document.tex >/dev/null + $(PDFTEX) document.tex >/dev/null rm ${@D}/document.log gen/tables.tex: gen/maketables.sh gen/tables.orig.tex |