diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-02-20 16:03:08 +0100 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-02-20 16:03:08 +0100 |
commit | 0947d02a10bbc91dfcccc2ce4be3801043a16a78 (patch) | |
tree | 2b8a1d3f627c6fd092049b1088b98825f5653131 /Makefile | |
parent | 8ba0292cd9299e415bc9c2c2a3307d61177f0cf5 (diff) |
Pipeline architecture described in README.md
`README.md' didn't contain a general description of the pipeline's design
architecture. So a few paragraphs have been added to help someone new to it
to understand it better.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -60,7 +60,10 @@ all: reproduce/build paper.pdf # high-level processing Makefiles are included through the `foreach' loop # below by explicitly requesting them in a specific order here. include reproduce/config/pipeline/*.mk -include $(foreach f, initialize download paper, reproduce/src/make/$(f).mk) +include $(foreach f, initialize \ + download \ + paper, \ + reproduce/src/make/$(f).mk) @@ -84,7 +87,9 @@ include $(foreach f, initialize download paper, reproduce/src/make/$(f).mk) # Note that if you don't want the final PDF and just want the processing # and file outputs, you can remove the value of the `pdf-build-final' # variable in `reproduce/config/pdf-build.mk'. -tex/pipeline.tex: $(foreach f, initialize download, $(mtexdir)/$(f).tex) +tex/pipeline.tex: $(foreach f, initialize \ + download, \ + $(mtexdir)/$(f).tex) # If no PDF is requested, then just exit here. ifeq ($(pdf-build-final),) |