End user documentation site for Sketchy Maze.
https://www.sketchymaze.com/guidebook/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
284 B
19 lines
284 B
4 years ago
|
SHELL := /bin/bash
|
||
|
|
||
|
ALL: build
|
||
|
|
||
|
# `make serve` to serve the mkdocs site on localhost.
|
||
|
.PHONY: serve
|
||
|
serve:
|
||
|
mkdocs serve
|
||
|
|
||
|
# `make build` to build the static documentation site.
|
||
|
.PHONY: build
|
||
|
build:
|
||
|
mkdocs build
|
||
|
|
||
|
# `make clean` cleans everything up.
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -rf site
|