mirror of
https://github.com/boostorg/msm.git
synced 2026-07-21 13:23:45 +00:00
16 lines
427 B
Makefile
16 lines
427 B
Makefile
|
|
SOURCE:=$(shell find modules)
|
|
|
|
.PHONY: build
|
|
build : build/lib/doc/msm/index.html
|
|
|
|
.PHONY: setup
|
|
setup:
|
|
npm install
|
|
wget -q https://github.com/cppalliance/mrdocs/releases/download/v0.8.0/MrDocs-0.8.0-Linux.tar.xz -O mrdocs.tar.xz
|
|
sudo tar -xJf mrdocs.tar.xz -C /usr/local --strip-components=1 MrDocs-0.8.0-Linux
|
|
rm mrdocs.tar.xz
|
|
|
|
build/lib/doc/msm/index.html: $(SOURCE)
|
|
npx antora --fetch local-playbook.yml --stacktrace
|