api: remove unused singular option
[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 \
288           $(shell dnf repolist all 2>/dev/null|grep -i powertools|cut -d' ' -f1)
289         @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
290         @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
291 else ifeq ($(OS_ID),centos)
292         @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release
293         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
294         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
295         @sudo -E yum install $(CONFIRM) --enablerepo=base-debuginfo $(RPM_DEPENDS_DEBUG)
296 else ifeq ($(OS_ID),fedora)
297         @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
298         @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
299         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
300 endif
301 else
302         $(error "This option currently works only on Ubuntu, Debian, RHEL, or CentOS systems")
303 endif
304         git config commit.template .git_commit_template.txt
305
306 .PHONY: install-deps
307 install-deps: install-dep
308
309 define make
310         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
311 endef
312
313 $(BR)/scripts/.version:
314 ifneq ("$(wildcard /etc/redhat-release)","")
315         $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
316 else
317         $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
318 endif
319
320 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
321 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
322
323 .PHONY: dist
324 dist:
325         @if git rev-parse 2> /dev/null ; then \
326             git archive \
327               --prefix=$(DIST_SUBDIR)/ \
328               --format=tar \
329               -o $(DIST_FILE) \
330             HEAD ; \
331             git describe > $(BR)/.version ; \
332         else \
333             (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
334             src/scripts/version > $(BR)/.version ; \
335         fi
336         @tar --append \
337           --file $(DIST_FILE) \
338           --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
339           $(BR)/.version
340         @$(RM) $(BR)/.version $(DIST_FILE).xz
341         @xz -v --threads=0 $(DIST_FILE)
342         @$(RM) $(BR)/vpp-latest.tar.xz
343         @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
344
345 .PHONY: build
346 build: $(BR)/.deps.ok
347         $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
348
349 .PHONY: wipedist
350 wipedist:
351         @$(RM) $(BR)/*.tar.xz
352
353 .PHONY: wipe
354 wipe: wipedist test-wipe $(BR)/.deps.ok
355         $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
356         @find . -type f -name "*.api.json" ! -path "./test/*" -exec rm {} \;
357
358 .PHONY: rebuild
359 rebuild: wipe build
360
361 .PHONY: build-release
362 build-release: $(BR)/.deps.ok
363         $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
364
365 .PHONY: wipe-release
366 wipe-release: test-wipe $(BR)/.deps.ok
367         $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
368
369 .PHONY: rebuild-release
370 rebuild-release: wipe-release build-release
371
372 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
373
374 export TEST_DIR ?= $(WS_ROOT)/test
375 export RND_SEED ?= $(shell python3 -c 'import time; print(time.time())')
376
377 define test
378         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
379         $(eval libs:=lib lib64)
380         make -C test \
381           VPP_BUILD_DIR=$(BR)/build-$(2)-native \
382           VPP_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
383           VPP_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
384           VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_api_test_plugins) \
385           VPP_INSTALL_PATH=$(BR)/install-$(2)-native/ \
386           LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
387           EXTENDED_TESTS=$(EXTENDED_TESTS) \
388           PYTHON=$(PYTHON) \
389           OS_ID=$(OS_ID) \
390           RND_SEED=$(RND_SEED) \
391           CACHE_OUTPUT=$(CACHE_OUTPUT) \
392           $(3)
393 endef
394
395 .PHONY: test
396 test:
397         $(call test,vpp,vpp,test)
398
399 .PHONY: test-debug
400 test-debug:
401         $(call test,vpp,vpp_debug,test)
402
403 .PHONY: test-gcov
404 test-gcov:
405         $(call test,vpp,vpp_gcov,test)
406
407 .PHONY: test-all
408 test-all:
409         $(eval EXTENDED_TESTS=yes)
410         $(call test,vpp,vpp,test)
411
412 .PHONY: test-all-debug
413 test-all-debug:
414         $(eval EXTENDED_TESTS=yes)
415         $(call test,vpp,vpp_debug,test)
416
417 .PHONY: papi-wipe
418 papi-wipe: test-wipe-papi
419         $(call banner,"This command is deprecated. Please use 'test-wipe-papi'")
420
421 .PHONY: test-wipe-papi
422 test-wipe-papi:
423         @make -C test wipe-papi
424
425 .PHONY: test-help
426 test-help:
427         @make -C test help
428
429 .PHONY: test-wipe
430 test-wipe:
431         @make -C test wipe
432
433 .PHONY: test-shell
434 test-shell:
435         $(call test,vpp,vpp,shell)
436
437 .PHONY: test-shell-debug
438 test-shell-debug:
439         $(call test,vpp,vpp_debug,shell)
440
441 .PHONY: test-shell-gcov
442 test-shell-gcov:
443         $(call test,vpp,vpp_gcov,shell)
444
445 .PHONY: test-dep
446 test-dep:
447         @make -C test test-dep
448
449 .PHONY: test-doc
450 test-doc:
451         @make -C test doc
452
453 .PHONY: test-wipe-doc
454 test-wipe-doc:
455         @make -C test wipe-doc
456
457 .PHONY: test-cov
458 test-cov:
459         $(eval EXTENDED_TESTS=yes)
460         $(call test,vpp,vpp_gcov,cov)
461
462 .PHONY: test-wipe-cov
463 test-wipe-cov:
464         @make -C test wipe-cov
465
466 .PHONY: test-wipe-all
467 test-wipe-all:
468         @make -C test wipe-all
469
470 .PHONY: test-checkstyle
471 test-checkstyle:
472         @make -C test checkstyle
473
474 .PHONY: test-refresh-deps
475 test-refresh-deps:
476         @make -C test refresh-deps
477
478 .PHONY: retest
479 retest:
480         $(call test,vpp,vpp,retest)
481
482 .PHONY: retest-debug
483 retest-debug:
484         $(call test,vpp,vpp_debug,retest)
485
486 .PHONY: retest-all
487 retest-all:
488         $(eval EXTENDED_TESTS=yes)
489         $(call test,vpp,vpp,retest)
490
491 .PHONY: retest-all-debug
492 retest-all-debug:
493         $(eval EXTENDED_TESTS=yes)
494         $(call test,vpp,vpp_debug,retest)
495
496 ifeq ("$(wildcard $(STARTUP_CONF))","")
497 define run
498         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
499         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
500         @cd $(STARTUP_DIR) && \
501           $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
502 endef
503 else
504 define run
505         @cd $(STARTUP_DIR) && \
506           $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
507 endef
508 endif
509
510 %.files: .FORCE
511         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
512                 \( -not -path './build-root*' -o -path \
513                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
514
515 .FORCE:
516
517 .PHONY: run
518 run:
519         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
520
521 .PHONY: run-release
522 run-release:
523         $(call run, $(BR)/install-$(PLATFORM)-native)
524
525 .PHONY: debug
526 debug:
527         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
528
529 .PHONY: build-coverity
530 build-coverity:
531         $(call make,$(PLATFORM)_coverity,install-packages)
532
533 .PHONY: debug-release
534 debug-release:
535         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
536
537 .PHONY: build-vat
538 build-vat:
539         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
540
541 .PHONY: run-vat
542 run-vat:
543         @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
544
545 .PHONY: pkg-deb
546 pkg-deb:
547         $(call make,$(PLATFORM),vpp-package-deb)
548
549 .PHONY: pkg-snap
550 pkg-snap:
551         cd extras/snap ;                        \
552         ./prep ;                                \
553         SNAPCRAFT_BUILD_ENVIRONMENT_MEMORY=8G   \
554         SNAPCRAFT_BUILD_ENVIRONMENT_CPU=6       \
555         snapcraft --debug
556
557 .PHONY: snap-clean
558 snap-clean:
559         cd extras/snap ;                        \
560         snapcraft clean ;                       \
561         rm -f *.snap *.tgz
562
563 .PHONY: pkg-deb-debug
564 pkg-deb-debug:
565         $(call make,$(PLATFORM)_debug,vpp-package-deb)
566
567 .PHONY: pkg-rpm
568 pkg-rpm: dist
569         make -C extras/rpm
570
571 .PHONY: pkg-srpm
572 pkg-srpm: dist
573         make -C extras/rpm srpm
574
575 .PHONY: dpdk-install-dev
576 dpdk-install-dev:
577         $(call banner,"This command is deprecated. Please use 'make install-ext-deps'")
578         make -C build/external install-$(PKG)
579
580 .PHONY: install-ext-deps
581 install-ext-deps:
582         make -C build/external install-$(PKG)
583
584 .PHONY: install-ext-dep
585 install-ext-dep: install-ext-deps
586
587 .PHONY: json-api-files
588 json-api-files:
589         $(WS_ROOT)/src/tools/vppapigen/generate_json.py
590
591 .PHONY: json-api-files-debug
592 json-api-files-debug:
593         $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target
594
595 .PHONY: ctags
596 ctags: ctags.files
597         @ctags --totals --tag-relative -L $<
598         @rm $<
599
600 .PHONY: gtags
601 gtags: ctags
602         @gtags --gtagslabel=ctags
603
604 .PHONY: cscope
605 cscope: cscope.files
606         @cscope -b -q -v
607
608 .PHONY: compdb
609 compdb:
610         @ninja -C build-root/build-vpp_debug-native/vpp build.ninja
611         @ninja -C build-root/build-vpp_debug-native/vpp -t compdb | \
612           extras/scripts/compdb_cleanup.py > compile_commands.json
613
614 .PHONY: checkstyle
615 checkstyle: checkfeaturelist
616         @build-root/scripts/checkstyle.sh
617
618 .PHONY: checkstyle-commit
619 checkstyle-commit:
620         @extras/scripts/check_commit_msg.sh
621
622 .PHONY: checkstyle-test
623 checkstyle-test: test-checkstyle
624
625 .PHONY: checkstyle-all
626 checkstyle-all: checkstyle-commit checkstyle checkstyle-test
627
628 .PHONY: fixstyle
629 fixstyle:
630         @build-root/scripts/checkstyle.sh --fix
631
632 .PHONY: checkstyle-api
633 checkstyle-api:
634         @extras/scripts/crcchecker.py --check-patch
635
636 # necessary because Bug 1696324 - Update to python3.6 breaks PyYAML dependencies
637 # Status:       CLOSED CANTFIX
638 # https://bugzilla.redhat.com/show_bug.cgi?id=1696324
639 .PHONY: centos-pyyaml
640 centos-pyyaml:
641 ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-7)
642         @python3 -m pip install pyyaml
643 endif
644 ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
645         @sudo -E yum install $(CONFIRM) python3-pyyaml
646 endif
647
648 .PHONY: featurelist
649 featurelist: centos-pyyaml
650         @build-root/scripts/fts.py --all --markdown
651
652 .PHONY: checkfeaturelist
653 checkfeaturelist: centos-pyyaml
654         @build-root/scripts/fts.py --validate --all
655
656 #
657 # Build the documentation
658 #
659
660 # Doxygen configuration and our utility scripts
661 export DOXY_DIR ?= $(WS_ROOT)/doxygen
662
663 define make-doxy
664         @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
665 endef
666
667 .PHONY: bootstrap-doxygen
668 bootstrap-doxygen:
669         $(call make-doxy)
670
671 .PHONY: doxygen
672 doxygen: bootstrap-doxygen
673         $(call make-doxy)
674
675 .PHONY: wipe-doxygen
676 wipe-doxygen:
677         $(call make-doxy)
678
679 # Sphinx Documents
680 export DOCS_DIR = $(WS_ROOT)/docs
681 export VENV_DIR = $(WS_ROOT)/sphinx_venv
682 export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts
683
684 .PHONY: docs-venv
685 docs-venv:
686         @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv)
687
688 .PHONY: docs
689 docs: $(DOCS_DIR)
690         @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html)
691
692 .PHONY: docs-clean
693 docs-clean:
694         @rm -rf $(DOCS_DIR)/_build
695         @rm -rf $(VENV_DIR)
696
697 .PHONY: pkg-verify
698 pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps
699         $(call banner,"Building for PLATFORM=vpp using gcc")
700         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
701         $(call banner,"Building sample-plugin")
702         @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
703         $(call banner,"Building libmemif")
704         @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
705         $(call banner,"Building $(PKG) packages")
706         @make pkg-$(PKG)
707
708 MAKE_VERIFY_GATE_OS ?= ubuntu-18.04
709 .PHONY: verify
710 verify: pkg-verify
711 ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS))
712         $(call banner,"Testing vppapigen")
713         @src/tools/vppapigen/test_vppapigen.py
714         $(call banner,"Running tests")
715         @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
716 else
717         $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)")
718 endif