brokenco.de/Makefile

19 lines
370 B
Makefile
Raw Normal View History

all:
LANG="en_US.UTF-8" jekyll build
drafts: tags
2019-02-03 23:34:46 +00:00
LANG="en_US.UTF-8" jekyll serve --drafts --incremental
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
tags:
./generate-tags
publish: tags
2018-08-05 22:27:38 +00:00
find files -iname "*.png" -type f -exec pngcrush -ow -noforce -reduce {} \;
jekyll build
.PHONY: all drafts tags publish