Skip to content

Instantly share code, notes, and snippets.

@pdparker
Last active August 29, 2015 14:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pdparker/4bdaaee8b0bf52b520ef to your computer and use it in GitHub Desktop.
Save pdparker/4bdaaee8b0bf52b520ef to your computer and use it in GitHub Desktop.
knitr makefile
# Transform .Rmd files to slidy files
.SUFFIXES: .Rmd .html .md
all: Day1Part1-Introduction.md Day1Part1-Introduction.html Day1Part1-session2.md Day1Part1-session2.html \
Day1Part1-session3.md Day1Part1-session3.html Day1Part2-session1.md Day1Part2-session1.html \
Day1Part2-session2.md Day1Part2-session2.html
#markdown
%.md: %.Rmd
/usr/bin/Rscript -e "knitr::knit('$*.Rmd')"
#html slides
%.html: %.md
pandoc -s -t slidy $*.md -o $*.html
clean:
rm -rf *.inp *.md
cleanhtml:
rm -rf *.html figure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment