initial
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user