brokenco.de/Makefile

16 lines
258 B
Makefile

all:
LANG="en_US.UTF-8" jekyll build
drafts: tags
LANG="en_US.UTF-8" jekyll serve --drafts
tags:
./generate-tags
publish: tags
find files -iname "*.png" -type f -exec pngcrush -ow -noforce -reduce {} \;
jekyll build
.PHONY: all drafts tags publish