mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 09:19:00 +00:00
d93a666ddb
Now with improved horizontal rules!
12 lines
324 B
Makefile
12 lines
324 B
Makefile
.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
|
|
|
|
.PHONY = serve
|
|
serve: build-openring
|
|
ls assets/templates/openring-input.html | entr make build-openring& hugo serve --buildFuture
|