From e66aa2b2f78e2d4b4cce615379ca699fab5d362b Mon Sep 17 00:00:00 2001 From: Krzysztof Dyba <35004826+kadyb@users.noreply.github.com> Date: Mon, 6 May 2024 21:57:55 +0200 Subject: [PATCH] remove makefile --- makefile | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 makefile diff --git a/makefile b/makefile deleted file mode 100644 index c21fc2c..0000000 --- a/makefile +++ /dev/null @@ -1,24 +0,0 @@ -default: - vi sp_gallery.Rmd - make index.html - -index.html: sp_gallery.html - cp sp_gallery.html index.html - -sp_gallery.html: sp_gallery.Rmd - # Rscript -e "library(knitr); purl(\"sp_gallery.Rmd\"); knit2html(\"sp_gallery.Rmd\", options=\"toc\")" - Rscript -e "knitr::purl(\"sp_gallery.Rmd\"); rmarkdown::render(\"sp_gallery.Rmd\", output_options = list(self_contained = FALSE))" - -commit: - git commit -a - -push: - git add sp_gallery_files/* sp_gallery_files/*/* - make commit - git push origin gh-pages - -view: - google-chrome sp_gallery.html - -onefile: - Rscript -e "knitr::purl(\"sp_gallery.Rmd\"); rmarkdown::render(\"sp_gallery.Rmd\")"