blob: cac1ed770d9b019506934de7ab30c3125d8ad887 [file] [log] [blame]
Damjan Marione17fdb52016-02-10 00:36:06 +01001# 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
Damjan Marion6484b3b2017-01-15 21:30:50 +010014export WS_ROOT=$(CURDIR)
15export BR=$(WS_ROOT)/build-root
Damjan Marione17fdb52016-02-10 00:36:06 +010016CCACHE_DIR?=$(BR)/.ccache
Damjan Marione17fdb52016-02-10 00:36:06 +010017GDB?=gdb
Damjan Marione6f90232016-03-16 22:49:05 +010018PLATFORM?=vpp
Damjan Marion0dc3f192017-05-31 19:25:08 +020019SAMPLE_PLUGIN?=no
Damjan Marion005849e2018-07-19 14:39:40 +020020STARTUP_DIR?=$(PWD)
Brian Brooks40b655c2017-09-22 12:26:34 -050021MACHINE=$(shell uname -m)
Damjan Marion72d2c4f2018-04-05 21:32:29 +020022SUDO?=sudo
Damjan Marionbe7ef3b2019-09-24 17:45:49 +020023DPDK_CONFIG?=no-pci
Brian Brooks40b655c2017-09-22 12:26:34 -050024
Damjan Marionb1dab652017-06-30 11:51:41 +020025,:=,
26define disable_plugins
27$(if $(1), \
28 "plugins {" \
29 $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
30 " }" \
31 ,)
32endef
33
34MINIMAL_STARTUP_CONF=" \
35unix { \
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"
Damjan Marione17fdb52016-02-10 00:36:06 +010044
Damjan Marioneef4d992016-02-23 22:04:50 +010045GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
46
Damjan Marionc5e86812016-05-02 19:40:27 +020047#
48# OS Detection
49#
Chris Luke36d25062016-09-22 20:52:26 -040050# We allow Darwin (MacOS) for docs generation; VPP build will still fail.
51ifneq ($(shell uname),Darwin)
Damjan Marionc5e86812016-05-02 19:40:27 +020052OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
53OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
Chris Luke36d25062016-09-22 20:52:26 -040054endif
Damjan Marionc5e86812016-05-02 19:40:27 +020055
Gabriel Ganne898171a2017-01-23 12:08:58 +010056ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marion2ce7f982017-01-09 20:24:50 +010057PKG=deb
Marco Varlese19be50e2018-05-17 15:46:13 +020058else ifeq ($(filter rhel centos fedora opensuse opensuse-leap opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
Damjan Marion2ce7f982017-01-09 20:24:50 +010059PKG=rpm
60endif
61
Dave Wallaced756b352017-07-03 13:11:38 -040062# +libganglia1-dev if building the gmond plugin
63
Ole Troan9d420872017-10-12 13:06:35 +020064DEB_DEPENDS = curl build-essential autoconf automake ccache
Dave Wallaced756b352017-07-03 13:11:38 -040065DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd
Damjan Marion6bbf83a2017-01-10 10:39:21 +010066DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
Sergio Gonzalez Monroy6184db32017-10-27 08:58:38 +010067DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev
Damjan Mariona4164932020-05-12 12:22:18 +020068DEB_DEPENDS += python3-all python3-setuptools check
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -080069DEB_DEPENDS += libboost-all-dev libffi-dev python3-ply libmbedtls-dev
Ole Troanf3aebda2020-01-03 16:37:27 +010070DEB_DEPENDS += cmake ninja-build uuid-dev python3-jsonschema python3-yaml
Paul Vinciguerra2c6efec2019-11-20 19:15:46 -050071DEB_DEPENDS += python3-venv # ensurepip
Paul Vinciguerra9d0ca072019-11-20 00:09:04 -050072DEB_DEPENDS += python3-dev # needed for python3 -m pip install psutil
73# python3.6 on 16.04 requires python36-dev
Dave Barach6d97e622020-03-18 10:14:40 -040074
Dave Barach6e6968f2020-03-21 11:15:48 -040075LIBFFI=libffi6 # works on all but 20.04
76
Damjan Mariona4164932020-05-12 12:22:18 +020077ifeq ($(OS_VERSION_ID),18.04)
78 DEB_DEPENDS += python-dev python-all python-pip python-virtualenv
Jieqiang Wang7aef80b2020-02-12 12:13:34 +000079 DEB_DEPENDS += libssl-dev
Damjan Marion162330f2020-04-29 21:28:15 +020080 DEB_DEPENDS += clang-9
Dave Barach6e6968f2020-03-21 11:15:48 -040081else ifeq ($(OS_VERSION_ID),20.04)
Damjan Mariona4164932020-05-12 12:22:18 +020082 DEB_DEPENDS += python3-virtualenv
Jieqiang Wanga5cf6e02020-06-04 14:09:57 +080083 DEB_DEPENDS += libssl-dev
Benoît Ganne4a76d6f2020-06-12 08:47:34 +020084 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
Dave Barach6e6968f2020-03-21 11:15:48 -040085 LIBFFI=libffi7
Damjan Marion9b6463d2017-05-29 12:29:05 +020086else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
Anton Ivanove6f3b462017-09-21 13:15:53 +010087 DEB_DEPENDS += libssl-dev
Damjan Mariona4164932020-05-12 12:22:18 +020088 DEB_DEPENDS += python-dev python-all python-pip python-virtualenv
Damjan Marion9b6463d2017-05-29 12:29:05 +020089 APT_ARGS = -t jessie-backports
Anton Ivanove6f3b462017-09-21 13:15:53 +010090else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
Anton Ivanove6f3b462017-09-21 13:15:53 +010091 DEB_DEPENDS += libssl1.0-dev
Damjan Mariona4164932020-05-12 12:22:18 +020092 DEB_DEPENDS += python-all python-pip
93 DEB_DEPENDS += python-dev python-all python-pip python-virtualenv
Benoît Ganne3f0ae662020-09-09 12:50:07 +020094else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10)
95 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
Damjan Marion005849e2018-07-19 14:39:40 +020096else
Anton Ivanove6f3b462017-09-21 13:15:53 +010097 DEB_DEPENDS += libssl-dev
Ed Warnicke027103e2016-05-05 18:03:27 -050098endif
Damjan Marione17fdb52016-02-10 00:36:06 +010099
Dave Barach6e6968f2020-03-21 11:15:48 -0400100DEB_DEPENDS += $(LIBFFI)
101
Michal Cmarada4e633e12019-01-31 10:57:40 +0100102RPM_DEPENDS = redhat-lsb glibc-static
Gabriel Ganne555d9202017-09-06 10:44:07 +0200103RPM_DEPENDS += apr-devel
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400104RPM_DEPENDS += numactl-devel
Thomas F Herberte4128912017-10-09 15:03:55 -0400105RPM_DEPENDS += check check-devel
Neale Ranns812ed392017-10-16 04:20:13 -0700106RPM_DEPENDS += boost boost-devel
Billy McFall28cf3b72018-01-15 17:54:52 -0500107RPM_DEPENDS += selinux-policy selinux-policy-devel
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500108RPM_DEPENDS += ninja-build
Stephen Hemminger6fbef232018-10-15 12:52:30 -0700109RPM_DEPENDS += libuuid-devel
jdeniscoe8692692019-02-26 09:19:24 -0500110RPM_DEPENDS += mbedtls-devel
Yichen Wang81355d72020-06-08 17:13:01 -0700111RPM_DEPENDS += ccache
112RPM_DEPENDS += xmlto
Klement Sekerad3e671e2017-09-29 12:36:37 +0200113
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500114ifeq ($(OS_ID),fedora)
115 RPM_DEPENDS += dnf-utils
Thomas F Herbert66731782018-03-05 17:21:56 -0500116 RPM_DEPENDS += subunit subunit-devel
Thomas F Herbert440751b2017-09-11 08:58:23 -0400117 RPM_DEPENDS += compat-openssl10-devel
Ed Kern86e8bce2020-02-05 08:30:00 -0700118 RPM_DEPENDS += python3-devel # needed for python3 -m pip install psutil
Paul Vinciguerra9d0ca072019-11-20 00:09:04 -0500119 RPM_DEPENDS += python3-ply # for vppapigen
Ole Troan6a3064f2019-05-14 13:24:10 +0200120 RPM_DEPENDS += python3-virtualenv python3-jsonschema
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500121 RPM_DEPENDS += cmake
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400122 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Renato Botelho do Coutoc0253292019-11-07 06:10:34 -0600123else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
Ed Kern86e8bce2020-02-05 08:30:00 -0700124 RPM_DEPENDS += yum-utils
Renato Botelho do Coutoc0253292019-11-07 06:10:34 -0600125 RPM_DEPENDS += compat-openssl10
Yichen Wang81355d72020-06-08 17:13:01 -0700126 RPM_DEPENDS += python2-devel python36-devel python3-ply
Renato Botelho do Coutoc0253292019-11-07 06:10:34 -0600127 RPM_DEPENDS += python3-virtualenv python3-jsonschema
128 RPM_DEPENDS += cmake
129 RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400130else
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500131 RPM_DEPENDS += yum-utils
Thomas F Herbert440751b2017-09-11 08:58:23 -0400132 RPM_DEPENDS += openssl-devel
Paul Vinciguerra9d0ca072019-11-20 00:09:04 -0500133 RPM_DEPENDS += python36-ply # for vppapigen
Ed Kernc63c0162019-09-17 13:19:42 -0600134 RPM_DEPENDS += python3-devel python3-pip
Ole Troan6a3064f2019-05-14 13:24:10 +0200135 RPM_DEPENDS += python-virtualenv python36-jsonschema
jiangxiaoming9f1dbd22020-08-27 16:00:16 +0800136 RPM_DEPENDS += devtoolset-9 devtoolset-9-libasan-devel
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500137 RPM_DEPENDS += cmake3
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400138 RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400139endif
Dave Wallaced756b352017-07-03 13:11:38 -0400140
141# +ganglia-devel if building the ganglia plugin
142
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400143RPM_DEPENDS += chrpath libffi-devel rpm-build
Jieqiang Wang81b95c12020-07-23 15:19:25 +0000144
145RPM_DEPENDS_DEBUG = glibc-debuginfo e2fsprogs-debuginfo
146RPM_DEPENDS_DEBUG += krb5-debuginfo openssl-debuginfo
147RPM_DEPENDS_DEBUG += zlib-debuginfo nss-softokn-debuginfo
148RPM_DEPENDS_DEBUG += yum-plugin-auto-update-debug-info
Paul Vinciguerra15388242019-02-27 11:15:04 -0800149# lowercase- replace spaces with dashes.
150SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | sed -e 's/ /-/' | awk '{print tolower($$0)}')
Ed Kerne3ae09f2018-04-06 14:52:54 -0600151SUSE_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
Ole Troan9d420872017-10-12 13:06:35 +0200152RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800153RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python3-ply
Marco Varlesefedc4552017-12-12 11:06:17 +0100154
Michal Cmarada4e633e12019-01-31 10:57:40 +0100155RPM_SUSE_DEVEL_DEPS = glibc-devel-static libnuma-devel
Stephen Hemminger6fbef232018-10-15 12:52:30 -0700156RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel libuuid-devel
Marco Varlesefedc4552017-12-12 11:06:17 +0100157
158RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
159RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
160
Marco Varlesedb417762017-10-24 17:02:04 +0200161RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
Marco Varlese5f1231c2017-10-10 16:43:14 +0200162
163ifeq ($(OS_ID),opensuse)
Paul Vinciguerra15388242019-02-27 11:15:04 -0800164ifeq ($(SUSE_NAME),tumbleweed)
Florin Coras223548d2018-12-27 09:07:32 -0800165 RPM_SUSE_DEVEL_DEPS = libboost_headers1_68_0-devel-1.68.0 libboost_thread1_68_0-devel-1.68.0 gcc
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800166 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
Marco Varlese5f1231c2017-10-10 16:43:14 +0200167endif
Ed Kerne3ae09f2018-04-06 14:52:54 -0600168ifeq ($(SUSE_ID),15.0)
Ed Kernfd9d04d2019-02-19 10:27:23 -0700169 RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800170 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
Ed Kerne3ae09f2018-04-06 14:52:54 -0600171else
Florin Coras223548d2018-12-27 09:07:32 -0800172 RPM_SUSE_DEVEL_DEPS += libboost_headers1_68_0-devel-1.68.0 gcc6
Ed Kerne3ae09f2018-04-06 14:52:54 -0600173 RPM_SUSE_PYTHON_DEPS += python-virtualenv
174endif
Marco Varlese5f1231c2017-10-10 16:43:14 +0200175endif
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200176
Ed Kern947fe5e2018-04-26 17:13:17 -0600177ifeq ($(OS_ID),opensuse-leap)
178ifeq ($(SUSE_ID),15.0)
Benoît Ganneec6e8d22019-03-26 10:27:57 +0100179 RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc git curl
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800180 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
Ed Kern947fe5e2018-04-26 17:13:17 -0600181endif
182endif
183
Marco Varlesedb417762017-10-24 17:02:04 +0200184RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
185
Damjan Marion0df78dd2016-03-29 22:37:02 +0200186ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +0100187 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
188endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100189
Damjan Marionc5e86812016-05-02 19:40:27 +0200190ifeq ($(findstring y,$(UNATTENDED)),y)
191CONFIRM=-y
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700192FORCE=--force-yes
Damjan Marionc5e86812016-05-02 19:40:27 +0200193endif
194
Damjan Marion0dc3f192017-05-31 19:25:08 +0200195TARGETS = vpp
196
197ifneq ($(SAMPLE_PLUGIN),no)
198TARGETS += sample-plugin
199endif
200
Damjan Marion4a6cb832018-09-18 18:41:38 +0200201define banner
202 @echo "========================================================================"
203 @echo " $(1)"
204 @echo "========================================================================"
205 @echo " "
206endef
207
Dave Wallacee7906902019-11-14 12:19:32 -0500208.PHONY: help
Damjan Marione17fdb52016-02-10 00:36:06 +0100209help:
210 @echo "Make Targets:"
Dave Wallacee7906902019-11-14 12:19:32 -0500211 @echo " install-dep[s] - install software dependencies"
Dave Wallace2777ec72019-09-24 17:52:36 -0400212 @echo " wipe - wipe all products of debug build "
213 @echo " wipe-release - wipe all products of release build "
214 @echo " build - build debug binaries"
215 @echo " build-release - build release binaries"
216 @echo " build-coverity - build coverity artifacts"
Paul Vinciguerraea1a6512019-11-01 02:34:32 -0400217 @echo " rebuild - wipe and build debug binaries"
218 @echo " rebuild-release - wipe and build release binaries"
Dave Wallace2777ec72019-09-24 17:52:36 -0400219 @echo " run - run debug binary"
220 @echo " run-release - run release binary"
221 @echo " debug - run debug binary with debugger"
222 @echo " debug-release - run release binary with debugger"
Dave Wallacef0797d12019-11-15 17:29:15 -0500223 @echo " test - build and run tests"
Dave Wallace2777ec72019-09-24 17:52:36 -0400224 @echo " test-help - show help on test framework"
225 @echo " run-vat - run vpp-api-test tool"
226 @echo " pkg-deb - build DEB packages"
227 @echo " pkg-deb-debug - build DEB debug packages"
Dave Barach6d97e622020-03-18 10:14:40 -0400228 @echo " pkg-snap - build SNAP package"
229 @echo " snap-clean - clean up snap build environment"
Dave Wallace2777ec72019-09-24 17:52:36 -0400230 @echo " vom-pkg-deb - build vom DEB packages"
231 @echo " vom-pkg-deb-debug - build vom DEB debug packages"
232 @echo " pkg-rpm - build RPM packages"
Dave Wallacee7906902019-11-14 12:19:32 -0500233 @echo " install-ext-dep[s] - install external development dependencies"
Dave Wallace2777ec72019-09-24 17:52:36 -0400234 @echo " ctags - (re)generate ctags database"
235 @echo " gtags - (re)generate gtags database"
236 @echo " cscope - (re)generate cscope database"
Damjan Marion13bcb922020-05-08 19:01:22 +0200237 @echo " compdb - (re)generate compile_commands.json"
Dave Wallace2777ec72019-09-24 17:52:36 -0400238 @echo " checkstyle - check coding style"
Dave Wallacee7906902019-11-14 12:19:32 -0500239 @echo " checkstyle-commit - check commit message format"
240 @echo " checkstyle-test - check test framework coding style"
Ole Troan5c318c72020-05-05 12:23:47 +0200241 @echo " checkstyle-api - check api for incompatible changes"
Dave Wallace2777ec72019-09-24 17:52:36 -0400242 @echo " fixstyle - fix coding style"
243 @echo " doxygen - (re)generate documentation"
244 @echo " bootstrap-doxygen - setup Doxygen dependencies"
245 @echo " wipe-doxygen - wipe all generated documentation"
246 @echo " checkfeaturelist - check FEATURE.yaml according to schema"
247 @echo " featurelist - dump feature list in markdown"
248 @echo " json-api-files - (re)-generate json api files"
Paul Vinciguerra9529feb2019-07-15 15:22:31 -0400249 @echo " json-api-files-debug - (re)-generate json api files for debug target"
jdenisco3138d722018-09-24 14:59:33 -0400250 @echo " docs - Build the Sphinx documentation"
Dave Wallace2777ec72019-09-24 17:52:36 -0400251 @echo " docs-venv - Build the virtual environment for the Sphinx docs"
252 @echo " docs-clean - Remove the generated files from the Sphinx docs"
Damjan Marione17fdb52016-02-10 00:36:06 +0100253 @echo ""
254 @echo "Make Arguments:"
Damjan Marionb1dab652017-06-30 11:51:41 +0200255 @echo " V=[0|1] - set build verbosity level"
256 @echo " STARTUP_CONF=<path> - startup configuration file"
257 @echo " (e.g. /etc/vpp/startup.conf)"
Paul Vinciguerraea1a6512019-11-01 02:34:32 -0400258 @echo " STARTUP_DIR=<path> - startup directory (e.g. /etc/vpp)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200259 @echo " It also sets STARTUP_CONF if"
260 @echo " startup.conf file is present"
261 @echo " GDB=<path> - gdb binary to use for debugging"
262 @echo " PLATFORM=<name> - target platform. default is vpp"
263 @echo " TEST=<filter> - apply filter to test set, see test-help"
264 @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to"
265 @echo " autogenerated startup.conf"
266 @echo " (e.g. \"no-pci\" )"
267 @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin"
268 @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which"
269 @echo " should not be loaded"
Damjan Marione17fdb52016-02-10 00:36:06 +0100270 @echo ""
Klement Sekera277b89c2016-10-28 13:20:27 +0200271 @echo "Current Argument Values:"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200272 @echo " V = $(V)"
273 @echo " STARTUP_CONF = $(STARTUP_CONF)"
274 @echo " STARTUP_DIR = $(STARTUP_DIR)"
275 @echo " GDB = $(GDB)"
276 @echo " PLATFORM = $(PLATFORM)"
277 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200278 @echo " DPDK_CONFIG = $(DPDK_CONFIG)"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200279 @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200280 @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)"
Damjan Marione17fdb52016-02-10 00:36:06 +0100281
Damjan Marion55f99672018-03-15 19:36:41 +0100282$(BR)/.deps.ok:
Damjan Marionc21d59f2016-11-19 12:04:34 +0100283ifeq ($(findstring y,$(UNATTENDED)),y)
284 make install-dep
285endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200286ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marione17fdb52016-02-10 00:36:06 +0100287 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
288 if [ -n "$$MISSING" ] ; then \
289 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +0100290 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +0100291 exit 1 ; \
292 fi ; \
293 exit 0
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400294else ifneq ("$(wildcard /etc/redhat-release)","")
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400295 @for i in $(RPM_DEPENDS) ; do \
jiangxiaoming9f1dbd22020-08-27 16:00:16 +0800296 RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3,4) ; \
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400297 MISSING+=$$(rpm -q $$RPM | grep "^package") ; \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400298 done ; \
299 if [ -n "$$MISSING" ] ; then \
300 echo "Please install missing RPMs: \n$$MISSING\n" ; \
301 echo "by executing \"make install-dep\"\n" ; \
302 exit 1 ; \
303 fi ; \
304 exit 0
Damjan Marione17fdb52016-02-10 00:36:06 +0100305endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100306 @touch $@
307
Dave Wallacee7906902019-11-14 12:19:32 -0500308.PHONY: bootstrap
Damjan Marion55f99672018-03-15 19:36:41 +0100309bootstrap:
310 @echo "'make bootstrap' is not needed anymore"
Damjan Marione17fdb52016-02-10 00:36:06 +0100311
Dave Wallacee7906902019-11-14 12:19:32 -0500312.PHONY: install-dep
Damjan Marionebb27fb2016-02-25 16:26:01 +0100313install-dep:
Damjan Marion9b6463d2017-05-29 12:29:05 +0200314ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marionc5e86812016-05-02 19:40:27 +0200315ifeq ($(OS_VERSION_ID),14.04)
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700316 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
Damjan Marionc5e86812016-05-02 19:40:27 +0200317endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200318ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
319 @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
320 || ( echo "Please install jessie-backports" ; exit 1 )
321endif
Ed Warnickeeb82e7f2017-02-01 16:08:51 -0800322 @sudo -E apt-get update
Damjan Marion9b6463d2017-05-29 12:29:05 +0200323 @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500324else ifneq ("$(wildcard /etc/redhat-release)","")
Yichen Wang840cd122018-10-30 22:52:15 -0700325ifeq ($(OS_ID),rhel)
326 @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms
Yichen Wang00cbd572019-02-04 22:27:20 -0800327 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
328 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
329 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
Renato Botelho do Coutoc0253292019-11-07 06:10:34 -0600330else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
Yichen Wang81355d72020-06-08 17:13:01 -0700331 @sudo -E dnf install $(CONFIRM) epel-release
332 @sudo -E dnf config-manager --set-enabled PowerTools
Renato Botelho do Coutoc0253292019-11-07 06:10:34 -0600333 @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
334 @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
Yichen Wang840cd122018-10-30 22:52:15 -0700335else ifeq ($(OS_ID),centos)
drenfong.wang6dd5e342019-01-15 08:24:26 +0000336 @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release
Yichen Wang840cd122018-10-30 22:52:15 -0700337 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
Gabriel Ganneb17402e2017-01-02 16:44:21 +0100338 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
Jieqiang Wang81b95c12020-07-23 15:19:25 +0000339 @sudo -E yum install $(CONFIRM) --enablerepo=base-debuginfo $(RPM_DEPENDS_DEBUG)
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500340else ifeq ($(OS_ID),fedora)
341 @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
342 @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
343 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
344endif
Marco Varlese23722e62018-08-20 12:21:30 +0200345else ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
Marco Varlese50ec7212017-10-10 09:30:33 +0200346 @sudo -E zypper refresh
347 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Ed Kern947fe5e2018-04-26 17:13:17 -0600348else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
349 @sudo -E zypper refresh
Florin Coras223548d2018-12-27 09:07:32 -0800350 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Ed Kern6604dde2018-08-20 11:05:03 -0600351else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
352 @sudo -E zypper refresh
353 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Damjan Marionebb27fb2016-02-25 16:26:01 +0100354else
Yichen Wang840cd122018-10-30 22:52:15 -0700355 $(error "This option currently works only on Ubuntu, Debian, RHEL, CentOS or openSUSE systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100356endif
Ole Troane4218be2019-05-07 10:32:40 +0200357 git config commit.template .git_commit_template.txt
Damjan Marionebb27fb2016-02-25 16:26:01 +0100358
Dave Wallacee7906902019-11-14 12:19:32 -0500359.PHONY: install-deps
360install-deps: install-dep
361
Damjan Marione17fdb52016-02-10 00:36:06 +0100362define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200363 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100364endef
365
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400366$(BR)/scripts/.version:
367ifneq ("$(wildcard /etc/redhat-release)","")
368 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
369else
370 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
371endif
372
Damjan Marionc06eeb02017-04-18 15:26:39 +0200373DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
374DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400375
Dave Wallacee7906902019-11-14 12:19:32 -0500376.PHONY: dist
Damjan Marionc06eeb02017-04-18 15:26:39 +0200377dist:
Thomas F Herbert8d487222017-07-18 15:48:03 -0400378 @if git rev-parse 2> /dev/null ; then \
379 git archive \
380 --prefix=$(DIST_SUBDIR)/ \
381 --format=tar \
382 -o $(DIST_FILE) \
383 HEAD ; \
384 git describe > $(BR)/.version ; \
385 else \
386 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
387 src/scripts/version > $(BR)/.version ; \
388 fi
Damjan Marionc06eeb02017-04-18 15:26:39 +0200389 @tar --append \
390 --file $(DIST_FILE) \
391 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
392 $(BR)/.version
393 @$(RM) $(BR)/.version $(DIST_FILE).xz
394 @xz -v --threads=0 $(DIST_FILE)
395 @$(RM) $(BR)/vpp-latest.tar.xz
396 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400397
Dave Wallacee7906902019-11-14 12:19:32 -0500398.PHONY: build
Damjan Marion55f99672018-03-15 19:36:41 +0100399build: $(BR)/.deps.ok
Damjan Marion9d7a7ba2018-03-14 20:58:39 +0100400 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100401
Dave Wallacee7906902019-11-14 12:19:32 -0500402.PHONY: wipedist
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400403wipedist:
Damjan Marionc06eeb02017-04-18 15:26:39 +0200404 @$(RM) $(BR)/*.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400405
Dave Wallacee7906902019-11-14 12:19:32 -0500406.PHONY: wipe
Damjan Marion55f99672018-03-15 19:36:41 +0100407wipe: wipedist test-wipe $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200408 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
Paul Vinciguerra05b5d1b2018-12-07 03:57:49 -0800409 @find . -type f -name "*.api.json" ! -path "./test/*" -exec rm {} \;
Damjan Marione17fdb52016-02-10 00:36:06 +0100410
Dave Wallacee7906902019-11-14 12:19:32 -0500411.PHONY: rebuild
Damjan Marione17fdb52016-02-10 00:36:06 +0100412rebuild: wipe build
413
Dave Wallacee7906902019-11-14 12:19:32 -0500414.PHONY: build-release
Damjan Marion55f99672018-03-15 19:36:41 +0100415build-release: $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200416 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100417
Dave Wallacee7906902019-11-14 12:19:32 -0500418.PHONY: wipe-release
Damjan Marion55f99672018-03-15 19:36:41 +0100419wipe-release: test-wipe $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200420 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100421
Dave Wallacee7906902019-11-14 12:19:32 -0500422.PHONY: rebuild-release
Damjan Marione17fdb52016-02-10 00:36:06 +0100423rebuild-release: wipe-release build-release
424
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700425libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
426
Klement Sekerab8c72a42018-11-08 11:21:39 +0100427export TEST_DIR ?= $(WS_ROOT)/test
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500428export RND_SEED ?= $(shell python3 -c 'import time; print(time.time())')
Klement Sekerab8c72a42018-11-08 11:21:39 +0100429
Damjan Marionf56b77a2016-10-03 19:44:57 +0200430define test
Neale Rannsb7d41fc2018-07-16 08:22:37 -0400431 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700432 $(eval libs:=lib lib64)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200433 make -C test \
Klement Sekerab8c72a42018-11-08 11:21:39 +0100434 VPP_BUILD_DIR=$(BR)/build-$(2)-native \
435 VPP_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
436 VPP_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
Dave Barach7d31ab22019-05-08 19:18:18 -0400437 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_api_test_plugins) \
Klement Sekerab8c72a42018-11-08 11:21:39 +0100438 VPP_INSTALL_PATH=$(BR)/install-$(2)-native/ \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700439 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
Klement Sekera87134932017-03-07 11:39:27 +0100440 EXTENDED_TESTS=$(EXTENDED_TESTS) \
vagrant937bf302017-04-07 01:48:47 +0000441 PYTHON=$(PYTHON) \
Klement Sekerad3e671e2017-09-29 12:36:37 +0200442 OS_ID=$(OS_ID) \
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500443 RND_SEED=$(RND_SEED) \
Klement Sekeraa3d933c2017-11-06 09:46:00 +0100444 CACHE_OUTPUT=$(CACHE_OUTPUT) \
Damjan Marion6484b3b2017-01-15 21:30:50 +0100445 $(3)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200446endef
447
Dave Wallacee7906902019-11-14 12:19:32 -0500448.PHONY: test
Damjan Marion55f99672018-03-15 19:36:41 +0100449test:
Damjan Marion374e2c52017-03-09 20:38:15 +0100450 $(call test,vpp,vpp,test)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200451
Dave Wallacee7906902019-11-14 12:19:32 -0500452.PHONY: test-debug
Damjan Marion55f99672018-03-15 19:36:41 +0100453test-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100454 $(call test,vpp,vpp_debug,test)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200455
Dave Wallacee7906902019-11-14 12:19:32 -0500456.PHONY: test-gcov
Dave Barachb757d1a2019-03-22 08:50:29 -0400457test-gcov:
458 $(call test,vpp,vpp_gcov,test)
459
Dave Wallacee7906902019-11-14 12:19:32 -0500460.PHONY: test-all
Damjan Marion55f99672018-03-15 19:36:41 +0100461test-all:
Michal Cmarada4e633e12019-01-31 10:57:40 +0100462 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp vom-install,)
Klement Sekera87134932017-03-07 11:39:27 +0100463 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100464 $(call test,vpp,vpp,test)
Klement Sekera87134932017-03-07 11:39:27 +0100465
Dave Wallacee7906902019-11-14 12:19:32 -0500466.PHONY: test-all-debug
Damjan Marion55f99672018-03-15 19:36:41 +0100467test-all-debug:
Michal Cmarada4e633e12019-01-31 10:57:40 +0100468 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp_debug vom-install,)
Klement Sekera87134932017-03-07 11:39:27 +0100469 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100470 $(call test,vpp,vpp_debug,test)
Klement Sekera87134932017-03-07 11:39:27 +0100471
Dave Wallacee7906902019-11-14 12:19:32 -0500472.PHONY: papi-wipe
473papi-wipe: test-wipe-papi
474 $(call banner,"This command is deprecated. Please use 'test-wipe-papi'")
475
476.PHONY: test-wipe-papi
477test-wipe-papi:
Paul Vinciguerra1f162052020-03-26 23:11:50 -0400478 @make -C test wipe-papi
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400479
Dave Wallacee7906902019-11-14 12:19:32 -0500480.PHONY: test-help
Klement Sekera277b89c2016-10-28 13:20:27 +0200481test-help:
482 @make -C test help
Klement Sekeraf62ae122016-10-11 11:47:09 +0200483
Dave Wallacee7906902019-11-14 12:19:32 -0500484.PHONY: test-wipe
Klement Sekera277b89c2016-10-28 13:20:27 +0200485test-wipe:
486 @make -C test wipe
487
Dave Wallacee7906902019-11-14 12:19:32 -0500488.PHONY: test-shell
Damjan Marion55f99672018-03-15 19:36:41 +0100489test-shell:
Klement Sekera993e0ed2017-03-16 09:14:59 +0100490 $(call test,vpp,vpp,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100491
Dave Wallacee7906902019-11-14 12:19:32 -0500492.PHONY: test-shell-debug
Damjan Marion55f99672018-03-15 19:36:41 +0100493test-shell-debug:
Klement Sekera993e0ed2017-03-16 09:14:59 +0100494 $(call test,vpp,vpp_debug,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100495
Dave Wallacee7906902019-11-14 12:19:32 -0500496.PHONY: test-shell-gcov
Dave Barach7d31ab22019-05-08 19:18:18 -0400497test-shell-gcov:
498 $(call test,vpp,vpp_gcov,shell)
499
Dave Wallacee7906902019-11-14 12:19:32 -0500500.PHONY: test-dep
Ed Kern56ccc232018-04-02 16:42:48 -0600501test-dep:
502 @make -C test test-dep
503
Dave Wallacee7906902019-11-14 12:19:32 -0500504.PHONY: test-doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200505test-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100506 @make -C test doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200507
Dave Wallacee7906902019-11-14 12:19:32 -0500508.PHONY: test-wipe-doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200509test-wipe-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100510 @make -C test wipe-doc
Damjan Marionf56b77a2016-10-03 19:44:57 +0200511
Dave Wallacee7906902019-11-14 12:19:32 -0500512.PHONY: test-cov
Damjan Marion55f99672018-03-15 19:36:41 +0100513test-cov:
Neale Ranns6a4c9af2019-06-27 08:13:35 +0000514 @make -C $(BR) PLATFORM=vpp TAG=vpp_gcov vom-install
Klement Sekera88d38c42017-03-21 08:27:18 +0100515 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100516 $(call test,vpp,vpp_gcov,cov)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100517
Dave Wallacee7906902019-11-14 12:19:32 -0500518.PHONY: test-wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100519test-wipe-cov:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100520 @make -C test wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100521
Dave Wallacef0797d12019-11-15 17:29:15 -0500522.PHONY: test-wipe-all
523test-wipe-all:
524 @make -C test wipe-all
525
Dave Wallacee7906902019-11-14 12:19:32 -0500526.PHONY: test-checkstyle
Klement Sekera72715ee2017-01-17 10:37:05 +0100527test-checkstyle:
528 @make -C test checkstyle
529
Dave Wallacee7906902019-11-14 12:19:32 -0500530.PHONY: test-refresh-deps
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200531test-refresh-deps:
532 @make -C test refresh-deps
533
Dave Wallacee7906902019-11-14 12:19:32 -0500534.PHONY: retest
Damjan Marionf56b77a2016-10-03 19:44:57 +0200535retest:
Damjan Marion374e2c52017-03-09 20:38:15 +0100536 $(call test,vpp,vpp,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200537
Dave Wallacee7906902019-11-14 12:19:32 -0500538.PHONY: retest-debug
Damjan Marionf56b77a2016-10-03 19:44:57 +0200539retest-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100540 $(call test,vpp,vpp_debug,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200541
Dave Wallacee7906902019-11-14 12:19:32 -0500542.PHONY: retest-all
543retest-all:
544 $(eval EXTENDED_TESTS=yes)
545 $(call test,vpp,vpp,retest)
546
547.PHONY: retest-all-debug
548retest-all-debug:
549 $(eval EXTENDED_TESTS=yes)
550 $(call test,vpp,vpp_debug,retest)
551
Damjan Marione17fdb52016-02-10 00:36:06 +0100552ifeq ("$(wildcard $(STARTUP_CONF))","")
553define run
554 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
555 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Mariona7775382016-07-07 17:56:48 +0200556 @cd $(STARTUP_DIR) && \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200557 $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100558endef
559else
560define run
Damjan Mariona7775382016-07-07 17:56:48 +0200561 @cd $(STARTUP_DIR) && \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200562 $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
Damjan Marione17fdb52016-02-10 00:36:06 +0100563endef
564endif
565
Damjan Marione6f90232016-03-16 22:49:05 +0100566%.files: .FORCE
567 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
568 \( -not -path './build-root*' -o -path \
569 './build-root/build-vpp_debug-native/dpdk*' \) > $@
570
571.FORCE:
572
Dave Wallacee7906902019-11-14 12:19:32 -0500573.PHONY: run
Damjan Marione17fdb52016-02-10 00:36:06 +0100574run:
Damjan Mariona7775382016-07-07 17:56:48 +0200575 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100576
Dave Wallacee7906902019-11-14 12:19:32 -0500577.PHONY: run-release
Damjan Marione17fdb52016-02-10 00:36:06 +0100578run-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200579 $(call run, $(BR)/install-$(PLATFORM)-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100580
Dave Wallacee7906902019-11-14 12:19:32 -0500581.PHONY: debug
Damjan Marione17fdb52016-02-10 00:36:06 +0100582debug:
Damjan Mariona7775382016-07-07 17:56:48 +0200583 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100584
Dave Wallacee7906902019-11-14 12:19:32 -0500585.PHONY: build-coverity
Damjan Marion005849e2018-07-19 14:39:40 +0200586build-coverity:
Dave Barach3ad77042017-01-04 17:24:32 -0500587 $(call make,$(PLATFORM)_coverity,install-packages)
588
Dave Wallacee7906902019-11-14 12:19:32 -0500589.PHONY: debug-release
Damjan Marione17fdb52016-02-10 00:36:06 +0100590debug-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200591 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100592
Dave Wallacee7906902019-11-14 12:19:32 -0500593.PHONY: build-vat
Damjan Marione17fdb52016-02-10 00:36:06 +0100594build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100595 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100596
Dave Wallacee7906902019-11-14 12:19:32 -0500597.PHONY: run-vat
Damjan Marione17fdb52016-02-10 00:36:06 +0100598run-vat:
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200599 @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100600
Dave Wallacee7906902019-11-14 12:19:32 -0500601.PHONY: pkg-deb
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100602pkg-deb:
Damjan Marion4d2f86a2019-01-18 13:28:22 +0100603 $(call make,$(PLATFORM),vpp-package-deb)
604
Dave Barach6d97e622020-03-18 10:14:40 -0400605.PHONY: pkg-snap
606pkg-snap:
607 cd extras/snap ; \
608 ./prep ; \
609 SNAPCRAFT_BUILD_ENVIRONMENT_MEMORY=8G \
610 SNAPCRAFT_BUILD_ENVIRONMENT_CPU=6 \
611 snapcraft --debug
612
613.PHONY: snap-clean
614snap-clean:
615 cd extras/snap ; \
616 snapcraft clean ; \
617 rm -f *.snap *.tgz
618
Dave Wallacee7906902019-11-14 12:19:32 -0500619.PHONY: vom-pkg-deb
620vom-pkg-deb: pkg-deb
Mohsin Kazmi752f5b42019-02-12 17:24:17 +0100621 $(call make,$(PLATFORM),vom-package-deb)
622
Dave Wallacee7906902019-11-14 12:19:32 -0500623.PHONY: pkg-deb-debug
Damjan Marion4d2f86a2019-01-18 13:28:22 +0100624pkg-deb-debug:
625 $(call make,$(PLATFORM)_debug,vpp-package-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100626
Dave Wallacee7906902019-11-14 12:19:32 -0500627.PHONY: vom-pkg-deb-debug
628vom-pkg-deb-debug: pkg-deb-debug
Mohsin Kazmi752f5b42019-02-12 17:24:17 +0100629 $(call make,$(PLATFORM)_debug,vom-package-deb)
630
Dave Wallacee7906902019-11-14 12:19:32 -0500631.PHONY: pkg-rpm
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100632pkg-rpm: dist
Damjan Marionc06eeb02017-04-18 15:26:39 +0200633 make -C extras/rpm
Damjan Marione6f90232016-03-16 22:49:05 +0100634
Dave Wallacee7906902019-11-14 12:19:32 -0500635.PHONY: pkg-srpm
Thomas F Herbertb60f4962017-07-19 19:17:15 -0400636pkg-srpm: dist
637 make -C extras/rpm srpm
638
Dave Wallacee7906902019-11-14 12:19:32 -0500639.PHONY: dpdk-install-dev
Damjan Marion2ce7f982017-01-09 20:24:50 +0100640dpdk-install-dev:
Paul Vinciguerra8e7ba4a2018-10-26 04:42:31 -0700641 $(call banner,"This command is deprecated. Please use 'make install-ext-deps'")
Damjan Marion4a6cb832018-09-18 18:41:38 +0200642 make -C build/external install-$(PKG)
643
Dave Wallacee7906902019-11-14 12:19:32 -0500644.PHONY: install-ext-deps
Damjan Marion4a6cb832018-09-18 18:41:38 +0200645install-ext-deps:
646 make -C build/external install-$(PKG)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100647
Dave Wallacee7906902019-11-14 12:19:32 -0500648.PHONY: install-ext-dep
649install-ext-dep: install-ext-deps
650
651.PHONY: json-api-files
Paul Vinciguerra9529feb2019-07-15 15:22:31 -0400652json-api-files:
653 $(WS_ROOT)/src/tools/vppapigen/generate_json.py
654
Dave Wallacee7906902019-11-14 12:19:32 -0500655.PHONY: json-api-files-debug
Paul Vinciguerra9529feb2019-07-15 15:22:31 -0400656json-api-files-debug:
657 $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target
658
Dave Wallacee7906902019-11-14 12:19:32 -0500659.PHONY: ctags
Damjan Marione6f90232016-03-16 22:49:05 +0100660ctags: ctags.files
661 @ctags --totals --tag-relative -L $<
662 @rm $<
663
Dave Wallacee7906902019-11-14 12:19:32 -0500664.PHONY: gtags
Keith Burns (alagalah)4b72a582016-07-02 17:54:36 -0700665gtags: ctags
666 @gtags --gtagslabel=ctags
667
Dave Wallacee7906902019-11-14 12:19:32 -0500668.PHONY: cscope
Damjan Marione6f90232016-03-16 22:49:05 +0100669cscope: cscope.files
670 @cscope -b -q -v
Marek Gradzki60c63c72016-04-26 08:01:31 +0200671
Damjan Marion13bcb922020-05-08 19:01:22 +0200672.PHONY: compdb
673compdb:
674 @ninja -C build-root/build-vpp_debug-native/vpp -t compdb > compile_commands.json
675
Dave Wallacee7906902019-11-14 12:19:32 -0500676.PHONY: checkstyle
Ole Troanf3aebda2020-01-03 16:37:27 +0100677checkstyle: checkfeaturelist
Damjan Marion24704852016-09-07 13:10:50 +0200678 @build-root/scripts/checkstyle.sh
679
Dave Wallacee7906902019-11-14 12:19:32 -0500680.PHONY: checkstyle-commit
681checkstyle-commit:
682 @extras/scripts/check_commit_msg.sh
683
684.PHONY: checkstyle-test
685checkstyle-test: test-checkstyle
686
687.PHONY: checkstyle-all
688checkstyle-all: checkstyle-commit checkstyle checkstyle-test
689
690.PHONY: fixstyle
Damjan Marion24704852016-09-07 13:10:50 +0200691fixstyle:
692 @build-root/scripts/checkstyle.sh --fix
Chris Lukeb5850972016-05-03 16:34:59 -0400693
Ole Troan5c318c72020-05-05 12:23:47 +0200694.PHONY: checkstyle-api
695checkstyle-api:
696 @extras/scripts/crcchecker.py --check-patch
697
Paul Vinciguerraea1a6512019-11-01 02:34:32 -0400698# necessary because Bug 1696324 - Update to python3.6 breaks PyYAML dependencies
699# Status: CLOSED CANTFIX
700# https://bugzilla.redhat.com/show_bug.cgi?id=1696324
Dave Wallacee7906902019-11-14 12:19:32 -0500701.PHONY: centos-pyyaml
Paul Vinciguerraea1a6512019-11-01 02:34:32 -0400702centos-pyyaml:
703ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-7)
704 @python3 -m pip install pyyaml
705endif
706ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
707 @sudo -E yum install $(CONFIRM) python3-pyyaml
708endif
709
Dave Wallacee7906902019-11-14 12:19:32 -0500710.PHONY: featurelist
Paul Vinciguerraea1a6512019-11-01 02:34:32 -0400711featurelist: centos-pyyaml
Ole Troan6a3064f2019-05-14 13:24:10 +0200712 @build-root/scripts/fts.py --all --markdown
713
Dave Wallacee7906902019-11-14 12:19:32 -0500714.PHONY: checkfeaturelist
Paul Vinciguerraea1a6512019-11-01 02:34:32 -0400715checkfeaturelist: centos-pyyaml
Ole Troanf3aebda2020-01-03 16:37:27 +0100716 @build-root/scripts/fts.py --validate --all
Ole Troan6a3064f2019-05-14 13:24:10 +0200717
Chris Luke1d1644c2016-05-13 13:41:36 -0400718#
719# Build the documentation
720#
721
Chris Luke54ccf222016-07-25 16:38:11 -0400722# Doxygen configuration and our utility scripts
723export DOXY_DIR ?= $(WS_ROOT)/doxygen
724
725define make-doxy
Damjan Marion6484b3b2017-01-15 21:30:50 +0100726 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
Chris Luke54ccf222016-07-25 16:38:11 -0400727endef
728
Dave Wallacee7906902019-11-14 12:19:32 -0500729.PHONY: bootstrap-doxygen
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100730bootstrap-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400731 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400732
Dave Wallacee7906902019-11-14 12:19:32 -0500733.PHONY: doxygen
Dave Wallace47e09272019-11-15 16:58:48 -0500734doxygen: bootstrap-doxygen
Chris Luke54ccf222016-07-25 16:38:11 -0400735 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400736
Dave Wallacee7906902019-11-14 12:19:32 -0500737.PHONY: wipe-doxygen
Chris Lukeb5850972016-05-03 16:34:59 -0400738wipe-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400739 $(call make-doxy)
740
jdenisco3138d722018-09-24 14:59:33 -0400741# Sphinx Documents
742export DOCS_DIR = $(WS_ROOT)/docs
743export VENV_DIR = $(WS_ROOT)/sphinx_venv
744export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts
745
Dave Wallacee7906902019-11-14 12:19:32 -0500746.PHONY: docs-venv
jdenisco3138d722018-09-24 14:59:33 -0400747docs-venv:
748 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv)
749
Dave Wallacee7906902019-11-14 12:19:32 -0500750.PHONY: docs
John DeNisco4f859682019-12-10 14:25:50 -0500751docs: $(DOCS_DIR)
jdenisco3138d722018-09-24 14:59:33 -0400752 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html)
753
Dave Wallacee7906902019-11-14 12:19:32 -0500754.PHONY: docs-clean
jdenisco3138d722018-09-24 14:59:33 -0400755docs-clean:
Dave Wallace47e09272019-11-15 16:58:48 -0500756 @rm -rf $(DOCS_DIR)/_build
757 @rm -rf $(VENV_DIR)
jdenisco3138d722018-09-24 14:59:33 -0400758
Dave Wallacee7906902019-11-14 12:19:32 -0500759.PHONY: pkg-verify
Dave Wallace7b8a30d2019-07-15 12:03:51 -0400760pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps
Ed Warnickeddff8a42016-11-22 17:57:30 +0000761 $(call banner,"Building for PLATFORM=vpp using gcc")
Peter Mikusad625f52017-05-31 15:23:59 +0000762 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
Damjan Marion686c1c82017-04-19 14:09:07 +0200763 $(call banner,"Building sample-plugin")
764 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
Damjan Marion23d4e8a2018-03-26 14:09:38 +0200765 $(call banner,"Building libmemif")
766 @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
Damjan Marion164e5f82018-04-25 19:11:15 +0200767 $(call banner,"Building VOM")
768 @make -C build-root PLATFORM=vpp TAG=vpp vom-install
Damjan Marion2ce7f982017-01-09 20:24:50 +0100769 $(call banner,"Building $(PKG) packages")
Peter Mikusad625f52017-05-31 15:23:59 +0000770 @make pkg-$(PKG)
YohanPipereaudef35a22019-07-10 14:00:14 +0200771ifeq ($(OS_ID),ubuntu)
772 $(call banner,"Building VOM $(PKG) package")
773 @make vom-pkg-deb
774endif
Dave Wallace7b8a30d2019-07-15 12:03:51 -0400775
Paul Vinciguerra86a94412018-10-26 05:55:18 -0700776MAKE_VERIFY_GATE_OS ?= ubuntu-18.04
Dave Wallacee7906902019-11-14 12:19:32 -0500777.PHONY: verify
Dave Wallace7b8a30d2019-07-15 12:03:51 -0400778verify: pkg-verify
Paul Vinciguerra86a94412018-10-26 05:55:18 -0700779ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS))
Paul Vinciguerra4bf84902019-07-31 00:34:05 -0400780 $(call banner,"Testing vppapigen")
781 @src/tools/vppapigen/test_vppapigen.py
Damjan Marion855e2682018-08-24 13:37:45 +0200782 $(call banner,"Running tests")
Damjan Mariona472f862017-10-10 19:01:06 +0200783 @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
Paul Vinciguerra86a94412018-10-26 05:55:18 -0700784else
785 $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)")
Damjan Marionaade2c52017-05-22 16:56:54 +0200786endif