26 lines
564 B
Makefile
26 lines
564 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://blog.bouah.net/_drafts/$$branch" \
|
|
--buildDrafts --buildFuture --destination drafts/$$branch; \
|
|
done
|
|
|
|
drafts:
|
|
hugo --debug --baseUrl "https://blog.bouah.net/_drafts" \
|
|
--buildDrafts --buildFuture --destination drafts
|
|
|
|
serve:
|
|
hugo serve --debug --buildDrafts --buildFuture
|
|
|
|
.PHONY: branches drafts
|
|
# vim:ft=make
|
|
#
|