blog.bouah.net/Makefile
Maxime “pep” Buquet 4828bce9d4
Makefile: Add clean rule
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-04-14 00:43:08 +02:00

31 lines
637 B
Makefile

#
# Makefile
# Maxime “pep” Buquet, 2018-02-21 00:12
#
all: public
public: clean
hugo --debug --destination public
systemctl --user start blog-goaccess.service
branches:
for branch in $(shell git branch --list "post-*"); do \
git checkout $$branch; \
hugo --debug --baseUrl "https://bouah.net/_drafts/$$branch" \
--buildDrafts --buildFuture --destination drafts/$$branch; \
done
drafts:
hugo --debug --baseUrl "https://bouah.net/_drafts" \
--buildDrafts --buildFuture --destination drafts
serve:
hugo serve --debug --buildDrafts --buildFuture
clean:
rm -rf public drafts
.PHONY: branches drafts
# vim:ft=make
#