16 lines
510 B
Makefile
16 lines
510 B
Makefile
|
|
.PHONY: build clean
|
||
|
|
|
||
|
|
# Publication targets. Source of truth is always the upstream repo; pages here
|
||
|
|
# are generated and must never be hand-edited.
|
||
|
|
SRC_NETKINGDOM ?= $(HOME)/net-kingdom
|
||
|
|
|
||
|
|
build:
|
||
|
|
mkdir -p build
|
||
|
|
python3 tools/render.py $(SRC_NETKINGDOM)/canon/standards/tenancy-posture_v0.1.md \
|
||
|
|
--output build/tenancy-posture.html \
|
||
|
|
--title "Tenancy Posture" \
|
||
|
|
--subtitle "A framework for describing, holding and improving multi-tenancy — including where we are not there yet."
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -rf build
|