THEME_DIR := themes/hugo-book HUGO := hugo # Check if the submodule needs to be updated setup: @git lfs install && git lfs pull @git submodule update --init --recursive run: setup $(HUGO) server --noHTTPCache compile: setup $(HUGO) --minify .PHONY: setup run compile