From 069c1dc90347bc3c8f9940517132c34813b0da36 Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Wed, 2 Jan 2019 17:42:14 +0100 Subject: [PATCH] =?UTF-8?q?Makefile=20hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b971ddb --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: pdf html +INPUT=vhk.Rmd + +pdf: + Rscript -e 'rmarkdown::render("$(INPUT)", "beamer_presentation")' + +html: + Rscript -e 'rmarkdown::render("$(INPUT)", "slidy_presentation")'