From d253f43de169fefe0b8597d5caae5b66ff6dc44c Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 19 Sep 2017 16:01:30 +0200 Subject: [PATCH] use spaces to align --- makefile | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/makefile b/makefile index 476205e..c07ffc0 100644 --- a/makefile +++ b/makefile @@ -8,30 +8,30 @@ chapters = $(shell find $(src)/part-* -name '*.html' | sort -V) all: $(title).epub $(title).pdf $(title).pdf: - @ cd $(src)/init; \ - pandoc \ - $(src)/init/preface.html \ - $(chapters) \ - --smart \ - --toc \ - --number-section \ - --latex-engine=xelatex \ - --data-dir=$(root)/pandoc \ - -H $(root)/pandoc/options.tex \ - -o $(root)/$(title).pdf + @ cd $(src)/init; \ + pandoc \ + $(src)/init/preface.html \ + $(chapters) \ + --smart \ + --toc \ + --number-section \ + --latex-engine=xelatex \ + --data-dir=$(root)/pandoc \ + -H $(root)/pandoc/options.tex \ + -o $(root)/$(title).pdf $(title).epub: - @ cd $(src)/init; \ - pandoc \ - $(src)/init/preface.html \ - $(chapters) \ - --smart \ - --toc \ - --number-section \ - --epub-stylesheet=$(root)/pandoc/style.css \ - --epub-cover-image=$(root)/pandoc/cover.png \ - --epub-embed-font='$(src)/fonts/*.woff' \ - -o $(root)/$(title).epub + @ cd $(src)/init; \ + pandoc \ + $(src)/init/preface.html \ + $(chapters) \ + --smart \ + --toc \ + --number-section \ + --epub-stylesheet=$(root)/pandoc/style.css \ + --epub-cover-image=$(root)/pandoc/cover.png \ + --epub-embed-font='$(src)/fonts/*.woff' \ + -o $(root)/$(title).epub clean: rm $(root)/$(title).{pdf,epub}