summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsantisoler <santisoler@texto-plano.xyz>2021-03-23 22:40:21 +0000
committersantisoler <santisoler@texto-plano.xyz>2021-03-23 22:40:21 +0000
commit3461a3c7f3664b36cbee9be40755f8a0ec0e570c (patch)
treea8eedaa2780442f57f0eaf416ee314140f00209a
parent280204ed8ff320d659ba333560f82dccc3f7770d (diff)
downloadwebsite-3461a3c7f3664b36cbee9be40755f8a0ec0e570c.tar.gz
Use JEKYLL variable in Makefile
-rw-r--r--Makefile15
1 files 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
Un proyecto texto-plano.xyz