blog.bouah.net/Makefile
Maxime “pep” Buquet fe3c9d42e7
Change domain to bouah.net
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2019-02-25 17:40:33 +00:00

26 lines
554 B
Makefile

#
# Makefile
# Maxime "Pepe_" Buquet, 2018-02-21 00:12
#
all:
rm -rf public/*
hugo --debug --destination public
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
#