brokenco.de/Makefile

16 lines
272 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
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