Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 1 | # Copyright (c) 2016 Comcast Cable Communications Management, LLC. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at: |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # |
| 16 | # Build the documentation |
| 17 | # |
| 18 | |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 19 | # Default target |
| 20 | .PHONY: all |
| 21 | all: doxygen |
| 22 | |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 23 | # These should be passed in by the root Makefile |
| 24 | WS_ROOT ?= $(CURDIR)/.. |
| 25 | BR ?= $(WS_ROOT)/build-root |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 26 | |
| 27 | # We support MacOS for docs generation |
| 28 | ifeq ($(shell uname),Darwin) |
| 29 | OS_ID = darwin |
| 30 | endif |
| 31 | |
| 32 | # Work out the OS if we haven't already |
Chris Luke | e0d802b | 2016-08-31 10:04:58 -0400 | [diff] [blame] | 33 | OS_ID ?= $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 34 | |
| 35 | # Package dependencies |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 36 | DOC_DEB_DEPENDS = doxygen graphviz python-pyparsing python-jinja2 |
| 37 | DOC_RPM_DEPENDS = doxygen graphviz pyparsing python-jinja2 |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 38 | DOC_MAC_BIN_DEPENDS = doxygen dot git |
| 39 | DOC_MAC_PY_DEPENDS = pyparsing jinja2 |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 40 | |
| 41 | # Doxygen configuration and our utility scripts |
| 42 | DOXY_DIR ?= $(WS_ROOT)/doxygen |
| 43 | |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 44 | # Primary source directories |
| 45 | DOXY_SRC_DIRECTORIES = \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 46 | vppinfra \ |
| 47 | svm \ |
| 48 | vlib \ |
| 49 | vlib-api \ |
| 50 | vnet \ |
| 51 | vpp \ |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 52 | vpp-api |
| 53 | |
| 54 | # Input directories and files |
| 55 | DOXY_INPUT ?= \ |
Chris Luke | 5ccbaa9 | 2016-09-14 12:42:54 -0400 | [diff] [blame] | 56 | $(wildcard $(WS_ROOT)/*.md) \ |
| 57 | $(wildcard $(DOXY_DIR)/*.md) \ |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 58 | $(DOXY_SRC_DIRECTORIES) \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 59 | plugins |
| 60 | |
Chris Luke | 5ccbaa9 | 2016-09-14 12:42:54 -0400 | [diff] [blame] | 61 | # Strip leading workspace path from input names |
| 62 | DOXY_INPUT := $(subst $(WS_ROOT)/,,$(DOXY_INPUT)) |
| 63 | |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 64 | # Files to exclude, from pre-Doxygen steps, eg because they're |
| 65 | # selectively compiled. |
| 66 | # Examples would be to exclude non-DPDK related sources when |
| 67 | # there's a DPDK equivalent that conflicts. |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 68 | # These must be left-anchored paths for the regexp below to work. |
| 69 | DOXY_EXCLUDE ?= \ |
| 70 | vlib/vlib/buffer.c \ |
| 71 | vlib/example \ |
| 72 | plugins/sample-plugin |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 73 | |
| 74 | # Generate a regexp for filenames to exclude |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 75 | DOXY_EXCLUDE_REGEXP = ($(subst .,\.,$(shell echo '$(strip $(DOXY_EXCLUDE))' | sed -e 's/ /|/g'))) |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 76 | |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 77 | # Include all the normal source directories in the include file path |
| 78 | DOXY_INCLUDE_PATH = $(DOXY_SRC_DIRECTORIES) |
| 79 | |
| 80 | # Also include any plugin directories that exist |
| 81 | DOXY_INCLUDE_PATH += \ |
| 82 | $(shell find $(WS_ROOT)/plugins -maxdepth 1 -type d | sed -e 's@^$(WS_ROOT)/*@@') |
| 83 | |
| 84 | # Find API header directories and include them in the header path. |
| 85 | # This is only useful if VPP and plugins are already built; nothing |
| 86 | # here depends on those targets. We don't build documentation for these |
| 87 | # header files, they're just added to the INCLUDE search path for Doxygen. |
| 88 | _vpp_br = $(shell find "$(BR)" -maxdepth 1 -type d \ |
| 89 | '(' -name build-vpp_debug-native -o -name build-vpp-native ')' -print \ |
| 90 | | sed -e 's@^$(WS_ROOT)/*@@' -e 1q) |
| 91 | ifneq ($(strip $(_vpp_br)),) |
| 92 | DOXY_INCLUDE_PATH += \ |
| 93 | $(_vpp_br)/vlib-api \ |
| 94 | $(_vpp_br)/vpp |
| 95 | # Also include any plugin directories that exist |
| 96 | DOXY_INCLUDE_PATH += \ |
| 97 | $(shell find $(WS_ROOT)/$(_vpp_br)/plugins -maxdepth 1 -type d | sed -e 's@^$(WS_ROOT)/*@@') |
| 98 | endif |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 99 | |
| 100 | # Discover if we have CPP available |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 101 | _cpp = $(shell which cpp) |
| 102 | ifneq ($(strip $(_cpp)),) |
| 103 | # Add whatever directories CPP normally includes to the header path |
| 104 | DOXY_INCLUDE_PATH += $(shell set -e; $(_cpp) -v </dev/null 2>&1 | awk 'f&&/^ /{print $$1} /^\#include/{f=1}') |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 105 | endif |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 106 | |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 107 | # Target directory for doxygen output |
| 108 | DOXY_OUTPUT ?= $(BR)/docs |
| 109 | |
| 110 | # Siphoned fragments end up in here |
| 111 | SIPHON_INPUT ?= $(DOXY_OUTPUT)/siphon_fragments |
| 112 | |
| 113 | # Siphoned fragements are processed into here |
| 114 | SIPHON_OUTPUT ?= $(DOXY_OUTPUT)/siphon_docs |
| 115 | |
| 116 | # Extra document inputs that are processed in addition to DOXY_INPUT |
| 117 | EXTRA_DOXY_INPUT += $(SIPHON_OUTPUT) |
| 118 | |
| 119 | # All the siphon types we know about |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 120 | SIPHONS ?= clicmd syscfg |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 121 | |
| 122 | SIPHON_FILES = $(addprefix $(SIPHON_INPUT)/,$(addsuffix .siphon,$(SIPHONS))) |
| 123 | SIPHON_DOCS = $(addprefix $(SIPHON_OUTPUT)/,$(addsuffix .md,$(SIPHONS))) |
| 124 | |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 125 | $(BR)/.doxygen-bootstrap.ok: Makefile |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 126 | @echo "Checking whether dependencies for Doxygen are installed..." |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 127 | ifeq ($(OS_ID),ubuntu) |
Chris Luke | ee4743a | 2016-09-01 09:04:01 -0400 | [diff] [blame] | 128 | @set -e; inst=; \ |
| 129 | for i in $(DOC_DEB_DEPENDS); do \ |
| 130 | dpkg-query --show $$i >/dev/null 2>&1 || inst="$$inst $$i"; \ |
| 131 | done; \ |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 132 | if [ "$$inst" ]; then \ |
| 133 | sudo apt-get update; \ |
| 134 | sudo apt-get $(CONFIRM) $(FORCE) install $$inst; \ |
| 135 | fi |
Chris Luke | 3542514 | 2016-09-09 20:16:04 -0400 | [diff] [blame] | 136 | @if [ ! -s /usr/lib/graphviz/config6a ]; then \ |
| 137 | echo "Rebuidlding system Graphviz configuration."; \ |
Chris Luke | c87fa6d | 2016-09-09 17:51:42 -0400 | [diff] [blame] | 138 | sudo dot -c; \ |
| 139 | fi |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 140 | else ifneq ("$(wildcard /etc/redhat-release)","") |
| 141 | @sudo yum install $(CONFIRM) $(DOC_RPM_DEPENDS) |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 142 | else ifeq ($(OS_ID),darwin) |
| 143 | @set -e; \ |
| 144 | for bin in $(DOC_MAC_BIN_DEPENDS); do \ |
| 145 | which -s $${bin} || (\ |
| 146 | echo "Program '$${bin}' not found, please install it."; \ |
| 147 | false; \ |
| 148 | ); \ |
| 149 | done |
| 150 | @set -e; \ |
| 151 | for py in $(DOC_MAC_PY_DEPENDS); do \ |
| 152 | python -c "import $${py}" >/dev/null 2>&1 || (\ |
| 153 | echo "Python package '$${py}' not found, please install it."; \ |
| 154 | false; \ |
| 155 | ); \ |
| 156 | done |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 157 | else |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 158 | $(error "Building documentation currently works only on Ubuntu, CentOS or MacOS systems.") |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 159 | endif |
| 160 | @touch $@ |
| 161 | |
| 162 | .PHONY: bootstrap-doxygen |
| 163 | bootstrap-doxygen: $(BR)/.doxygen-bootstrap.ok |
| 164 | |
| 165 | .DELETE_ON_ERROR: $(BR)/.doxygen-siphon.dep |
| 166 | $(BR)/.doxygen-siphon.dep: Makefile |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 167 | @echo "Building siphon dependencies..." |
| 168 | @set -e; rm -f "$@"; for input in $(DOXY_INPUT); do \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 169 | find "$(WS_ROOT)/$$input" -type f \ |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 170 | \( -name '*.[ch]' -or -name '*.dox' \) -print \ |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 171 | | grep -v -E '^$(WS_ROOT)/$(DOXY_EXCLUDE_REGEXP)' \ |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 172 | | sed -e "s/^/\$$(SIPHON_FILES): /" \ |
| 173 | >> $@; \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 174 | done |
| 175 | |
| 176 | # Include the source -> siphon dependencies |
| 177 | -include $(BR)/.doxygen-siphon.dep |
| 178 | |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 179 | # Generate .siphon files that contain fragments of source file that |
| 180 | # relate to the siphons we support. |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 181 | .NOTPARALLEL: $(SIPHON_FILES) |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 182 | $(SIPHON_FILES): $(BR)/.doxygen-bootstrap.ok \ |
| 183 | $(DOXY_DIR)/siphon-generate \ |
| 184 | $(wildcard $(DOXY_DIR)/siphon/*.py) |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 185 | @rm -rf "$(SIPHON_INPUT)" "$(SIPHON_OUTPUT)" |
| 186 | @mkdir -p "$(SIPHON_INPUT)" "$(SIPHON_OUTPUT)" |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 187 | @touch $(SIPHON_INPUT)/files |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 188 | @echo "Collating source file list for siphoning..." |
| 189 | @for input in $(DOXY_INPUT); do \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 190 | cd "$(WS_ROOT)"; \ |
| 191 | find "$$input" -type f \ |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 192 | \( -name '*.[ch]' -or -name '*.dox' \) -print \ |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 193 | | grep -v -E '^$(DOXY_EXCLUDE_REGEXP)' \ |
Chris Luke | d4024f5 | 2016-09-06 09:32:36 -0400 | [diff] [blame] | 194 | >> $(SIPHON_INPUT)/files; \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 195 | done |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 196 | @echo "Generating siphons..." |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 197 | @set -e; \ |
| 198 | cd "$(WS_ROOT)"; \ |
| 199 | $(DOXY_DIR)/siphon-generate \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 200 | --output="$(SIPHON_INPUT)" \ |
| 201 | "@$(SIPHON_INPUT)/files" |
| 202 | |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 203 | # Process the .siphon source fragments and render them into doxygen flavored |
| 204 | # markdown documentation |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 205 | .DELETE_ON_ERROR: $(SIPHON_DOCS) |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 206 | $(SIPHON_OUTPUT)/%.md: $(SIPHON_INPUT)/%.siphon \ |
| 207 | $(DOXY_DIR)/siphon-process \ |
| 208 | $(wildcard $(DOXY_DIR)/siphon/*.py) \ |
| 209 | $(wildcard $(DOXY_DIR)/siphon_templates/*/*.md) |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 210 | @echo "Processing siphon from $(notdir $<)..." |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 211 | @set -e; \ |
| 212 | cd "$(WS_ROOT)"; \ |
| 213 | $(DOXY_DIR)/siphon-process \ |
| 214 | --type=$(basename $(notdir $<)) \ |
| 215 | --output="$@" \ |
| 216 | "$<" |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 217 | |
| 218 | # This target can be used just to generate the siphoned docs |
| 219 | .PHONY: doxygen-siphon |
| 220 | doxygen-siphon: $(SIPHON_DOCS) |
| 221 | |
| 222 | # Generate the doxygen docs |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 223 | .PHONY: doxygen |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 224 | doxygen: $(SIPHON_DOCS) |
| 225 | @mkdir -p "$(DOXY_OUTPUT)" |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 226 | @echo "Running Doxygen..." |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 227 | set -e; cd "$(WS_ROOT)"; \ |
| 228 | ROOT="$(WS_ROOT)" \ |
| 229 | BUILD_ROOT="$(BR)" \ |
| 230 | INPUT="$(addprefix $(WS_ROOT)/,$(DOXY_INPUT)) $(EXTRA_DOXY_INPUT)" \ |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 231 | INCLUDE_PATH="$(DOXY_INCLUDE_PATH)" \ |
Chris Luke | 3b48093 | 2016-09-07 13:28:59 -0400 | [diff] [blame] | 232 | EXCLUDE="$(DOXY_EXCLUDE)" \ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 233 | HTML=YES \ |
| 234 | VERSION="`git describe --tags --dirty`" \ |
| 235 | doxygen $(DOXY_DIR)/doxygen.cfg |
| 236 | |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 237 | .PHONY: wipe-doxygen |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 238 | wipe-doxygen: |
| 239 | rm -rf "$(BR)/docs" "$(BR)/.doxygen-siphon.d" |
| 240 | |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 241 | .PHONY: clean |
| 242 | clean: wipe-doxygen |