Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 1 | # Makefile for building CORD docs site, guide.opencord.org |
| 2 | # Building docs requires the following tools: |
| 3 | # - Gitbook toolchain: https://toolchain.gitbook.com/setup.html |
| 4 | # - NPM (for Gitbook and Swagger) |
| 5 | # - Python (for build glossary script) |
| 6 | # - linkchecker (for test target) http://wummel.github.io/linkchecker/ |
Zack Williams | da8a5d8 | 2017-09-08 12:45:14 -0700 | [diff] [blame] | 7 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 8 | default: serve |
Matteo Scandolo | 431781c | 2017-09-06 15:33:07 -0700 | [diff] [blame] | 9 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 10 | # use bash for pushd/popd, and to fail if commands within a pipe fail |
| 11 | SHELL = bash -o pipefail |
Zack Williams | da8a5d8 | 2017-09-08 12:45:14 -0700 | [diff] [blame] | 12 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 13 | GENERATED_DOCS = |
Matteo Scandolo | 431781c | 2017-09-06 15:33:07 -0700 | [diff] [blame] | 14 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 15 | LINT_STYLE ?= mdl_relaxed.rb |
Zack Williams | 6c78f91 | 2018-06-21 10:56:24 -0700 | [diff] [blame] | 16 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 17 | serve: setup |
| 18 | gitbook serve |
Matteo Scandolo | 431781c | 2017-09-06 15:33:07 -0700 | [diff] [blame] | 19 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 20 | build: setup |
| 21 | gitbook build |
Zack Williams | da8a5d8 | 2017-09-08 12:45:14 -0700 | [diff] [blame] | 22 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 23 | setup: xos-gui xos-tosca |
| 24 | gitbook init |
| 25 | gitbook install |
Matteo Scandolo | 431781c | 2017-09-06 15:33:07 -0700 | [diff] [blame] | 26 | |
Larry Peterson | 8014352 | 2018-06-28 10:43:40 -0700 | [diff] [blame^] | 27 | test: linkcheck lint |
| 28 | |
| 29 | linkcheck: build |
| 30 | linkchecker -a _book/ |
| 31 | |
| 32 | lint: |
| 33 | @echo "markdownlint(mdl) version: `mdl --version`" |
| 34 | @echo "style config:" |
| 35 | @echo "---" |
| 36 | @cat $(LINT_STYLE) |
| 37 | @echo "---" |
| 38 | mdl -s $(LINT_STYLE) `find -L . ! -path "./_book/*" ! -path "./node_modules/*" -name "*.md"` |
| 39 | |
| 40 | # link directories that contain other documentation |
| 41 | xos-gui: |
| 42 | ln -s ../../xos-gui/docs xos-gui |
| 43 | |
| 44 | xos-tosca: |
| 45 | ln -s ../../xos-tosca/docs xos-tosca |
| 46 | |
| 47 | |
| 48 | clean: |
| 49 | rm -rf $(GENERATED_DOCS) |
| 50 | rm -rf _book |
| 51 | rm -rf node_modules |
| 52 | rm -rf xos xos-gui xos-tosca |