blob: 7468139809b6f493193b216450d8989dedd9578d [file] [log] [blame]
Larry Peterson80143522018-06-28 10:43:40 -07001# 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 Williamsda8a5d82017-09-08 12:45:14 -07007
Larry Peterson80143522018-06-28 10:43:40 -07008default: serve
Matteo Scandolo431781c2017-09-06 15:33:07 -07009
Larry Peterson80143522018-06-28 10:43:40 -070010# use bash for pushd/popd, and to fail if commands within a pipe fail
11SHELL = bash -o pipefail
Zack Williamsda8a5d82017-09-08 12:45:14 -070012
Larry Peterson80143522018-06-28 10:43:40 -070013GENERATED_DOCS =
Matteo Scandolo431781c2017-09-06 15:33:07 -070014
Larry Peterson80143522018-06-28 10:43:40 -070015LINT_STYLE ?= mdl_relaxed.rb
Zack Williams6c78f912018-06-21 10:56:24 -070016
Larry Peterson80143522018-06-28 10:43:40 -070017serve: setup
18 gitbook serve
Matteo Scandolo431781c2017-09-06 15:33:07 -070019
Larry Peterson80143522018-06-28 10:43:40 -070020build: setup
21 gitbook build
Zack Williamsda8a5d82017-09-08 12:45:14 -070022
Larry Peterson80143522018-06-28 10:43:40 -070023setup: xos-gui xos-tosca
24 gitbook init
25 gitbook install
Matteo Scandolo431781c2017-09-06 15:33:07 -070026
Larry Peterson80143522018-06-28 10:43:40 -070027test: linkcheck lint
28
29linkcheck: build
30 linkchecker -a _book/
31
32lint:
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
41xos-gui:
42 ln -s ../../xos-gui/docs xos-gui
43
44xos-tosca:
45 ln -s ../../xos-tosca/docs xos-tosca
46
47
48clean:
49 rm -rf $(GENERATED_DOCS)
50 rm -rf _book
51 rm -rf node_modules
52 rm -rf xos xos-gui xos-tosca