diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9085036 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +default: install + +all: install build + +h help: + @grep '^[a-z]' Makefile + +install: + bundle config --local path vendor/bundle + bundle install + +s serve: + bundle exec jekyll serve --trace --livereload + +build: + JEKYLL_ENV=production bundle exec jekyll build --trace + +upgrade: + bundle update + +build-dev: + bundle exec jekyll build +