mirror of
https://gh.wpcy.net/https://github.com/bohdanbobrowski/blog2epub.git
synced 2026-04-24 10:59:31 +08:00
22 lines
292 B
Makefile
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
|