ip: Router ID included in flow hash
[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 SHELL:=/bin/bash
18 GDB?=gdb
19 PLATFORM?=vpp
20 SAMPLE_PLUGIN?=no
21 STARTUP_DIR?=$(PWD)
22 MACHINE=$(shell uname -m)
23 SUDO?=sudo -E
24 DPDK_CONFIG?=no-pci
25
26 ,:=,
27 define disable_plugins
28 $(if $(1), \
29   "plugins {" \
30   $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
31   " }" \
32   ,)
33 endef
34
35 MINIMAL_STARTUP_CONF="                                                  \
36 unix {                                                                  \
37         interactive                                                     \
38         cli-listen /run/vpp/cli.sock                                    \
39         gid $(shell id -g)                                              \
40         $(if $(wildcard startup.vpp),"exec startup.vpp",)               \
41 }                                                                       \
42 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",)                        \
43 $(call disable_plugins,$(DISABLED_PLUGINS))                             \
44 "
45
46 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
47
48 #
49 # OS Detection
50 #
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')
55 endif
56
57 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
58 PKG=deb
59 else ifeq ($(filter rhel centos fedora,$(OS_ID)),$(OS_ID))
60 PKG=rpm
61 endif
62
63 # +libganglia1-dev if building the gmond plugin
64
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 += libboost-all-dev 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 # python3.6 on 16.04 requires python36-dev
75
76 LIBFFI=libffi6 # works on all but 20.04 and debian-testing
77
78 ifeq ($(OS_VERSION_ID),18.04)
79         DEB_DEPENDS += python-dev python-all python-pip python-virtualenv
80         DEB_DEPENDS += libssl-dev
81         DEB_DEPENDS += clang-9 clang-format-10
82 else ifeq ($(OS_VERSION_ID),20.04)
83         DEB_DEPENDS += python3-virtualenv
84         DEB_DEPENDS += libssl-dev
85         DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
86         DEB_DEPENDS += clang-format-10
87         LIBFFI=libffi7
88 else ifeq ($(OS_VERSION_ID),20.10)
89         DEB_DEPENDS += python3-virtualenv
90         DEB_DEPENDS += libssl-dev
91         DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
92         DEB_DEPENDS += clang-format-10
93         LIBFFI=libffi8ubuntu1
94 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10)
95         DEB_DEPENDS += libssl-dev
96         DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
97 else
98         DEB_DEPENDS += libssl-dev
99         DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
100         LIBFFI=libffi7
101 endif
102
103 DEB_DEPENDS += $(LIBFFI)
104
105 RPM_DEPENDS  = redhat-lsb glibc-static
106 RPM_DEPENDS += apr-devel
107 RPM_DEPENDS += numactl-devel
108 RPM_DEPENDS += check check-devel
109 RPM_DEPENDS += boost boost-devel
110 RPM_DEPENDS += selinux-policy selinux-policy-devel
111 RPM_DEPENDS += ninja-build
112 RPM_DEPENDS += libuuid-devel
113 RPM_DEPENDS += mbedtls-devel
114 RPM_DEPENDS += ccache
115 RPM_DEPENDS += xmlto
116 RPM_DEPENDS += elfutils-libelf-devel
117
118 ifeq ($(OS_ID),fedora)
119         RPM_DEPENDS += dnf-utils
120         RPM_DEPENDS += subunit subunit-devel
121         RPM_DEPENDS += compat-openssl10-devel
122         RPM_DEPENDS += python3-devel  # needed for python3 -m pip install psutil
123         RPM_DEPENDS += python3-ply  # for vppapigen
124         RPM_DEPENDS += python3-virtualenv python3-jsonschema
125         RPM_DEPENDS += cmake
126         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
127 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
128         RPM_DEPENDS += yum-utils
129         RPM_DEPENDS += compat-openssl10 openssl-devel
130         RPM_DEPENDS += python2-devel python36-devel python3-ply
131         RPM_DEPENDS += python3-virtualenv python3-jsonschema
132         RPM_DEPENDS += cmake
133         RPM_DEPENDS_GROUPS = 'Development Tools'
134 else
135         RPM_DEPENDS += yum-utils
136         RPM_DEPENDS += openssl-devel
137         RPM_DEPENDS += python36-ply  # for vppapigen
138         RPM_DEPENDS += python3-devel python3-pip
139         RPM_DEPENDS += python-virtualenv python36-jsonschema
140         RPM_DEPENDS += devtoolset-9 devtoolset-9-libasan-devel
141         RPM_DEPENDS += cmake3
142         RPM_DEPENDS_GROUPS = 'Development Tools'
143 endif
144
145 # +ganglia-devel if building the ganglia plugin
146
147 RPM_DEPENDS += chrpath libffi-devel rpm-build
148
149 RPM_DEPENDS_DEBUG  = glibc-debuginfo e2fsprogs-debuginfo
150 RPM_DEPENDS_DEBUG += krb5-debuginfo openssl-debuginfo
151 RPM_DEPENDS_DEBUG += zlib-debuginfo nss-softokn-debuginfo
152 RPM_DEPENDS_DEBUG += yum-plugin-auto-update-debug-info
153
154 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
155         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
156 endif
157
158 ifeq ($(findstring y,$(UNATTENDED)),y)
159 CONFIRM=-y
160 FORCE=--force-yes
161 endif
162
163 TARGETS = vpp
164
165 ifneq ($(SAMPLE_PLUGIN),no)
166 TARGETS += sample-plugin
167 endif
168
169 define banner
170         @echo "========================================================================"
171         @echo " $(1)"
172         @echo "========================================================================"
173         @echo " "
174 endef
175
176 .PHONY: help
177 help:
178         @echo "Make Targets:"
179         @echo " install-dep[s]       - install software dependencies"
180         @echo " wipe                 - wipe all products of debug build "
181         @echo " wipe-release         - wipe all products of release build "
182         @echo " build                - build debug binaries"
183         @echo " build-release        - build release binaries"
184         @echo " build-coverity       - build coverity artifacts"
185         @echo " rebuild              - wipe and build debug binaries"
186         @echo " rebuild-release      - wipe and build release binaries"
187         @echo " run                  - run debug binary"
188         @echo " run-release          - run release binary"
189         @echo " debug                - run debug binary with debugger"
190         @echo " debug-release        - run release binary with debugger"
191         @echo " test                 - build and run tests"
192         @echo " test-help            - show help on test framework"
193         @echo " run-vat              - run vpp-api-test tool"
194         @echo " pkg-deb              - build DEB packages"
195         @echo " pkg-deb-debug        - build DEB debug packages"
196         @echo " pkg-snap             - build SNAP package"
197         @echo " snap-clean           - clean up snap build environment"
198         @echo " pkg-rpm              - build RPM packages"
199         @echo " install-ext-dep[s]   - install external development dependencies"
200         @echo " ctags                - (re)generate ctags database"
201         @echo " gtags                - (re)generate gtags database"
202         @echo " cscope               - (re)generate cscope database"
203         @echo " compdb               - (re)generate compile_commands.json"
204         @echo " checkstyle           - check coding style"
205         @echo " checkstyle-commit    - check commit message format"
206         @echo " checkstyle-test      - check test framework coding style"
207         @echo " checkstyle-api       - check api for incompatible changes"
208         @echo " fixstyle             - fix coding style"
209         @echo " doxygen              - (re)generate documentation"
210         @echo " bootstrap-doxygen    - setup Doxygen dependencies"
211         @echo " wipe-doxygen         - wipe all generated documentation"
212         @echo " checkfeaturelist     - check FEATURE.yaml according to schema"
213         @echo " featurelist          - dump feature list in markdown"
214         @echo " json-api-files       - (re)-generate json api files"
215         @echo " json-api-files-debug - (re)-generate json api files for debug target"
216         @echo " docs                 - Build the Sphinx documentation"
217         @echo " docs-venv            - Build the virtual environment for the Sphinx docs"
218         @echo " docs-clean           - Remove the generated files from the Sphinx docs"
219         @echo ""
220         @echo "Make Arguments:"
221         @echo " V=[0|1]                  - set build verbosity level"
222         @echo " STARTUP_CONF=<path>      - startup configuration file"
223         @echo "                            (e.g. /etc/vpp/startup.conf)"
224         @echo " STARTUP_DIR=<path>       - startup directory (e.g. /etc/vpp)"
225         @echo "                            It also sets STARTUP_CONF if"
226         @echo "                            startup.conf file is present"
227         @echo " GDB=<path>               - gdb binary to use for debugging"
228         @echo " PLATFORM=<name>          - target platform. default is vpp"
229         @echo " TEST=<filter>            - apply filter to test set, see test-help"
230         @echo " DPDK_CONFIG=<conf>       - add specified dpdk config commands to"
231         @echo "                            autogenerated startup.conf"
232         @echo "                            (e.g. \"no-pci\" )"
233         @echo " SAMPLE_PLUGIN=yes        - in addition build/run/debug sample plugin"
234         @echo " DISABLED_PLUGINS=<list>  - comma separated list of plugins which"
235         @echo "                            should not be loaded"
236         @echo ""
237         @echo "Current Argument Values:"
238         @echo " V                 = $(V)"
239         @echo " STARTUP_CONF      = $(STARTUP_CONF)"
240         @echo " STARTUP_DIR       = $(STARTUP_DIR)"
241         @echo " GDB               = $(GDB)"
242         @echo " PLATFORM          = $(PLATFORM)"
243         @echo " DPDK_VERSION      = $(DPDK_VERSION)"
244         @echo " DPDK_CONFIG       = $(DPDK_CONFIG)"
245         @echo " SAMPLE_PLUGIN     = $(SAMPLE_PLUGIN)"
246         @echo " DISABLED_PLUGINS  = $(DISABLED_PLUGINS)"
247
248 $(BR)/.deps.ok:
249 ifeq ($(findstring y,$(UNATTENDED)),y)
250         make install-dep
251 endif
252 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
253         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
254         if [ -n "$$MISSING" ] ; then \
255           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
256           echo "by executing \"make install-dep\"\n" ; \
257           exit 1 ; \
258         fi ; \
259         exit 0
260 else ifneq ("$(wildcard /etc/redhat-release)","")
261         @for i in $(RPM_DEPENDS) ; do \
262             RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3,4)  ; \
263             MISSING+=$$(rpm -q $$RPM | grep "^package")    ;    \
264         done                                                       ;    \
265         if [ -n "$$MISSING" ] ; then \
266           echo "Please install missing RPMs: \n$$MISSING\n" ; \
267           echo "by executing \"make install-dep\"\n" ; \
268           exit 1 ; \
269         fi ; \
270         exit 0
271 endif
272         @touch $@
273
274 .PHONY: bootstrap
275 bootstrap:
276         @echo "'make bootstrap' is not needed anymore"
277
278 .PHONY: install-dep
279 install-dep:
280 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
281         @sudo -E apt-get update
282         @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
283 else ifneq ("$(wildcard /etc/redhat-release)","")
284 ifeq ($(OS_ID),rhel)
285         @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms
286         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
287         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
288         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
289 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
290         @sudo -E dnf install $(CONFIRM) dnf-plugins-core epel-release
291         @sudo -E dnf config-manager --set-enabled \
292           $(shell dnf repolist all 2>/dev/null|grep -i powertools|cut -d' ' -f1)
293         @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
294         @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
295 else ifeq ($(OS_ID),centos)
296         @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release
297         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
298         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
299         @sudo -E yum install $(CONFIRM) --enablerepo=base-debuginfo $(RPM_DEPENDS_DEBUG)
300 else ifeq ($(OS_ID),fedora)
301         @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
302         @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
303         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
304 endif
305 else
306         $(error "This option currently works only on Ubuntu, Debian, RHEL, or CentOS systems")
307 endif
308         git config commit.template .git_commit_template.txt
309
310 .PHONY: install-deps
311 install-deps: install-dep
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 .PHONY: dist
328 dist:
329         @if git rev-parse 2> /dev/null ; then \
330             git archive \
331               --prefix=$(DIST_SUBDIR)/ \
332               --format=tar \
333               -o $(DIST_FILE) \
334             HEAD ; \
335             git describe > $(BR)/.version ; \
336         else \
337             (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
338             src/scripts/version > $(BR)/.version ; \
339         fi
340         @tar --append \
341           --file $(DIST_FILE) \
342           --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
343           $(BR)/.version
344         @$(RM) $(BR)/.version $(DIST_FILE).xz
345         @xz -v --threads=0 $(DIST_FILE)
346         @$(RM) $(BR)/vpp-latest.tar.xz
347         @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
348
349 .PHONY: build
350 build: $(BR)/.deps.ok
351         $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
352
353 .PHONY: wipedist
354 wipedist:
355         @$(RM) $(BR)/*.tar.xz
356
357 .PHONY: wipe
358 wipe: wipedist test-wipe $(BR)/.deps.ok
359         $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
360         @find . -type f -name "*.api.json" ! -path "./test/*" -exec rm {} \;
361
362 .PHONY: rebuild
363 rebuild: wipe build
364
365 .PHONY: build-release
366 build-release: $(BR)/.deps.ok
367         $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
368
369 .PHONY: wipe-release
370 wipe-release: test-wipe $(BR)/.deps.ok
371         $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
372
373 .PHONY: rebuild-release
374 rebuild-release: wipe-release build-release
375
376 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
377
378 export TEST_DIR ?= $(WS_ROOT)/test
379 export RND_SEED ?= $(shell python3 -c 'import time; print(time.time())')
380
381 define test
382         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
383         $(eval libs:=lib lib64)
384         make -C test \
385           VPP_BUILD_DIR=$(BR)/build-$(2)-native \
386           VPP_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
387           VPP_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
388           VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_api_test_plugins) \
389           VPP_INSTALL_PATH=$(BR)/install-$(2)-native/ \
390           LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
391           EXTENDED_TESTS=$(EXTENDED_TESTS) \
392           PYTHON=$(PYTHON) \
393           OS_ID=$(OS_ID) \
394           RND_SEED=$(RND_SEED) \
395           CACHE_OUTPUT=$(CACHE_OUTPUT) \
396           $(3)
397 endef
398
399 .PHONY: test
400 test:
401         $(call test,vpp,vpp,test)
402
403 .PHONY: test-debug
404 test-debug:
405         $(call test,vpp,vpp_debug,test)
406
407 .PHONY: test-gcov
408 test-gcov:
409         $(call test,vpp,vpp_gcov,test)
410
411 .PHONY: test-all
412 test-all:
413         $(eval EXTENDED_TESTS=yes)
414         $(call test,vpp,vpp,test)
415
416 .PHONY: test-all-debug
417 test-all-debug:
418         $(eval EXTENDED_TESTS=yes)
419         $(call test,vpp,vpp_debug,test)
420
421 .PHONY: papi-wipe
422 papi-wipe: test-wipe-papi
423         $(call banner,"This command is deprecated. Please use 'test-wipe-papi'")
424
425 .PHONY: test-wipe-papi
426 test-wipe-papi:
427         @make -C test wipe-papi
428
429 .PHONY: test-help
430 test-help:
431         @make -C test help
432
433 .PHONY: test-wipe
434 test-wipe:
435         @make -C test wipe
436
437 .PHONY: test-shell
438 test-shell:
439         $(call test,vpp,vpp,shell)
440
441 .PHONY: test-shell-debug
442 test-shell-debug:
443         $(call test,vpp,vpp_debug,shell)
444
445 .PHONY: test-shell-gcov
446 test-shell-gcov:
447         $(call test,vpp,vpp_gcov,shell)
448
449 .PHONY: test-dep
450 test-dep:
451         @make -C test test-dep
452
453 .PHONY: test-doc
454 test-doc:
455         @make -C test doc
456
457 .PHONY: test-wipe-doc
458 test-wipe-doc:
459         @make -C test wipe-doc
460
461 .PHONY: test-cov
462 test-cov:
463         $(eval EXTENDED_TESTS=yes)
464         $(call test,vpp,vpp_gcov,cov)
465
466 .PHONY: test-wipe-cov
467 test-wipe-cov:
468         @make -C test wipe-cov
469
470 .PHONY: test-wipe-all
471 test-wipe-all:
472         @make -C test wipe-all
473
474 .PHONY: test-checkstyle
475 test-checkstyle:
476         @make -C test checkstyle
477
478 .PHONY: test-refresh-deps
479 test-refresh-deps:
480         @make -C test refresh-deps
481
482 .PHONY: retest
483 retest:
484         $(call test,vpp,vpp,retest)
485
486 .PHONY: retest-debug
487 retest-debug:
488         $(call test,vpp,vpp_debug,retest)
489
490 .PHONY: retest-all
491 retest-all:
492         $(eval EXTENDED_TESTS=yes)
493         $(call test,vpp,vpp,retest)
494
495 .PHONY: retest-all-debug
496 retest-all-debug:
497         $(eval EXTENDED_TESTS=yes)
498         $(call test,vpp,vpp_debug,retest)
499
500 ifeq ("$(wildcard $(STARTUP_CONF))","")
501 define run
502         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
503         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
504         @cd $(STARTUP_DIR) && \
505           $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
506 endef
507 else
508 define run
509         @cd $(STARTUP_DIR) && \
510           $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
511 endef
512 endif
513
514 %.files: .FORCE
515         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' -o -name '*\.py' \) -and \
516                 \( -not -path './build-root*' -o -path \
517                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
518
519 .FORCE:
520
521 .PHONY: run
522 run:
523         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
524
525 .PHONY: run-release
526 run-release:
527         $(call run, $(BR)/install-$(PLATFORM)-native)
528
529 .PHONY: debug
530 debug:
531         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
532
533 .PHONY: build-coverity
534 build-coverity:
535         $(call make,$(PLATFORM)_coverity,install-packages)
536
537 .PHONY: debug-release
538 debug-release:
539         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
540
541 .PHONY: build-vat
542 build-vat:
543         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
544
545 .PHONY: run-vat
546 run-vat:
547         @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
548
549 .PHONY: pkg-deb
550 pkg-deb:
551         $(call make,$(PLATFORM),vpp-package-deb)
552
553 .PHONY: pkg-snap
554 pkg-snap:
555         cd extras/snap ;                        \
556         ./prep ;                                \
557         SNAPCRAFT_BUILD_ENVIRONMENT_MEMORY=8G   \
558         SNAPCRAFT_BUILD_ENVIRONMENT_CPU=6       \
559         snapcraft --debug
560
561 .PHONY: snap-clean
562 snap-clean:
563         cd extras/snap ;                        \
564         snapcraft clean ;                       \
565         rm -f *.snap *.tgz
566
567 .PHONY: pkg-deb-debug
568 pkg-deb-debug:
569         $(call make,$(PLATFORM)_debug,vpp-package-deb)
570
571 .PHONY: pkg-rpm
572 pkg-rpm: dist
573         make -C extras/rpm
574
575 .PHONY: pkg-srpm
576 pkg-srpm: dist
577         make -C extras/rpm srpm
578
579 .PHONY: dpdk-install-dev
580 dpdk-install-dev:
581         $(call banner,"This command is deprecated. Please use 'make install-ext-deps'")
582         make -C build/external install-$(PKG)
583
584 .PHONY: install-ext-deps
585 install-ext-deps:
586         make -C build/external install-$(PKG)
587
588 .PHONY: install-ext-dep
589 install-ext-dep: install-ext-deps
590
591 .PHONY: json-api-files
592 json-api-files:
593         $(WS_ROOT)/src/tools/vppapigen/generate_json.py
594
595 .PHONY: json-api-files-debug
596 json-api-files-debug:
597         $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target
598
599 .PHONY: ctags
600 ctags: ctags.files
601         @ctags --totals --tag-relative=yes -L $<
602         @rm $<
603
604 .PHONY: gtags
605 gtags: ctags
606         @gtags --gtagslabel=ctags
607
608 .PHONY: cscope
609 cscope: cscope.files
610         @cscope -b -q -v
611
612 .PHONY: compdb
613 compdb:
614         @ninja -C build-root/build-vpp_debug-native/vpp build.ninja
615         @ninja -C build-root/build-vpp_debug-native/vpp -t compdb | \
616           extras/scripts/compdb_cleanup.py > compile_commands.json
617
618 .PHONY: checkstyle
619 checkstyle: checkfeaturelist
620 ifeq ($(shell which clang-format-10),)
621         @sudo apt-get install -y clang-format-10
622 endif
623         @extras/scripts/checkstyle.sh
624
625 .PHONY: checkstyle-commit
626 checkstyle-commit:
627         @extras/scripts/check_commit_msg.sh
628
629 .PHONY: checkstyle-test
630 checkstyle-test: test-checkstyle
631
632 .PHONY: checkstyle-all
633 checkstyle-all: checkstyle-commit checkstyle checkstyle-test
634
635 .PHONY: fixstyle
636 fixstyle:
637         @extras/scripts/checkstyle.sh --fix
638
639 .PHONY: checkstyle-api
640 checkstyle-api:
641         @extras/scripts/crcchecker.py --check-patch
642
643 # necessary because Bug 1696324 - Update to python3.6 breaks PyYAML dependencies
644 # Status:       CLOSED CANTFIX
645 # https://bugzilla.redhat.com/show_bug.cgi?id=1696324
646 .PHONY: centos-pyyaml
647 centos-pyyaml:
648 ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
649         @sudo -E yum install $(CONFIRM) python3-pyyaml
650 endif
651
652 .PHONY: featurelist
653 featurelist: centos-pyyaml
654         @build-root/scripts/fts.py --all --markdown
655
656 .PHONY: checkfeaturelist
657 checkfeaturelist: centos-pyyaml
658         @build-root/scripts/fts.py --validate --all
659
660 #
661 # Build the documentation
662 #
663
664 # Doxygen configuration and our utility scripts
665 export DOXY_DIR ?= $(WS_ROOT)/doxygen
666
667 define make-doxy
668         @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
669 endef
670
671 .PHONY: bootstrap-doxygen
672 bootstrap-doxygen:
673         $(call make-doxy)
674
675 .PHONY: doxygen
676 doxygen: bootstrap-doxygen
677         $(call make-doxy)
678
679 .PHONY: wipe-doxygen
680 wipe-doxygen:
681         $(call make-doxy)
682
683 # Sphinx Documents
684 export DOCS_DIR = $(WS_ROOT)/docs
685 export VENV_DIR = $(WS_ROOT)/sphinx_venv
686 export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts
687
688 .PHONY: docs-venv
689 docs-venv:
690         @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv)
691
692 .PHONY: docs
693 docs: $(DOCS_DIR)
694         @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html)
695
696 .PHONY: docs-clean
697 docs-clean:
698         @rm -rf $(DOCS_DIR)/_build
699         @rm -rf $(VENV_DIR)
700
701 .PHONY: pkg-verify
702 pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps
703         $(call banner,"Building for PLATFORM=vpp using gcc")
704         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
705         $(call banner,"Building sample-plugin")
706         @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
707         $(call banner,"Building libmemif")
708         @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
709         $(call banner,"Building $(PKG) packages")
710         @make pkg-$(PKG)
711
712 MAKE_VERIFY_GATE_OS ?= ubuntu-18.04
713 .PHONY: verify
714 verify: pkg-verify
715 ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS))
716         $(call banner,"Testing vppapigen")
717         @src/tools/vppapigen/test_vppapigen.py
718         $(call banner,"Running tests")
719         @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
720 else
721         $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)")
722 endif