From 56ba5401a642a85781b09aadafd68b7f97b868ba Mon Sep 17 00:00:00 2001 From: santisoler Date: Tue, 23 Mar 2021 22:17:26 +0000 Subject: Allow to modify jekyll in Makefile --- Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 51be92b..31b5468 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,17 @@ +# Construye tu sitio web en texto-plano con Jekyll +# +# Para usar este makefile desde texto-plano.xyz corre make modificando el +# comando del compilador: +# +# make JEKYLL=jekyll26 + +JEKYLL := bundle exec jekyll + all: - bundle exec jekyll build + $(JEKYLL) build serve: - bundle exec jekyll serve + $(JEKYLL) jekyll serve clean: - bundle exec jekyll clean + $(JEKYLL) jekyll clean -- cgit v1.2.3