aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-05 10:56:06 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-05 10:56:06 +0200
commit2a49db8b5c2946555e7fa3a26193814ee711fb71 (patch)
tree3ffade57adc7a72c15282d1228fdc6005aaa1a8c /makefile
parent1643801e434c2c9bb09353998856210a46056f3b (diff)
add fallback (no client js) search
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/makefile b/makefile
index b5f594d..46f6162 100644
--- a/makefile
+++ b/makefile
@@ -8,11 +8,12 @@ JEKYLL_BUILD_ARGS += --destination $(WEBROOT)
# Gemfile.lock is used as a proxy for checking if the required gems are
# installed
+GEMS = Gemfile.lock
-build: Gemfile.lock
+build: $(GEMS)
bundle exec jekyll build $(JEKYLL_BUILD_ARGS)
-Gemfile.lock: Gemfile
+$(GEMS): Gemfile
bundle install --quiet
clean: