presentation-zfs-intro/Makefile

20 lines
531 B
Makefile

all: html zfs-intro.pdf zfs-intro-notes.pdf
html: zfs-intro.html
zfs-intro.html: zfs-intro.md
pandoc -f markdown+inline_notes+smart \
-t revealjs+smart --standalone --slide-level=2 \
--css=usrspace.css \
-V 'revealjs-url:reveal.js/' \
-o zfs-intro.html zfs-intro.md
zfs-intro.pdf: zfs-intro.html
@echo Open file://$(PWD)/zfs-intro.html\?print-pdf
zfs-intro-notes.pdf: zfs-intro.html
@echo Open file://$(PWD)/zfs-intro.html?print-pdf&showNotes=true
clean:
rm -rf zfs-intro.html zfs-intro.pdf zfs-intro-notes.pdf *.svg