Created
June 4, 2013 02:27
-
-
Save wush978/5703158 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RMD_FILES = $(wildcard *.Rmd) | |
HTML_FILES = $(RMD_FILES:.Rmd=.html) | |
all: $(HTML_FILES) | |
(cd img && make) | |
%.html: %.md | |
pandoc -s -S -i -t slidy --mathjax -V slidy_url=slidy --base-header-level=3 $(@:.html=.md) -o $@ | |
%.md: %.Rmd | |
Rscript knit.R $< $@ | |
Rscript ../gist/jekyll/jekyll.R $@ | |
clean: | |
-rm *.html *.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment