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