github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/website/Makefile (about)

     1  .PHONY: init build dev
     2  
     3  all: build
     4  
     5  build: init
     6  	bundle exec middleman build
     7  
     8  dev: init
     9  	bundle exec middleman server
    10  
    11  init:
    12  ifeq ($(shell gem list \^bundler\$$ -i), false)
    13  	gem install bundler --no-document
    14  endif
    15  	bundle check || bundle