danielrayjones/Makefile
2018-02-06 17:22:10 +00:00

11 lines
253 B
Makefile

export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
IP ?= 127.0.0.1
PORT ?= 4000
all: serve
stage:
bundle exec jekyll build -c '_config.yml,_config.local.yml'
serve:
bundle exec jekyll serve -H "$(IP)" -P "$(PORT)" -c '_config.yml,_config.local.yml'