15 lines
396 B
Makefile
15 lines
396 B
Makefile
DEV_DIST_DIR:=./devdist/
|
|
PROD_DIST_DIR:=./dist/
|
|
|
|
devserver:
|
|
@echo "Serving development site from $(DEV_DIST_DIR)"
|
|
@jekyll serve --watch --incremental --destination devdist
|
|
|
|
proddist:
|
|
@echo "Building production site into $(PROD_DIST_DIR)"
|
|
@jekyll build
|
|
|
|
release:
|
|
@echo "Pushing $(PROD_DIST_DIR) contents to the upstream production branch"
|
|
@git subtree push --prefix dist upstream production
|