Skip to content

Instantly share code, notes, and snippets.

@lijin305
Forked from btbytes/Makefile
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lijin305/32689e46a331da023eaa to your computer and use it in GitHub Desktop.
Save lijin305/32689e46a331da023eaa to your computer and use it in GitHub Desktop.
%.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