12 lines
310 B
Makefile
12 lines
310 B
Makefile
ANTORA_DIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
|
|
|
doc: .FORCE
|
|
podman run --rm -it -v "$(ANTORA_DIR):/antora:z" \
|
|
antora/antora --html-url-extension-style=indexify site.yml
|
|
|
|
serve: .FORCE
|
|
python3 -m http.server --directory "$(ANTORA_DIR)public"
|
|
|
|
.FORCE:
|
|
.DEFAULT_GOAL := doc
|
|
.PHONY: doc serve
|