API: Remove legacy vlibsocket code.
[vpp.git] / doxygen / Makefile
index 069d97f..3250487 100644 (file)
@@ -50,17 +50,18 @@ DOXY_SRC_DIRECTORIES = \
        $(DOXY_SRC)/vlib \
        $(DOXY_SRC)/vlibapi \
        $(DOXY_SRC)/vlibmemory \
-       $(DOXY_SRC)/vlibsocket \
        $(DOXY_SRC)/vnet \
        $(DOXY_SRC)/vpp \
-       $(DOXY_SRC)/vpp-api
+       $(DOXY_SRC)/vpp-api \
+       $(DOXY_SRC)/examples
 
 # Input directories and files
 DOXY_INPUT ?= \
        $(wildcard $(WS_ROOT)/*.md) \
        $(wildcard $(DOXY_DIR)/*.md) \
        $(DOXY_SRC_DIRECTORIES) \
-       $(DOXY_SRC)/plugins
+       $(DOXY_SRC)/plugins \
+       extras
 
 # Strip leading workspace path from input names
 DOXY_INPUT := $(subst $(WS_ROOT)/,,$(DOXY_INPUT))
@@ -71,10 +72,7 @@ DOXY_INPUT := $(subst $(WS_ROOT)/,,$(DOXY_INPUT))
 # there's a DPDK equivalent that conflicts.
 # These must be left-anchored paths for the regexp below to work.
 DOXY_EXCLUDE ?= \
-       $(DOXY_SRC)/vlib/vlib/buffer.c \
-       $(DOXY_SRC)/vlib/example \
-       $(DOXY_SRC)/vpp-api/lua \
-       plugins/sample-plugin
+       $(DOXY_SRC)/vpp-api/lua
 
 # Generate a regexp for filenames to exclude
 DOXY_EXCLUDE_REGEXP = ($(subst .,\.,$(shell echo '$(strip $(DOXY_EXCLUDE))' | sed -e 's/ /|/g')))
@@ -82,10 +80,6 @@ DOXY_EXCLUDE_REGEXP = ($(subst .,\.,$(shell echo '$(strip $(DOXY_EXCLUDE))' | se
 # Include all the normal source directories in the include file path
 DOXY_INCLUDE_PATH = $(DOXY_SRC_DIRECTORIES)
 
-# Also include any plugin directories that exist
-DOXY_INCLUDE_PATH += \
-       $(shell find $(WS_ROOT)/plugins -maxdepth 1 -type d | sed -e 's@^$(WS_ROOT)/*@@')
-
 # Find API header directories and include them in the header path.
 # This is only useful if VPP and plugins are already built; nothing
 # here depends on those targets. We don't build documentation for these
@@ -140,7 +134,7 @@ ifeq ($(OS_ID),ubuntu)
                        sudo apt-get $(CONFIRM) $(FORCE) install $$inst; \
                fi
        @if [ ! -s /usr/lib/graphviz/config6a ]; then \
-               echo "Rebuidlding system Graphviz configuration."; \
+               echo "Rebuilding system Graphviz configuration."; \
                sudo dot -c; \
        fi
 else ifneq ("$(wildcard /etc/redhat-release)","")
@@ -208,6 +202,7 @@ $(SIPHON_FILES): $(BR)/.doxygen-bootstrap.ok \
                cd "$(WS_ROOT)"; \
                find "$$input" -type f \
                        \( -name '*.[ch]' -or -name '*.dox' \) -print \
+                       | grep -v -E '^src/examples/' \
                        | grep -v -E '^$(DOXY_EXCLUDE_REGEXP)' \
                        >> $(SIPHON_INPUT)/files; \
        done