2013-12-04 05:10:27 +00:00
|
|
|
|
2011-05-19 04:30:06 +00:00
|
|
|
all:
|
2013-12-04 05:10:27 +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
|
2019-02-03 23:34:46 +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
|
2020-10-18 22:41:31 +00:00
|
|
|
rm -rf _site && jekyll serve --drafts --future --watch --incremental --limit-posts 20
|
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 {} \;
|
2013-12-04 05:10:27 +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"
|