danielrayjones/Makefile

12 lines
253 B
Makefile
Raw Normal View History

2017-06-04 22:05:40 -05:00
export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
IP ?= 127.0.0.1
PORT ?= 4000
2017-06-04 22:05:40 -05:00
all: serve
2017-06-04 22:05:40 -05:00
stage:
2017-06-04 22:05:40 -05:00
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'