blog.bouah.net/Makefile

20 lines
312 B
Makefile
Raw Normal View History

2018-03-31 01:43:24 +00:00
#
# Makefile
# Maxime "Pepe_" Buquet, 2018-02-21 00:12
#
all:
rm -rf public
2018-07-13 15:00:23 +00:00
hugo --debug --destination public
drafts:
rm -rf drafts
hugo --debug --baseUrl "https://test.bouah.net" \
--buildDrafts --buildFuture --destination drafts
2018-03-31 01:43:24 +00:00
serve:
hugo serve --debug --buildDrafts --buildFuture
2018-03-31 01:43:24 +00:00
# vim:ft=make
#