summaryrefslogtreecommitdiff
path: root/Makefile
blob: 76417d0f46cdb9a45905402efc103db39ed3adaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
THEME_DIR := themes/hugo-book
HUGO := hugo

# Check if the submodule needs to be updated
setup:
	@git submodule update --init --recursive

run: setup
	$(HUGO) server --noHTTPCache

compile: setup
	$(HUGO) --minify

.PHONY: setup run compile