summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '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