mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 04:58:26 +00:00
12 lines
171 B
Makefile
12 lines
171 B
Makefile
.PHONY = build
|
|
build: build-openring
|
|
hugo
|
|
|
|
.PHONY = build-openring
|
|
build-openring:
|
|
./bin/openring-create
|
|
|
|
.PHONY = serve
|
|
serve: build-openring
|
|
hugo serve --buildFuture
|