blog.bouah.net/Makefile

20 lines
322 B
Makefile
Raw Permalink 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:
hugo --debug --baseUrl "https://blog.bouah.net/_drafts" \
2018-07-13 15:00:23 +00:00
--buildDrafts --buildFuture --destination drafts
2018-03-31 01:43:24 +00:00
serve:
hugo serve --debug --buildDrafts --buildFuture
2018-08-28 23:12:35 +00:00
.PHONY: drafts
2018-03-31 01:43:24 +00:00
# vim:ft=make
#