1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
6 # http://www.apache.org/licenses/LICENSE-2.0
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
14 export WS_ROOT=$(CURDIR)
15 export BR=$(WS_ROOT)/build-root
16 CCACHE_DIR?=$(BR)/.ccache
22 MACHINE=$(shell uname -m)
27 define disable_plugins
30 $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
35 MINIMAL_STARTUP_CONF=" \
38 cli-listen /run/vpp/cli.sock \
40 $(if $(wildcard startup.vpp),"exec startup.vpp",) \
42 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",) \
43 $(call disable_plugins,$(DISABLED_PLUGINS)) \
46 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
51 # We allow Darwin (MacOS) for docs generation; VPP build will still fail.
52 ifneq ($(shell uname),Darwin)
53 OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
54 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
57 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
59 else ifeq ($(filter rhel centos fedora,$(OS_ID)),$(OS_ID))
63 # +libganglia1-dev if building the gmond plugin
65 DEB_DEPENDS = curl build-essential autoconf automake ccache
66 DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd dh-python
67 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
68 DEB_DEPENDS += lcov chrpath autoconf libnuma-dev
69 DEB_DEPENDS += python3-all python3-setuptools check
70 DEB_DEPENDS += libffi-dev python3-ply libmbedtls-dev
71 DEB_DEPENDS += cmake ninja-build uuid-dev python3-jsonschema python3-yaml
72 DEB_DEPENDS += python3-venv # ensurepip
73 DEB_DEPENDS += python3-dev # needed for python3 -m pip install psutil
74 DEB_DEPENDS += libnl-3-dev libnl-route-3-dev
75 # python3.6 on 16.04 requires python36-dev
77 LIBFFI=libffi6 # works on all but 20.04 and debian-testing
79 ifeq ($(OS_VERSION_ID),18.04)
80 DEB_DEPENDS += python-dev python-all python-pip python-virtualenv
81 DEB_DEPENDS += libssl-dev
82 DEB_DEPENDS += clang-9 clang-format-10
83 else ifeq ($(OS_VERSION_ID),20.04)
84 DEB_DEPENDS += python3-virtualenv
85 DEB_DEPENDS += libssl-dev
86 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
87 DEB_DEPENDS += clang-format-10
89 else ifeq ($(OS_VERSION_ID),20.10)
90 DEB_DEPENDS += python3-virtualenv
91 DEB_DEPENDS += libssl-dev
92 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
93 DEB_DEPENDS += clang-format-10
95 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10)
96 DEB_DEPENDS += python3-virtualenv virtualenv
97 DEB_DEPENDS += libssl-dev
98 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
100 DEB_DEPENDS += libssl-dev
101 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
105 DEB_DEPENDS += $(LIBFFI)
107 RPM_DEPENDS = redhat-lsb glibc-static
108 RPM_DEPENDS += apr-devel
109 RPM_DEPENDS += numactl-devel
110 RPM_DEPENDS += check check-devel
111 RPM_DEPENDS += selinux-policy selinux-policy-devel
112 RPM_DEPENDS += ninja-build
113 RPM_DEPENDS += libuuid-devel
114 RPM_DEPENDS += mbedtls-devel
115 RPM_DEPENDS += ccache
117 RPM_DEPENDS += elfutils-libelf-devel
118 RPM_DEPENDS += libnl3-devel
120 ifeq ($(OS_ID),fedora)
121 RPM_DEPENDS += dnf-utils
122 RPM_DEPENDS += subunit subunit-devel
123 RPM_DEPENDS += compat-openssl10-devel
124 RPM_DEPENDS += python3-devel # needed for python3 -m pip install psutil
125 RPM_DEPENDS += python3-ply # for vppapigen
126 RPM_DEPENDS += python3-virtualenv python3-jsonschema
128 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
129 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
130 RPM_DEPENDS += yum-utils
131 RPM_DEPENDS += compat-openssl10 openssl-devel
132 RPM_DEPENDS += python2-devel python36-devel python3-ply
133 RPM_DEPENDS += python3-virtualenv python3-jsonschema
135 RPM_DEPENDS_GROUPS = 'Development Tools'
137 RPM_DEPENDS += yum-utils
138 RPM_DEPENDS += openssl-devel
139 RPM_DEPENDS += python36-ply # for vppapigen
140 RPM_DEPENDS += python3-devel python3-pip
141 RPM_DEPENDS += python-virtualenv python36-jsonschema
142 RPM_DEPENDS += devtoolset-9 devtoolset-9-libasan-devel
143 RPM_DEPENDS += cmake3
144 RPM_DEPENDS_GROUPS = 'Development Tools'
147 # +ganglia-devel if building the ganglia plugin
149 RPM_DEPENDS += chrpath libffi-devel rpm-build
151 RPM_DEPENDS_DEBUG = glibc-debuginfo e2fsprogs-debuginfo
152 RPM_DEPENDS_DEBUG += krb5-debuginfo openssl-debuginfo
153 RPM_DEPENDS_DEBUG += zlib-debuginfo nss-softokn-debuginfo
154 RPM_DEPENDS_DEBUG += yum-plugin-auto-update-debug-info
156 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
157 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
160 ifeq ($(findstring y,$(UNATTENDED)),y)
167 ifneq ($(SAMPLE_PLUGIN),no)
168 TARGETS += sample-plugin
172 @echo "========================================================================"
174 @echo "========================================================================"
180 @echo "Make Targets:"
181 @echo " install-dep[s] - install software dependencies"
182 @echo " wipe - wipe all products of debug build "
183 @echo " wipe-release - wipe all products of release build "
184 @echo " build - build debug binaries"
185 @echo " build-release - build release binaries"
186 @echo " build-coverity - build coverity artifacts"
187 @echo " rebuild - wipe and build debug binaries"
188 @echo " rebuild-release - wipe and build release binaries"
189 @echo " run - run debug binary"
190 @echo " run-release - run release binary"
191 @echo " debug - run debug binary with debugger"
192 @echo " debug-release - run release binary with debugger"
193 @echo " test - build and run tests"
194 @echo " test-help - show help on test framework"
195 @echo " run-vat - run vpp-api-test tool"
196 @echo " pkg-deb - build DEB packages"
197 @echo " pkg-deb-debug - build DEB debug packages"
198 @echo " pkg-snap - build SNAP package"
199 @echo " snap-clean - clean up snap build environment"
200 @echo " pkg-rpm - build RPM packages"
201 @echo " install-ext-dep[s] - install external development dependencies"
202 @echo " ctags - (re)generate ctags database"
203 @echo " gtags - (re)generate gtags database"
204 @echo " cscope - (re)generate cscope database"
205 @echo " compdb - (re)generate compile_commands.json"
206 @echo " checkstyle - check coding style"
207 @echo " checkstyle-commit - check commit message format"
208 @echo " checkstyle-test - check test framework coding style"
209 @echo " checkstyle-test-diff - check test framework coding style (only changed files)"
210 @echo " checkstyle-api - check api for incompatible changes"
211 @echo " fixstyle - fix coding style"
212 @echo " doxygen - (re)generate documentation"
213 @echo " bootstrap-doxygen - setup Doxygen dependencies"
214 @echo " wipe-doxygen - wipe all generated documentation"
215 @echo " checkfeaturelist - check FEATURE.yaml according to schema"
216 @echo " featurelist - dump feature list in markdown"
217 @echo " json-api-files - (re)-generate json api files"
218 @echo " json-api-files-debug - (re)-generate json api files for debug target"
219 @echo " go-api-files - (re)-generate golang api files"
220 @echo " docs - Build the Sphinx documentation"
221 @echo " docs-venv - Build the virtual environment for the Sphinx docs"
222 @echo " docs-clean - Remove the generated files from the Sphinx docs"
223 @echo " stats-fs-help - Help to build the stats segment file system"
225 @echo "Make Arguments:"
226 @echo " V=[0|1] - set build verbosity level"
227 @echo " STARTUP_CONF=<path> - startup configuration file"
228 @echo " (e.g. /etc/vpp/startup.conf)"
229 @echo " STARTUP_DIR=<path> - startup directory (e.g. /etc/vpp)"
230 @echo " It also sets STARTUP_CONF if"
231 @echo " startup.conf file is present"
232 @echo " GDB=<path> - gdb binary to use for debugging"
233 @echo " PLATFORM=<name> - target platform. default is vpp"
234 @echo " TEST=<filter> - apply filter to test set, see test-help"
235 @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to"
236 @echo " autogenerated startup.conf"
237 @echo " (e.g. \"no-pci\" )"
238 @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin"
239 @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which"
240 @echo " should not be loaded"
242 @echo "Current Argument Values:"
244 @echo " STARTUP_CONF = $(STARTUP_CONF)"
245 @echo " STARTUP_DIR = $(STARTUP_DIR)"
246 @echo " GDB = $(GDB)"
247 @echo " PLATFORM = $(PLATFORM)"
248 @echo " DPDK_VERSION = $(DPDK_VERSION)"
249 @echo " DPDK_CONFIG = $(DPDK_CONFIG)"
250 @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)"
251 @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)"
254 ifeq ($(findstring y,$(UNATTENDED)),y)
257 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
258 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
259 if [ -n "$$MISSING" ] ; then \
260 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
261 echo "by executing \"make install-dep\"\n" ; \
265 else ifneq ("$(wildcard /etc/redhat-release)","")
266 @for i in $(RPM_DEPENDS) ; do \
267 RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3,4) ; \
268 MISSING+=$$(rpm -q $$RPM | grep "^package") ; \
270 if [ -n "$$MISSING" ] ; then \
271 echo "Please install missing RPMs: \n$$MISSING\n" ; \
272 echo "by executing \"make install-dep\"\n" ; \
281 @echo "'make bootstrap' is not needed anymore"
285 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
286 @sudo -E apt-get update
287 @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
288 else ifneq ("$(wildcard /etc/redhat-release)","")
290 @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms
291 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
292 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
293 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
294 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
295 @sudo -E dnf install $(CONFIRM) dnf-plugins-core epel-release
296 @sudo -E dnf config-manager --set-enabled \
297 $(shell dnf repolist all 2>/dev/null|grep -i powertools|cut -d' ' -f1)
298 @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
299 @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
300 else ifeq ($(OS_ID),centos)
301 @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release
302 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
303 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
304 @sudo -E yum install $(CONFIRM) --enablerepo=base-debuginfo $(RPM_DEPENDS_DEBUG)
305 else ifeq ($(OS_ID),fedora)
306 @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
307 @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
308 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
311 $(error "This option currently works only on Ubuntu, Debian, RHEL, or CentOS systems")
313 git config commit.template .git_commit_template.txt
316 install-deps: install-dep
319 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
322 $(BR)/scripts/.version:
323 ifneq ("$(wildcard /etc/redhat-release)","")
324 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
326 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
329 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
330 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
334 @if git rev-parse 2> /dev/null ; then \
336 --prefix=$(DIST_SUBDIR)/ \
340 git describe --long > $(BR)/.version ; \
342 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
343 src/scripts/version > $(BR)/.version ; \
346 --file $(DIST_FILE) \
347 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
349 @$(RM) $(BR)/.version $(DIST_FILE).xz
350 @xz -v --threads=0 $(DIST_FILE)
351 @$(RM) $(BR)/vpp-latest.tar.xz
352 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
355 build: $(BR)/.deps.ok
356 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
360 @$(RM) $(BR)/*.tar.xz
363 wipe: wipedist test-wipe $(BR)/.deps.ok
364 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
365 @find . -type f -name "*.api.json" ! -path "./test/*" -exec rm {} \;
370 .PHONY: build-release
371 build-release: $(BR)/.deps.ok
372 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
375 wipe-release: test-wipe $(BR)/.deps.ok
376 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
378 .PHONY: rebuild-release
379 rebuild-release: wipe-release build-release
381 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
383 export TEST_DIR ?= $(WS_ROOT)/test
384 export RND_SEED ?= $(shell python3 -c 'import time; print(time.time())')
387 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
388 $(eval libs:=lib lib64)
390 VPP_BUILD_DIR=$(BR)/build-$(2)-native \
391 VPP_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
392 VPP_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
393 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_api_test_plugins) \
394 VPP_INSTALL_PATH=$(BR)/install-$(2)-native/ \
395 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
396 EXTENDED_TESTS=$(EXTENDED_TESTS) \
399 RND_SEED=$(RND_SEED) \
400 CACHE_OUTPUT=$(CACHE_OUTPUT) \
406 $(call test,vpp,vpp,test)
410 $(call test,vpp,vpp_debug,test)
414 $(call test,vpp,vpp_gcov,test)
418 $(eval EXTENDED_TESTS=yes)
419 $(call test,vpp,vpp,test)
421 .PHONY: test-all-debug
423 $(eval EXTENDED_TESTS=yes)
424 $(call test,vpp,vpp_debug,test)
427 papi-wipe: test-wipe-papi
428 $(call banner,"This command is deprecated. Please use 'test-wipe-papi'")
430 .PHONY: test-wipe-papi
432 @make -C test wipe-papi
444 $(call test,vpp,vpp,shell)
446 .PHONY: test-shell-debug
448 $(call test,vpp,vpp_debug,shell)
450 .PHONY: test-shell-gcov
452 $(call test,vpp,vpp_gcov,shell)
456 @make -C test test-dep
462 .PHONY: test-wipe-doc
464 @make -C test wipe-doc
468 $(eval EXTENDED_TESTS=yes)
469 $(call test,vpp,vpp_gcov,cov)
471 .PHONY: test-wipe-cov
473 @make -C test wipe-cov
475 .PHONY: test-wipe-all
477 @make -C test wipe-all
479 .PHONY: test-checkstyle
481 @make -C test checkstyle
483 .PHONY: test-checkstyle-diff
484 test-checkstyle-diff:
485 @make -C test checkstyle-diff
487 .PHONY: test-refresh-deps
489 @make -C test refresh-deps
493 $(call test,vpp,vpp,retest)
497 $(call test,vpp,vpp_debug,retest)
501 $(eval EXTENDED_TESTS=yes)
502 $(call test,vpp,vpp,retest)
504 .PHONY: retest-all-debug
506 $(eval EXTENDED_TESTS=yes)
507 $(call test,vpp,vpp_debug,retest)
509 .PHONY: test-start-vpp-in-gdb
510 test-start-vpp-in-gdb:
511 $(call test,vpp,vpp,start-gdb)
513 .PHONY: test-start-vpp-debug-in-gdb
514 test-start-vpp-debug-in-gdb:
515 $(call test,vpp,vpp_debug,start-gdb)
517 ifeq ("$(wildcard $(STARTUP_CONF))","")
519 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
520 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
521 @cd $(STARTUP_DIR) && \
522 $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
526 @cd $(STARTUP_DIR) && \
527 $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
532 @find src -name '*.[chS]' > $@
538 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
542 $(call run, $(BR)/install-$(PLATFORM)-native)
546 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
548 .PHONY: build-coverity
550 $(call make,$(PLATFORM)_coverity,install-packages)
551 @make -C build-root PLATFORM=vpp TAG=vpp_coverity libmemif-install
553 .PHONY: debug-release
555 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
559 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
563 @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
567 $(call make,$(PLATFORM),vpp-package-deb)
573 SNAPCRAFT_BUILD_ENVIRONMENT_MEMORY=8G \
574 SNAPCRAFT_BUILD_ENVIRONMENT_CPU=6 \
583 .PHONY: pkg-deb-debug
585 $(call make,$(PLATFORM)_debug,vpp-package-deb)
593 make -C extras/rpm srpm
595 .PHONY: install-ext-deps
597 make -C build/external install-$(PKG)
599 .PHONY: install-ext-dep
600 install-ext-dep: install-ext-deps
602 .PHONY: json-api-files
604 $(WS_ROOT)/src/tools/vppapigen/generate_json.py
606 .PHONY: json-api-files-debug
607 json-api-files-debug:
608 $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target
611 go-api-files: json-api-files
612 $(WS_ROOT)/src/tools/vppapigen/generate_go.py
616 @ctags --totals --tag-relative=yes -L $<
621 @gtags --gtagslabel=ctags
629 @ninja -C build-root/build-vpp_debug-native/vpp build.ninja
630 @ninja -C build-root/build-vpp_debug-native/vpp -t compdb | \
631 src/scripts/compdb_cleanup.py > compile_commands.json
634 checkstyle: checkfeaturelist
635 @extras/scripts/checkstyle.sh
637 .PHONY: checkstyle-commit
639 @extras/scripts/check_commit_msg.sh
641 .PHONY: checkstyle-test
642 checkstyle-test: test-checkstyle
644 .PHONY: checkstyle-all
645 checkstyle-all: checkstyle-commit checkstyle checkstyle-test
649 @extras/scripts/checkstyle.sh --fix
651 .PHONY: checkstyle-api
653 @extras/scripts/crcchecker.py --check-patchset
655 # necessary because Bug 1696324 - Update to python3.6 breaks PyYAML dependencies
656 # Status: CLOSED CANTFIX
657 # https://bugzilla.redhat.com/show_bug.cgi?id=1696324
658 .PHONY: centos-pyyaml
660 ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
661 @sudo -E yum install $(CONFIRM) python3-pyyaml
665 featurelist: centos-pyyaml
666 @extras/scripts/fts.py --all --markdown
668 .PHONY: checkfeaturelist
669 checkfeaturelist: centos-pyyaml
670 @extras/scripts/fts.py --validate --all
675 .PHONY: stats-fs-install
677 @extras/vpp_stats_fs/install.sh install
679 .PHONY: stats-fs-start
681 @extras/vpp_stats_fs/install.sh start
683 .PHONY: stats-fs-cleanup
685 @extras/vpp_stats_fs/install.sh cleanup
687 .PHONY: stats-fs-help
689 @extras/vpp_stats_fs/install.sh help
691 .PHONY: stats-fs-force-unmount
692 stats-fs-force-unmount:
693 @extras/vpp_stats_fs/install.sh unmount
695 .PHONY: stats-fs-stop
697 @extras/vpp_stats_fs/install.sh stop
700 # Build the documentation
703 # Doxygen configuration and our utility scripts
704 export DOXY_DIR ?= $(WS_ROOT)/doxygen
707 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
710 .PHONY: bootstrap-doxygen
715 doxygen: bootstrap-doxygen
723 export DOCS_DIR = $(WS_ROOT)/docs
724 export VENV_DIR = $(WS_ROOT)/sphinx_venv
725 export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts
729 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv)
733 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html)
737 @rm -rf $(DOCS_DIR)/_build
741 pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps
742 $(call banner,"Building for PLATFORM=vpp using gcc")
743 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
744 $(call banner,"Building sample-plugin")
745 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
746 $(call banner,"Building libmemif")
747 @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
748 $(call banner,"Building $(PKG) packages")
751 MAKE_VERIFY_GATE_OS ?= ubuntu-18.04
754 ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS))
755 $(call banner,"Testing vppapigen")
756 @src/tools/vppapigen/test_vppapigen.py
757 $(call banner,"Running tests")
758 @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
760 $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)")