blog.bouah.net/Makefile
2019-03-03 21:18:13 +09:00

27 lines
600 B
Makefile

#
# Makefile
# Maxime "Pepe_" Buquet, 2018-02-21 00:12
#
all:
rm -rf public/*
hugo --debug --destination public
systemctl --user start blog-goaccess.service
branches:
for branch in $(shell git branch --list "post-*"); do \
git checkout $$branch; \
hugo --debug --baseUrl "https://bouah.net/_drafts/$$branch" \
--buildDrafts --buildFuture --destination drafts/$$branch; \
done
drafts:
hugo --debug --baseUrl "https://bouah.net/_drafts" \
--buildDrafts --buildFuture --destination drafts
serve:
hugo serve --debug --buildDrafts --buildFuture
.PHONY: branches drafts
# vim:ft=make
#