ARP: don't use RPC for requests initiated from the main thread
[vpp.git] / Makefile
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:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
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.
13
14 export WS_ROOT=$(CURDIR)
15 export BR=$(WS_ROOT)/build-root
16 CCACHE_DIR?=$(BR)/.ccache
17 GDB?=gdb
18 PLATFORM?=vpp
19 SAMPLE_PLUGIN?=no
20 STARTUP_DIR?=$(PWD)
21 MACHINE=$(shell uname -m)
22 SUDO?=sudo
23
24 ,:=,
25 define disable_plugins
26 $(if $(1), \
27   "plugins {" \
28   $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
29   " }" \
30   ,)
31 endef
32
33 MINIMAL_STARTUP_CONF="                                                  \
34 unix {                                                                  \
35         interactive                                                     \
36         cli-listen /run/vpp/cli.sock                                    \
37         gid $(shell id -g)                                              \
38         $(if $(wildcard startup.vpp),"exec startup.vpp",)               \
39 }                                                                       \
40 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",)                        \
41 $(call disable_plugins,$(DISABLED_PLUGINS))                             \
42 "
43
44 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
45
46 #
47 # OS Detection
48 #
49 # We allow Darwin (MacOS) for docs generation; VPP build will still fail.
50 ifneq ($(shell uname),Darwin)
51 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
52 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
53 endif
54
55 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
56 PKG=deb
57 else ifeq ($(filter rhel centos fedora opensuse opensuse-leap opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
58 PKG=rpm
59 endif
60
61 # +libganglia1-dev if building the gmond plugin
62
63 DEB_DEPENDS  = curl build-essential autoconf automake ccache
64 DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd
65 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
66 DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev
67 DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6 check
68 DEB_DEPENDS += libboost-all-dev libffi-dev python-ply libmbedtls-dev
69 DEB_DEPENDS += cmake ninja-build
70 ifeq ($(OS_VERSION_ID),14.04)
71         DEB_DEPENDS += openjdk-8-jdk-headless
72         DEB_DEPENDS += libssl-dev
73 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
74         DEB_DEPENDS += openjdk-8-jdk-headless
75         DEB_DEPENDS += libssl-dev
76         APT_ARGS = -t jessie-backports
77 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
78         DEB_DEPENDS += default-jdk-headless
79         DEB_DEPENDS += libssl1.0-dev
80 else
81         DEB_DEPENDS += default-jdk-headless
82         DEB_DEPENDS += libssl-dev
83 endif
84
85 RPM_DEPENDS  = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
86 RPM_DEPENDS += apr-devel
87 RPM_DEPENDS += numactl-devel
88 RPM_DEPENDS += check check-devel
89 RPM_DEPENDS += boost boost-devel
90 RPM_DEPENDS += selinux-policy selinux-policy-devel
91 RPM_DEPENDS += cmake3 ninja-build
92
93 ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
94         RPM_DEPENDS += subunit subunit-devel
95         RPM_DEPENDS += openssl-devel
96         RPM_DEPENDS += python-devel python2-ply
97         RPM_DEPENDS += python2-virtualenv
98         RPM_DEPENDS += mbedtls-devel
99         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
100 else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
101         RPM_DEPENDS += subunit subunit-devel
102         RPM_DEPENDS += compat-openssl10-devel
103         RPM_DEPENDS += python2-devel python2-ply
104         RPM_DEPENDS += python2-virtualenv
105         RPM_DEPENDS += mbedtls-devel
106         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
107 else
108         RPM_DEPENDS += openssl-devel
109         RPM_DEPENDS += python-devel python-ply
110         RPM_DEPENDS += python-virtualenv
111         RPM_DEPENDS += devtoolset-7
112         RPM_DEPENDS_GROUPS = 'Development Tools'
113 endif
114
115 # +ganglia-devel if building the ganglia plugin
116
117 RPM_DEPENDS += chrpath libffi-devel rpm-build
118
119 SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
120 SUSE_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
121 RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
122 RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python-ply
123
124 RPM_SUSE_DEVEL_DEPS = glibc-devel-static java-1_8_0-openjdk-devel libnuma-devel
125 RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel
126
127 RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
128 RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
129
130 RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
131
132 ifeq ($(OS_ID),opensuse)
133 ifeq ($(SUSE_NAME),Tumbleweed)
134         RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc
135         RPM_SUSE_PYTHON_DEPS += python2-ply python2-virtualenv
136 endif
137 ifeq ($(SUSE_ID),15.0)
138         RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6
139         RPM_SUSE_PYTHON_DEPS += python2-ply python2-virtualenv
140 else
141         RPM_SUSE_DEVEL_DEPS += boost_1_61-devel gcc6
142         RPM_SUSE_PYTHON_DEPS += python-virtualenv
143 endif
144 endif
145
146 ifeq ($(OS_ID),opensuse-leap)
147 ifeq ($(SUSE_ID),15.0)
148         RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6
149         RPM_SUSE_PYTHON_DEPS += python2-ply python2-virtualenv
150 endif
151 endif
152
153 RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
154
155 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
156         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
157 endif
158
159 ifeq ($(findstring y,$(UNATTENDED)),y)
160 CONFIRM=-y
161 FORCE=--force-yes
162 endif
163
164 TARGETS = vpp
165
166 ifneq ($(SAMPLE_PLUGIN),no)
167 TARGETS += sample-plugin
168 endif
169
170 .PHONY: help wipe wipe-release build build-release rebuild rebuild-release
171 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
172 .PHONY: ctags cscope
173 .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
174 .PHONY: test-cov test-wipe-cov
175
176 define banner
177         @echo "========================================================================"
178         @echo " $(1)"
179         @echo "========================================================================"
180         @echo " "
181 endef
182
183 help:
184         @echo "Make Targets:"
185         @echo " install-dep         - install software dependencies"
186         @echo " wipe                - wipe all products of debug build "
187         @echo " wipe-release        - wipe all products of release build "
188         @echo " build               - build debug binaries"
189         @echo " build-release       - build release binaries"
190         @echo " build-coverity      - build coverity artifacts"
191         @echo " rebuild             - wipe and build debug binares"
192         @echo " rebuild-release     - wipe and build release binares"
193         @echo " run                 - run debug binary"
194         @echo " run-release         - run release binary"
195         @echo " debug               - run debug binary with debugger"
196         @echo " debug-release       - run release binary with debugger"
197         @echo " test                - build and run (basic) functional tests"
198         @echo " test-debug          - build and run (basic) functional tests (debug build)"
199         @echo " test-all            - build and run (all) functional tests"
200         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
201         @echo " test-ext            - build and run 'extras' functional tests"
202         @echo " test-shell          - enter shell with test environment"
203         @echo " test-shell-debug    - enter shell with test environment (debug build)"
204         @echo " test-wipe           - wipe files generated by unit tests"
205         @echo " retest              - run functional tests"
206         @echo " retest-debug        - run functional tests (debug build)"
207         @echo " test-help           - show help on test framework"
208         @echo " run-vat             - run vpp-api-test tool"
209         @echo " pkg-deb             - build DEB packages"
210         @echo " pkg-rpm             - build RPM packages"
211         @echo " install-ext-deps    - install external development dependencies"
212         @echo " ctags               - (re)generate ctags database"
213         @echo " gtags               - (re)generate gtags database"
214         @echo " cscope              - (re)generate cscope database"
215         @echo " checkstyle          - check coding style"
216         @echo " fixstyle            - fix coding style"
217         @echo " doxygen             - (re)generate documentation"
218         @echo " bootstrap-doxygen   - setup Doxygen dependencies"
219         @echo " wipe-doxygen        - wipe all generated documentation"
220         @echo " test-doc            - generate documentation for test framework"
221         @echo " test-wipe-doc       - wipe documentation for test framework"
222         @echo " test-cov            - generate code coverage report for test framework"
223         @echo " test-wipe-cov       - wipe code coverage report for test framework"
224         @echo " test-checkstyle     - check PEP8 compliance for test framework"
225         @echo ""
226         @echo "Make Arguments:"
227         @echo " V=[0|1]                  - set build verbosity level"
228         @echo " STARTUP_CONF=<path>      - startup configuration file"
229         @echo "                            (e.g. /etc/vpp/startup.conf)"
230         @echo " STARTUP_DIR=<path>       - startup drectory (e.g. /etc/vpp)"
231         @echo "                            It also sets STARTUP_CONF if"
232         @echo "                            startup.conf file is present"
233         @echo " GDB=<path>               - gdb binary to use for debugging"
234         @echo " PLATFORM=<name>          - target platform. default is vpp"
235         @echo " TEST=<filter>            - apply filter to test set, see test-help"
236         @echo " DPDK_CONFIG=<conf>       - add specified dpdk config commands to"
237         @echo "                            autogenerated startup.conf"
238         @echo "                            (e.g. \"no-pci\" )"
239         @echo " SAMPLE_PLUGIN=yes        - in addition build/run/debug sample plugin"
240         @echo " DISABLED_PLUGINS=<list>  - comma separated list of plugins which"
241         @echo "                            should not be loaded"
242         @echo ""
243         @echo "Current Argument Values:"
244         @echo " V                 = $(V)"
245         @echo " STARTUP_CONF      = $(STARTUP_CONF)"
246         @echo " STARTUP_DIR       = $(STARTUP_DIR)"
247         @echo " GDB               = $(GDB)"
248         @echo " PLATFORM          = $(PLATFORM)"
249         @echo " DPDK_VERSION      = $(DPDK_VERSION)"
250         @echo " DPDK_CONFIG       = $(DPDK_CONFIG)"
251         @echo " SAMPLE_PLUGIN     = $(SAMPLE_PLUGIN)"
252         @echo " DISABLED_PLUGINS  = $(DISABLED_PLUGINS)"
253
254 $(BR)/.deps.ok:
255 ifeq ($(findstring y,$(UNATTENDED)),y)
256         make install-dep
257 endif
258 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
259         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
260         if [ -n "$$MISSING" ] ; then \
261           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
262           echo "by executing \"make install-dep\"\n" ; \
263           exit 1 ; \
264         fi ; \
265         exit 0
266 else ifneq ("$(wildcard /etc/redhat-release)","")
267         @for i in $(RPM_DEPENDS) ; do \
268             RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3)  ;   \
269             MISSING+=$$(rpm -q $$RPM | grep "^package")    ;    \
270         done                                                       ;    \
271         if [ -n "$$MISSING" ] ; then \
272           echo "Please install missing RPMs: \n$$MISSING\n" ; \
273           echo "by executing \"make install-dep\"\n" ; \
274           exit 1 ; \
275         fi ; \
276         exit 0
277 endif
278         @touch $@
279
280 bootstrap:
281         @echo "'make bootstrap' is not needed anymore"
282
283 install-dep:
284 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
285 ifeq ($(OS_VERSION_ID),14.04)
286         @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
287         @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
288 endif
289 ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
290         @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
291            || ( echo "Please install jessie-backports" ; exit 1 )
292 endif
293         @sudo -E apt-get update
294         @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
295 else ifneq ("$(wildcard /etc/redhat-release)","")
296         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
297         @sudo -E yum install $(CONFIRM) centos-release-scl-rh
298         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
299         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
300 else ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
301         @sudo -E zypper refresh
302         @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
303 else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
304         @sudo -E zypper refresh
305         @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
306 else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
307         @sudo -E zypper refresh
308         @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
309 else
310         $(error "This option currently works only on Ubuntu, Debian, Centos or openSUSE systems")
311 endif
312
313 define make
314         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
315 endef
316
317 $(BR)/scripts/.version:
318 ifneq ("$(wildcard /etc/redhat-release)","")
319         $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
320 else
321         $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
322 endif
323
324 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
325 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
326
327 dist:
328         @if git rev-parse 2> /dev/null ; then \
329             git archive \
330               --prefix=$(DIST_SUBDIR)/ \
331               --format=tar \
332               -o $(DIST_FILE) \
333             HEAD ; \
334             git describe > $(BR)/.version ; \
335         else \
336             (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
337             src/scripts/version > $(BR)/.version ; \
338         fi
339         @tar --append \
340           --file $(DIST_FILE) \
341           --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
342           $(BR)/.version
343         @$(RM) $(BR)/.version $(DIST_FILE).xz
344         @xz -v --threads=0 $(DIST_FILE)
345         @$(RM) $(BR)/vpp-latest.tar.xz
346         @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
347
348 build: $(BR)/.deps.ok
349         $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
350
351 wipedist:
352         @$(RM) $(BR)/*.tar.xz
353
354 wipe: wipedist test-wipe $(BR)/.deps.ok
355         $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
356
357 rebuild: wipe build
358
359 build-release: $(BR)/.deps.ok
360         $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
361
362 wipe-release: test-wipe $(BR)/.deps.ok
363         $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
364
365 rebuild-release: wipe-release build-release
366
367 export VPP_PYTHON_PREFIX ?= $(BR)/python
368
369 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
370
371 define test
372         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
373         $(eval libs:=lib lib64)
374         make -C test \
375           TEST_DIR=$(WS_ROOT)/test \
376           VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
377           VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
378           VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
379           VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
380           LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
381           EXTENDED_TESTS=$(EXTENDED_TESTS) \
382           PYTHON=$(PYTHON) \
383           OS_ID=$(OS_ID) \
384           CACHE_OUTPUT=$(CACHE_OUTPUT) \
385           $(3)
386 endef
387
388 test:
389         $(call test,vpp,vpp,test)
390
391 test-debug:
392         $(call test,vpp,vpp_debug,test)
393
394 test-all:
395         $(eval EXTENDED_TESTS=yes)
396         $(call test,vpp,vpp,test)
397
398 test-ext:
399         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp_debug vom-install japi-install,)
400         $(eval EXTENDED_TESTS=yes)
401         $(call test,vpp,vpp_debug,test-ext)
402
403 test-all-debug:
404         $(eval EXTENDED_TESTS=yes)
405         $(call test,vpp,vpp_debug,test)
406
407 test-help:
408         @make -C test help
409
410 test-wipe:
411         @make -C test wipe
412
413 test-shell:
414         $(call test,vpp,vpp,shell)
415
416 test-shell-debug:
417         $(call test,vpp,vpp_debug,shell)
418
419 test-dep:
420         @make -C test test-dep
421
422 test-doc:
423         @make -C test doc
424
425 test-wipe-doc:
426         @make -C test wipe-doc
427
428 test-cov:
429         $(eval EXTENDED_TESTS=yes)
430         $(call test,vpp,vpp_gcov,cov)
431
432 test-wipe-cov:
433         @make -C test wipe-cov
434
435 test-checkstyle:
436         @make -C test checkstyle
437
438 retest:
439         $(call test,vpp,vpp,retest)
440
441 retest-debug:
442         $(call test,vpp,vpp_debug,retest)
443
444 ifeq ("$(wildcard $(STARTUP_CONF))","")
445 define run
446         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
447         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
448         @cd $(STARTUP_DIR) && \
449           $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
450 endef
451 else
452 define run
453         @cd $(STARTUP_DIR) && \
454           $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
455 endef
456 endif
457
458 %.files: .FORCE
459         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
460                 \( -not -path './build-root*' -o -path \
461                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
462
463 .FORCE:
464
465 run:
466         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
467
468 run-release:
469         $(call run, $(BR)/install-$(PLATFORM)-native)
470
471 debug:
472         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
473
474 build-coverity:
475         $(call make,$(PLATFORM)_coverity,install-packages)
476
477 debug-release:
478         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
479
480 build-vat:
481         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
482
483 run-vat:
484         @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
485
486 pkg-deb:
487         $(call make,$(PLATFORM),install-deb)
488
489 pkg-rpm: dist
490         make -C extras/rpm
491
492 pkg-srpm: dist
493         make -C extras/rpm srpm
494
495 dpdk-install-dev:
496         $(call banner,"This command is deprecated. Please use 'make install-ext-libs'")
497         make -C build/external install-$(PKG)
498
499 install-ext-deps:
500         make -C build/external install-$(PKG)
501
502 ctags: ctags.files
503         @ctags --totals --tag-relative -L $<
504         @rm $<
505
506 gtags: ctags
507         @gtags --gtagslabel=ctags
508
509 cscope: cscope.files
510         @cscope -b -q -v
511
512 checkstyle:
513         @build-root/scripts/checkstyle.sh
514
515 fixstyle:
516         @build-root/scripts/checkstyle.sh --fix
517
518 #
519 # Build the documentation
520 #
521
522 # Doxygen configuration and our utility scripts
523 export DOXY_DIR ?= $(WS_ROOT)/doxygen
524
525 define make-doxy
526         @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
527 endef
528
529 .PHONY: bootstrap-doxygen doxygen wipe-doxygen
530
531 bootstrap-doxygen:
532         $(call make-doxy)
533
534 doxygen:
535         $(call make-doxy)
536
537 wipe-doxygen:
538         $(call make-doxy)
539
540 verify: install-dep $(BR)/.deps.ok install-ext-deps
541         $(call banner,"Building for PLATFORM=vpp using gcc")
542         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
543         $(call banner,"Building sample-plugin")
544         @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
545         $(call banner,"Building libmemif")
546         @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
547         $(call banner,"Building JAPI")
548         @make -C build-root PLATFORM=vpp TAG=vpp japi-install
549         $(call banner,"Building VOM")
550         @make -C build-root PLATFORM=vpp TAG=vpp vom-install
551         $(call banner,"Building $(PKG) packages")
552         @make pkg-$(PKG)
553 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
554         $(call banner,"Running tests")
555         @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
556 endif
557
558