.POSIX: .SUFFIXES: HUGO ?= hugo all: build clean: @[ ! -d public ] || rm -rf public build: clean @$(HUGO) build --minify serve: clean @$(HUGO) serve --disableFastRender .PHONY: all clean build serve