summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsantisoler <santisoler@texto-plano.xyz>2021-03-23 22:17:26 +0000
committersantisoler <santisoler@texto-plano.xyz>2021-03-23 22:17:26 +0000
commit56ba5401a642a85781b09aadafd68b7f97b868ba (patch)
tree2aa6b62a59cd641515aa4cd502688ff39dc8a31c
parent6817fce9cc7b3780b49073e56de445b7f525735c (diff)
downloadwebsite-template-56ba5401a642a85781b09aadafd68b7f97b868ba.tar.gz
Allow to modify jekyll 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