20 lines
327 B
Makefile
20 lines
327 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
|
|
|
|
serve:
|
|
rm -rf drafts
|
|
hugo serve --debug --buildDrafts --buildFuture
|
|
|
|
# vim:ft=make
|
|
#
|