This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/Makefile
2017-10-04 16:53:19 +02:00

15 lines
436 B
Makefile

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