mirror of
https://github.com/MichaelCurrin/mkdocs-quickstart.git
synced 2026-03-28 17:42:47 +01:00
20 lines
218 B
Makefile
20 lines
218 B
Makefile
.PHONY: docs
|
|
|
|
default: install
|
|
|
|
|
|
h help:
|
|
@egrep '(^\S)|(^$$)|\s+@echo' Makefile
|
|
|
|
|
|
install:
|
|
pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
|
|
|
|
s serve:
|
|
mkdocs serve --strict
|
|
|
|
d docs:
|
|
mkdocs build --strict
|