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