diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,7 @@ JEKYLL_ENV ?= development # JEKYLL_ENV ?= production +export JEKYLL_ENV WEBROOT ?= _site @@ -35,3 +36,7 @@ $(REPO_META): clean: FORCE $(RM) -r $(WEBROOT) +_dist.tar.gz: FORCE + $(MAKE) -E JEKYLL_ENV=production -B build + tar -zcf $@ -C _site . + |