This commit is contained in:
2019-11-14 17:43:12 -08:00
commit 228697c326
13 changed files with 490 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
.PHONY: vendor localserve clean distclean deploy
default: localserve
_site: vendor
JEKYLL_ENV=production bundle exec jekyll build
find ./_site
vendor:
bundle install --path vendor/bundle --binstubs vendor/bundle/bin
localserve: vendor
JEKYLL_ENV=production bundle exec jekyll serve
clean:
rm -rf tmp _site
distclean: clean
rm -rfv vendor