From 3461a3c7f3664b36cbee9be40755f8a0ec0e570c Mon Sep 17 00:00:00 2001 From: santisoler Date: Tue, 23 Mar 2021 22:40:21 +0000 Subject: Use JEKYLL variable 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