Skip to content

Commit

Permalink
Added a couple of more targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Gino Bustelo committed Apr 7, 2017
1 parent 6c799c8 commit 427be99
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PHONY: help init dev
PHONY: help init dev build clean

help:
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
Expand All @@ -7,5 +7,11 @@ help:
init: ## Install dependencies
bundle install

clean: ## Wipe the _site directory
@rm -rf _site

build: ## Build site
bundle exec jekyll build

dev: ## Run jekyll in watch mode
bundle exec jekyll serve

0 comments on commit 427be99

Please sign in to comment.