blog.bouah.net/Makefile

17 lines
256 B
Makefile

#
# Makefile
# Maxime "Pepe_" Buquet, 2018-02-21 00:12
#
all:
rm -rf public
hugo --debug --destination public
drafts:
rm -rf drafts
hugo --debug --baseUrl "https://test.bouah.net" \
--buildDrafts --buildFuture --destination drafts
# vim:ft=make
#