Skip to content

Instantly share code, notes, and snippets.

@ramnathv
Created January 14, 2014 14:51
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 ramnathv/8419468 to your computer and use it in GitHub Desktop.
Save ramnathv/8419468 to your computer and use it in GitHub Desktop.
DELAY = 1000
RMD_FILES = $(wildcard */index.Rmd)
HTML_FILES = $(patsubst %.Rmd, %.html, $(RMD_FILES))
PDF_FILES = $(patsubst %/index.html, lectures/%.pdf, $(HTML_FILES))
listfiles:
@echo $(RMD_FILES)
@echo $(HTML_FILES)
@echo $(PDF_FILES)
html: $(HTML_FILES)
pdf: $(PDF_FILES)
all: html pdf
zip: $(PDF_FILES)
zip all_pdf_files.zip $^
lectures/%.pdf: %/index.html
casperjs makepdf.js $< $@ $(DELAY)
%/index.html: %/index.Rmd
cd $(dir $<) && Rscript -e "slidify::slidify('index.Rmd')" && cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment