From eb0cfce8013d4bfcd45cc1162cce865e655ac459 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Thu, 19 Apr 2018 08:49:17 +0200 Subject: wip --- Makefile | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0dab227..2f8da55 100644 --- a/Makefile +++ b/Makefile @@ -4,21 +4,34 @@ SLIDE_THEME=boxes PDFS=$(P)-text.pdf $(P)-slides.pdf HTMLS=$(P)-reveal.html -RUN_PP_BEAMER=pp -DBEAMER -RUN_PANDOC_BEAMER=pandoc -f markdown -t beamer --highlight-style=pygments -V theme:$(SLIDE_THEME) \ - --pdf-engine=xelatex +ifeq (1,$(QUICK)) +PP_DEFS+=QUICK +PDF_ENGINE = pdflatex +PANDOC_ARGS += --no-highlight +else +PDF_ENGINE = xelatex +PANDOC_ARGS += --highlight-style=pygments +endif + +RUN_PP_BEAMER=pp -DBEAMER $(patsubst %,-D%,$(PP_DEFS)) +RUN_PP_REVEALJS=pp -DREVEALJS $(patsubst %,-D%,$(PP_DEFS)) +RUN_PANDOC_BEAMER=pandoc -f markdown -t beamer $(PANDOC_ARGS) -V theme:$(SLIDE_THEME) \ + --pdf-engine=$(PDF_ENGINE) RUN_PANDOC_REVEALJS=pandoc -f markdown -t revealjs -s -V revealjs-url=./bower_components/reveal.js -RUN_PANDOC_TEXT=pandoc -f markdown --pdf-engine=xelatex +RUN_PANDOC_TEXT=pandoc -f markdown --pdf-engine=$(PDF_ENGINE) -all: $(PDFS) $(HTMLS) +all: toc.md $(PDFS) $(HTMLS) -slides: $(P)-slides.pdf $(P)-slides.tex +slides: $(P)-slides.tex $(P)-slides.pdf html: $(P)-reveal.html .PHONY: html slides clean: rm -f $(PDFS) $(HTMLS) +toc.md: $(P).md + grep '^#' $< | sed -e 's,^# ,* ,' -e 's,^## , * ,' > $@ + spell: .$(P).md.spell .$(P).md.spell: $(P).md @@ -42,15 +55,18 @@ $(P).md: Makefile %-slides.tex: %.beamer.md $(RUN_PANDOC_BEAMER) -o $@ $< -%-reveal.html: %.md +%.revealjs.md: %.md + $(RUN_PP_REVEALJS) < $< > $@ + +%-reveal.html: %.revealjs.md $(RUN_PANDOC_REVEALJS) -o $@ $< -images/%.pdf: images/%.tex | Makefile - xelatex -output-directory=images $< -# pdfcrop $@ -# mv $(patsubst %.pdf,%-crop.pdf,$@) $@ +images/%.pdf: images/%.tex | images/pp-template Makefile + images/pp-template < $< > $(patsubst %.tex,%-full.tex,$<) + xelatex -output-directory=images $(patsubst %.tex,%-full.tex,$<) + mv $(patsubst %.pdf,%-full.pdf,$@) $@ # Dependencies -$(P).md: images/IP-Header_eng.pdf +$(P).md: images/IP-Header_eng.tex $(P).md: images/ip-header.pdf $(P).md: images/ip-header.svg -- cgit v1.2.3