Skip to content

Instantly share code, notes, and snippets.

@btbytes
Forked from tskrynnyk/Makefile
Created June 26, 2011 16:50
Show Gist options
  • Select an option

  • Save btbytes/1047758 to your computer and use it in GitHub Desktop.

Select an option

Save btbytes/1047758 to your computer and use it in GitHub Desktop.
Pandoc makefile
%.html: %.md style.css Makefile
pandoc -c style.css -s -f markdown -t html --standalone -o $@ $<
%.odt: %.md Makefile
pandoc --standalone -f markdown -t odt -o $@ $<
%.pdf: %.md %.odt
markdown2pdf -f markdown -o $@ $<
all: doc.html doc.odt doc.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment