site.lyte.dev/makefile

7 lines
123 B
Makefile

.PHONY: all default build dev
build: ; hugo
public: build
dev: ; hugo serve --buildDrafts
all: build
clean: ; rm -r public