website/Makefile

12 lines
324 B
Makefile
Raw Normal View History

2020-11-06 22:16:12 +00:00
.PHONY = build
build: build-openring
hugo
.PHONY = build-openring
build-openring:
./bin/openring-create --input assets/templates/openring-input.html --output layouts/partials/openring.html
2020-11-06 22:16:12 +00:00
.PHONY = serve
serve: build-openring
ls assets/templates/openring-input.html | entr make build-openring& hugo serve --buildFuture