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