2013-12-04 05:10:27 +00:00
|
|
|
|
2021-03-20 18:22:18 +00:00
|
|
|
JEKYLL=bundle exec jekyll
|
|
|
|
|
|
|
|
|
2011-05-19 04:30:06 +00:00
|
|
|
all:
|
2021-03-20 18:22:18 +00:00
|
|
|
LANG="en_US.UTF-8" $(JEKYLL) build
|
2011-05-19 04:30:06 +00:00
|
|
|
|
2018-12-08 05:25:38 +00:00
|
|
|
drafts: tags
|
2021-03-20 18:22:18 +00:00
|
|
|
LANG="en_US.UTF-8" $(JEKYLL) serve --drafts --incremental
|
2018-12-08 05:25:38 +00:00
|
|
|
|
2019-02-23 17:51:39 +00:00
|
|
|
run: tags
|
2021-04-27 06:17:43 +00:00
|
|
|
rm -rf _site && $(JEKYLL) serve --drafts --future --watch --incremental --limit-posts 40
|
2019-02-23 17:51:39 +00:00
|
|
|
|
2018-12-08 05:25:38 +00:00
|
|
|
tags:
|
|
|
|
./generate-tags
|
|
|
|
|
|
|
|
publish: tags
|
2018-08-05 22:27:38 +00:00
|
|
|
find files -iname "*.png" -type f -exec pngcrush -ow -noforce -reduce {} \;
|
2021-03-20 18:22:18 +00:00
|
|
|
$(JEKYLL) build
|
2011-05-19 04:30:06 +00:00
|
|
|
|
2021-02-18 06:48:24 +00:00
|
|
|
.PHONY: all drafts tags publish microblog
|
|
|
|
|
|
|
|
microblog:
|
2021-02-19 06:01:18 +00:00
|
|
|
_scripts/new-microblog && \
|
|
|
|
git add _microblog tweets && git commit --no-gpg-sign -m "tweet"
|