blog2epub/Makefile
Bohdan Bobrowski a7d1164907 Jekyll
2023-10-29 01:21:02 +02:00

22 lines
292 B
Makefile

default: install
all: install build
h help:
@grep '^[a-z]' Makefile
install:
bundle config set --local path vendor/bundle
bundle install
upgrade:
bundle update
s serve:
bundle exec jekyll serve --trace --livereload
build:
JEKYLL_ENV=production bundle exec jekyll build --trace