blob: 7f3c4295e884d8df73eeeab6f7ce649db80a9e8c [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
Brian Brooks40b655c2017-09-22 12:26:34 -050023
Damjan Marionb1dab652017-06-30 11:51:41 +020024,:=,
25define disable_plugins
26$(if $(1), \
27 "plugins {" \
28 $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
29 " }" \
30 ,)
31endef
32
33MINIMAL_STARTUP_CONF=" \
34unix { \
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"
Damjan Marione17fdb52016-02-10 00:36:06 +010043
Damjan Marioneef4d992016-02-23 22:04:50 +010044GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
45
Damjan Marionc5e86812016-05-02 19:40:27 +020046#
47# OS Detection
48#
Chris Luke36d25062016-09-22 20:52:26 -040049# We allow Darwin (MacOS) for docs generation; VPP build will still fail.
50ifneq ($(shell uname),Darwin)
Damjan Marionc5e86812016-05-02 19:40:27 +020051OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
52OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
Chris Luke36d25062016-09-22 20:52:26 -040053endif
Damjan Marionc5e86812016-05-02 19:40:27 +020054
Gabriel Ganne898171a2017-01-23 12:08:58 +010055ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marion2ce7f982017-01-09 20:24:50 +010056PKG=deb
Marco Varlese19be50e2018-05-17 15:46:13 +020057else ifeq ($(filter rhel centos fedora opensuse opensuse-leap opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
Damjan Marion2ce7f982017-01-09 20:24:50 +010058PKG=rpm
59endif
60
Dave Wallaced756b352017-07-03 13:11:38 -040061# +libganglia1-dev if building the gmond plugin
62
Ole Troan9d420872017-10-12 13:06:35 +020063DEB_DEPENDS = curl build-essential autoconf automake ccache
Dave Wallaced756b352017-07-03 13:11:38 -040064DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd
Damjan Marion6bbf83a2017-01-10 10:39:21 +010065DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
Sergio Gonzalez Monroy6184db32017-10-27 08:58:38 +010066DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev
Ole Troane4a6d692019-03-13 18:08:42 +010067DEB_DEPENDS += python-all python3-all python3-setuptools python-dev
68DEB_DEPENDS += python-virtualenv python-pip libffi6 check
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -080069DEB_DEPENDS += libboost-all-dev libffi-dev python3-ply libmbedtls-dev
Ole Troan6a3064f2019-05-14 13:24:10 +020070DEB_DEPENDS += cmake ninja-build uuid-dev python3-jsonschema
Ed Warnicke027103e2016-05-05 18:03:27 -050071ifeq ($(OS_VERSION_ID),14.04)
Anton Ivanove6f3b462017-09-21 13:15:53 +010072 DEB_DEPENDS += libssl-dev
Damjan Marion9b6463d2017-05-29 12:29:05 +020073else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
Anton Ivanove6f3b462017-09-21 13:15:53 +010074 DEB_DEPENDS += libssl-dev
Damjan Marion9b6463d2017-05-29 12:29:05 +020075 APT_ARGS = -t jessie-backports
Anton Ivanove6f3b462017-09-21 13:15:53 +010076else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
Anton Ivanove6f3b462017-09-21 13:15:53 +010077 DEB_DEPENDS += libssl1.0-dev
Damjan Marion005849e2018-07-19 14:39:40 +020078else
Anton Ivanove6f3b462017-09-21 13:15:53 +010079 DEB_DEPENDS += libssl-dev
Ed Warnicke027103e2016-05-05 18:03:27 -050080endif
Damjan Marione17fdb52016-02-10 00:36:06 +010081
Michal Cmarada4e633e12019-01-31 10:57:40 +010082RPM_DEPENDS = redhat-lsb glibc-static
Gabriel Ganne555d9202017-09-06 10:44:07 +020083RPM_DEPENDS += apr-devel
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040084RPM_DEPENDS += numactl-devel
Thomas F Herberte4128912017-10-09 15:03:55 -040085RPM_DEPENDS += check check-devel
Neale Ranns812ed392017-10-16 04:20:13 -070086RPM_DEPENDS += boost boost-devel
Billy McFall28cf3b72018-01-15 17:54:52 -050087RPM_DEPENDS += selinux-policy selinux-policy-devel
Thomas F Herbert6eb61632018-11-27 15:57:30 -050088RPM_DEPENDS += ninja-build
Stephen Hemminger6fbef232018-10-15 12:52:30 -070089RPM_DEPENDS += libuuid-devel
jdeniscoe8692692019-02-26 09:19:24 -050090RPM_DEPENDS += mbedtls-devel
Klement Sekerad3e671e2017-09-29 12:36:37 +020091
Thomas F Herbert6eb61632018-11-27 15:57:30 -050092ifeq ($(OS_ID),fedora)
93 RPM_DEPENDS += dnf-utils
Thomas F Herbert66731782018-03-05 17:21:56 -050094 RPM_DEPENDS += subunit subunit-devel
Thomas F Herbert440751b2017-09-11 08:58:23 -040095 RPM_DEPENDS += compat-openssl10-devel
BenoƮt Ganne9e6c53b2019-04-05 19:04:22 +020096 RPM_DEPENDS += python3-devel python3-ply
Ole Troan6a3064f2019-05-14 13:24:10 +020097 RPM_DEPENDS += python3-virtualenv python3-jsonschema
Thomas F Herbert6eb61632018-11-27 15:57:30 -050098 RPM_DEPENDS += cmake
Thomas F Herbertbc1c8482017-05-17 19:00:07 -040099 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400100else
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500101 RPM_DEPENDS += yum-utils
Thomas F Herbert440751b2017-09-11 08:58:23 -0400102 RPM_DEPENDS += openssl-devel
Paul Vinciguerraccf65fb2019-04-05 06:45:56 -0700103 RPM_DEPENDS += python-devel python36-ply
104 RPM_DEPENDS += python36-devel python36-pip
Ole Troan6a3064f2019-05-14 13:24:10 +0200105 RPM_DEPENDS += python-virtualenv python36-jsonschema
Damjan Marion855e2682018-08-24 13:37:45 +0200106 RPM_DEPENDS += devtoolset-7
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500107 RPM_DEPENDS += cmake3
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400108 RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400109endif
Dave Wallaced756b352017-07-03 13:11:38 -0400110
111# +ganglia-devel if building the ganglia plugin
112
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400113RPM_DEPENDS += chrpath libffi-devel rpm-build
Paul Vinciguerra15388242019-02-27 11:15:04 -0800114# lowercase- replace spaces with dashes.
115SUSE_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 -0600116SUSE_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 +0200117RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800118RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python3-ply
Marco Varlesefedc4552017-12-12 11:06:17 +0100119
Michal Cmarada4e633e12019-01-31 10:57:40 +0100120RPM_SUSE_DEVEL_DEPS = glibc-devel-static libnuma-devel
Stephen Hemminger6fbef232018-10-15 12:52:30 -0700121RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel libuuid-devel
Marco Varlesefedc4552017-12-12 11:06:17 +0100122
123RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
124RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
125
Marco Varlesedb417762017-10-24 17:02:04 +0200126RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
Marco Varlese5f1231c2017-10-10 16:43:14 +0200127
128ifeq ($(OS_ID),opensuse)
Paul Vinciguerra15388242019-02-27 11:15:04 -0800129ifeq ($(SUSE_NAME),tumbleweed)
Florin Coras223548d2018-12-27 09:07:32 -0800130 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 -0800131 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
Marco Varlese5f1231c2017-10-10 16:43:14 +0200132endif
Ed Kerne3ae09f2018-04-06 14:52:54 -0600133ifeq ($(SUSE_ID),15.0)
Ed Kernfd9d04d2019-02-19 10:27:23 -0700134 RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800135 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
Ed Kerne3ae09f2018-04-06 14:52:54 -0600136else
Florin Coras223548d2018-12-27 09:07:32 -0800137 RPM_SUSE_DEVEL_DEPS += libboost_headers1_68_0-devel-1.68.0 gcc6
Ed Kerne3ae09f2018-04-06 14:52:54 -0600138 RPM_SUSE_PYTHON_DEPS += python-virtualenv
139endif
Marco Varlese5f1231c2017-10-10 16:43:14 +0200140endif
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200141
Ed Kern947fe5e2018-04-26 17:13:17 -0600142ifeq ($(OS_ID),opensuse-leap)
143ifeq ($(SUSE_ID),15.0)
BenoƮt Ganneec6e8d22019-03-26 10:27:57 +0100144 RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc git curl
Paul Vinciguerra7e0c48e2019-02-01 19:37:45 -0800145 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
Ed Kern947fe5e2018-04-26 17:13:17 -0600146endif
147endif
148
Marco Varlesedb417762017-10-24 17:02:04 +0200149RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
150
Damjan Marion0df78dd2016-03-29 22:37:02 +0200151ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +0100152 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
153endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100154
Damjan Marionc5e86812016-05-02 19:40:27 +0200155ifeq ($(findstring y,$(UNATTENDED)),y)
156CONFIRM=-y
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700157FORCE=--force-yes
Damjan Marionc5e86812016-05-02 19:40:27 +0200158endif
159
Damjan Marion0dc3f192017-05-31 19:25:08 +0200160TARGETS = vpp
161
162ifneq ($(SAMPLE_PLUGIN),no)
163TARGETS += sample-plugin
164endif
165
Damjan Marion55f99672018-03-15 19:36:41 +0100166.PHONY: help wipe wipe-release build build-release rebuild rebuild-release
Damjan Marione17fdb52016-02-10 00:36:06 +0100167.PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
Damjan Marioncb034b92016-12-28 18:38:59 +0100168.PHONY: ctags cscope
Klement Sekera277b89c2016-10-28 13:20:27 +0200169.PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
Juraj Sloboda0279b292016-11-16 19:50:24 +0100170.PHONY: test-cov test-wipe-cov
Damjan Marione17fdb52016-02-10 00:36:06 +0100171
Damjan Marion4a6cb832018-09-18 18:41:38 +0200172define banner
173 @echo "========================================================================"
174 @echo " $(1)"
175 @echo "========================================================================"
176 @echo " "
177endef
178
Damjan Marione17fdb52016-02-10 00:36:06 +0100179help:
180 @echo "Make Targets:"
Damjan Marionebb27fb2016-02-25 16:26:01 +0100181 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +0100182 @echo " wipe - wipe all products of debug build "
183 @echo " wipe-release - wipe all products of release build "
184 @echo " build - build debug binaries"
185 @echo " build-release - build release binaries"
Dave Barach3ad77042017-01-04 17:24:32 -0500186 @echo " build-coverity - build coverity artifacts"
Damjan Marione17fdb52016-02-10 00:36:06 +0100187 @echo " rebuild - wipe and build debug binares"
188 @echo " rebuild-release - wipe and build release binares"
189 @echo " run - run debug binary"
190 @echo " run-release - run release binary"
191 @echo " debug - run debug binary with debugger"
192 @echo " debug-release - run release binary with debugger"
Klement Sekera87134932017-03-07 11:39:27 +0100193 @echo " test - build and run (basic) functional tests"
194 @echo " test-debug - build and run (basic) functional tests (debug build)"
195 @echo " test-all - build and run (all) functional tests"
196 @echo " test-all-debug - build and run (all) functional tests (debug build)"
Dave Barachb757d1a2019-03-22 08:50:29 -0400197 @echo " test-gcov - build and run functional tests (gcov build)"
Klement Sekeraa86e2892017-03-09 08:01:52 +0100198 @echo " test-shell - enter shell with test environment"
199 @echo " test-shell-debug - enter shell with test environment (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200200 @echo " test-wipe - wipe files generated by unit tests"
Damjan Marionf56b77a2016-10-03 19:44:57 +0200201 @echo " retest - run functional tests"
202 @echo " retest-debug - run functional tests (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200203 @echo " test-help - show help on test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100204 @echo " run-vat - run vpp-api-test tool"
205 @echo " pkg-deb - build DEB packages"
Steven Luong18be9b92019-02-22 11:11:14 -0800206 @echo " pkg-deb-debug - build DEB debug packages"
Mohsin Kazmi752f5b42019-02-12 17:24:17 +0100207 @echo " vom-pkg-deb - build vom DEB packages"
Steven Luong18be9b92019-02-22 11:11:14 -0800208 @echo " vom-pkg-deb-debug - build vom DEB debug packages"
Damjan Marione17fdb52016-02-10 00:36:06 +0100209 @echo " pkg-rpm - build RPM packages"
Damjan Marion4a6cb832018-09-18 18:41:38 +0200210 @echo " install-ext-deps - install external development dependencies"
Damjan Marione6f90232016-03-16 22:49:05 +0100211 @echo " ctags - (re)generate ctags database"
Damjan Mariona7775382016-07-07 17:56:48 +0200212 @echo " gtags - (re)generate gtags database"
Damjan Marione6f90232016-03-16 22:49:05 +0100213 @echo " cscope - (re)generate cscope database"
Damjan Marion24704852016-09-07 13:10:50 +0200214 @echo " checkstyle - check coding style"
215 @echo " fixstyle - fix coding style"
Chris Luke1d1644c2016-05-13 13:41:36 -0400216 @echo " doxygen - (re)generate documentation"
Chris Luke54ccf222016-07-25 16:38:11 -0400217 @echo " bootstrap-doxygen - setup Doxygen dependencies"
Chris Luke1d1644c2016-05-13 13:41:36 -0400218 @echo " wipe-doxygen - wipe all generated documentation"
Ole Troan6a3064f2019-05-14 13:24:10 +0200219 @echo " checkfeaturelist - check FEATURE.yaml according to schema"
220 @echo " featurelist - dump feature list in markdown"
jdenisco3138d722018-09-24 14:59:33 -0400221 @echo " docs - Build the Sphinx documentation"
222 @echo " docs-venv - Build the virtual environment for the Sphinx docs"
223 @echo " docs-clean - Remove the generated files from the Sphinx docs"
Klement Sekera277b89c2016-10-28 13:20:27 +0200224 @echo " test-doc - generate documentation for test framework"
225 @echo " test-wipe-doc - wipe documentation for test framework"
Juraj Sloboda0279b292016-11-16 19:50:24 +0100226 @echo " test-cov - generate code coverage report for test framework"
227 @echo " test-wipe-cov - wipe code coverage report for test framework"
Klement Sekera72715ee2017-01-17 10:37:05 +0100228 @echo " test-checkstyle - check PEP8 compliance for test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100229 @echo ""
230 @echo "Make Arguments:"
Damjan Marionb1dab652017-06-30 11:51:41 +0200231 @echo " V=[0|1] - set build verbosity level"
232 @echo " STARTUP_CONF=<path> - startup configuration file"
233 @echo " (e.g. /etc/vpp/startup.conf)"
234 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
235 @echo " It also sets STARTUP_CONF if"
236 @echo " startup.conf file is present"
237 @echo " GDB=<path> - gdb binary to use for debugging"
238 @echo " PLATFORM=<name> - target platform. default is vpp"
239 @echo " TEST=<filter> - apply filter to test set, see test-help"
240 @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to"
241 @echo " autogenerated startup.conf"
242 @echo " (e.g. \"no-pci\" )"
243 @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin"
244 @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which"
245 @echo " should not be loaded"
Damjan Marione17fdb52016-02-10 00:36:06 +0100246 @echo ""
Klement Sekera277b89c2016-10-28 13:20:27 +0200247 @echo "Current Argument Values:"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200248 @echo " V = $(V)"
249 @echo " STARTUP_CONF = $(STARTUP_CONF)"
250 @echo " STARTUP_DIR = $(STARTUP_DIR)"
251 @echo " GDB = $(GDB)"
252 @echo " PLATFORM = $(PLATFORM)"
253 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200254 @echo " DPDK_CONFIG = $(DPDK_CONFIG)"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200255 @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200256 @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)"
Damjan Marione17fdb52016-02-10 00:36:06 +0100257
Damjan Marion55f99672018-03-15 19:36:41 +0100258$(BR)/.deps.ok:
Damjan Marionc21d59f2016-11-19 12:04:34 +0100259ifeq ($(findstring y,$(UNATTENDED)),y)
260 make install-dep
261endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200262ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marione17fdb52016-02-10 00:36:06 +0100263 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
264 if [ -n "$$MISSING" ] ; then \
265 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +0100266 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +0100267 exit 1 ; \
268 fi ; \
269 exit 0
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400270else ifneq ("$(wildcard /etc/redhat-release)","")
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400271 @for i in $(RPM_DEPENDS) ; do \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400272 RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3) ; \
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400273 MISSING+=$$(rpm -q $$RPM | grep "^package") ; \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400274 done ; \
275 if [ -n "$$MISSING" ] ; then \
276 echo "Please install missing RPMs: \n$$MISSING\n" ; \
277 echo "by executing \"make install-dep\"\n" ; \
278 exit 1 ; \
279 fi ; \
280 exit 0
Damjan Marione17fdb52016-02-10 00:36:06 +0100281endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100282 @touch $@
283
Damjan Marion55f99672018-03-15 19:36:41 +0100284bootstrap:
285 @echo "'make bootstrap' is not needed anymore"
Damjan Marione17fdb52016-02-10 00:36:06 +0100286
Damjan Marionebb27fb2016-02-25 16:26:01 +0100287install-dep:
Damjan Marion9b6463d2017-05-29 12:29:05 +0200288ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marionc5e86812016-05-02 19:40:27 +0200289ifeq ($(OS_VERSION_ID),14.04)
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700290 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
Damjan Marionc5e86812016-05-02 19:40:27 +0200291endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200292ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
293 @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
294 || ( echo "Please install jessie-backports" ; exit 1 )
295endif
Ed Warnickeeb82e7f2017-02-01 16:08:51 -0800296 @sudo -E apt-get update
Damjan Marion9b6463d2017-05-29 12:29:05 +0200297 @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500298else ifneq ("$(wildcard /etc/redhat-release)","")
Yichen Wang840cd122018-10-30 22:52:15 -0700299ifeq ($(OS_ID),rhel)
300 @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms
Yichen Wang00cbd572019-02-04 22:27:20 -0800301 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
302 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
303 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
Yichen Wang840cd122018-10-30 22:52:15 -0700304else ifeq ($(OS_ID),centos)
drenfong.wang6dd5e342019-01-15 08:24:26 +0000305 @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release
Yichen Wang840cd122018-10-30 22:52:15 -0700306 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
Gabriel Ganneb17402e2017-01-02 16:44:21 +0100307 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
Florin Coras371ca502018-02-21 12:07:41 -0800308 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
Thomas F Herbert6eb61632018-11-27 15:57:30 -0500309else ifeq ($(OS_ID),fedora)
310 @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
311 @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
312 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
313endif
Marco Varlese23722e62018-08-20 12:21:30 +0200314else ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
Marco Varlese50ec7212017-10-10 09:30:33 +0200315 @sudo -E zypper refresh
316 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Ed Kern947fe5e2018-04-26 17:13:17 -0600317else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
318 @sudo -E zypper refresh
Florin Coras223548d2018-12-27 09:07:32 -0800319 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Ed Kern6604dde2018-08-20 11:05:03 -0600320else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
321 @sudo -E zypper refresh
322 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Damjan Marionebb27fb2016-02-25 16:26:01 +0100323else
Yichen Wang840cd122018-10-30 22:52:15 -0700324 $(error "This option currently works only on Ubuntu, Debian, RHEL, CentOS or openSUSE systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100325endif
Ole Troane4218be2019-05-07 10:32:40 +0200326 git config commit.template .git_commit_template.txt
Damjan Marionebb27fb2016-02-25 16:26:01 +0100327
Damjan Marione17fdb52016-02-10 00:36:06 +0100328define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200329 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100330endef
331
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400332$(BR)/scripts/.version:
333ifneq ("$(wildcard /etc/redhat-release)","")
334 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
335else
336 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
337endif
338
Damjan Marionc06eeb02017-04-18 15:26:39 +0200339DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
340DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400341
Damjan Marionc06eeb02017-04-18 15:26:39 +0200342dist:
Thomas F Herbert8d487222017-07-18 15:48:03 -0400343 @if git rev-parse 2> /dev/null ; then \
344 git archive \
345 --prefix=$(DIST_SUBDIR)/ \
346 --format=tar \
347 -o $(DIST_FILE) \
348 HEAD ; \
349 git describe > $(BR)/.version ; \
350 else \
351 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
352 src/scripts/version > $(BR)/.version ; \
353 fi
Damjan Marionc06eeb02017-04-18 15:26:39 +0200354 @tar --append \
355 --file $(DIST_FILE) \
356 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
357 $(BR)/.version
358 @$(RM) $(BR)/.version $(DIST_FILE).xz
359 @xz -v --threads=0 $(DIST_FILE)
360 @$(RM) $(BR)/vpp-latest.tar.xz
361 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400362
Damjan Marion55f99672018-03-15 19:36:41 +0100363build: $(BR)/.deps.ok
Damjan Marion9d7a7ba2018-03-14 20:58:39 +0100364 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100365
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400366wipedist:
Damjan Marionc06eeb02017-04-18 15:26:39 +0200367 @$(RM) $(BR)/*.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400368
Damjan Marion55f99672018-03-15 19:36:41 +0100369wipe: wipedist test-wipe $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200370 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
Paul Vinciguerra05b5d1b2018-12-07 03:57:49 -0800371 @find . -type f -name "*.api.json" ! -path "./test/*" -exec rm {} \;
Damjan Marione17fdb52016-02-10 00:36:06 +0100372
373rebuild: wipe build
374
Damjan Marion55f99672018-03-15 19:36:41 +0100375build-release: $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200376 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100377
Damjan Marion55f99672018-03-15 19:36:41 +0100378wipe-release: test-wipe $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200379 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100380
381rebuild-release: wipe-release build-release
382
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700383libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
384
Klement Sekerab8c72a42018-11-08 11:21:39 +0100385export TEST_DIR ?= $(WS_ROOT)/test
386
Damjan Marionf56b77a2016-10-03 19:44:57 +0200387define test
Neale Rannsb7d41fc2018-07-16 08:22:37 -0400388 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700389 $(eval libs:=lib lib64)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200390 make -C test \
Klement Sekerab8c72a42018-11-08 11:21:39 +0100391 VPP_BUILD_DIR=$(BR)/build-$(2)-native \
392 VPP_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
393 VPP_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
Dave Barach7d31ab22019-05-08 19:18:18 -0400394 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_api_test_plugins) \
Klement Sekerab8c72a42018-11-08 11:21:39 +0100395 VPP_INSTALL_PATH=$(BR)/install-$(2)-native/ \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700396 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
Klement Sekera87134932017-03-07 11:39:27 +0100397 EXTENDED_TESTS=$(EXTENDED_TESTS) \
vagrant937bf302017-04-07 01:48:47 +0000398 PYTHON=$(PYTHON) \
Klement Sekerad3e671e2017-09-29 12:36:37 +0200399 OS_ID=$(OS_ID) \
Klement Sekeraa3d933c2017-11-06 09:46:00 +0100400 CACHE_OUTPUT=$(CACHE_OUTPUT) \
Damjan Marion6484b3b2017-01-15 21:30:50 +0100401 $(3)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200402endef
403
Damjan Marion55f99672018-03-15 19:36:41 +0100404test:
Damjan Marion374e2c52017-03-09 20:38:15 +0100405 $(call test,vpp,vpp,test)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200406
Damjan Marion55f99672018-03-15 19:36:41 +0100407test-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100408 $(call test,vpp,vpp_debug,test)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200409
Dave Barachb757d1a2019-03-22 08:50:29 -0400410test-gcov:
411 $(call test,vpp,vpp_gcov,test)
412
Damjan Marion55f99672018-03-15 19:36:41 +0100413test-all:
Michal Cmarada4e633e12019-01-31 10:57:40 +0100414 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp vom-install,)
Klement Sekera87134932017-03-07 11:39:27 +0100415 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100416 $(call test,vpp,vpp,test)
Klement Sekera87134932017-03-07 11:39:27 +0100417
Damjan Marion55f99672018-03-15 19:36:41 +0100418test-all-debug:
Michal Cmarada4e633e12019-01-31 10:57:40 +0100419 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp_debug vom-install,)
Klement Sekera87134932017-03-07 11:39:27 +0100420 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100421 $(call test,vpp,vpp_debug,test)
Klement Sekera87134932017-03-07 11:39:27 +0100422
Klement Sekera277b89c2016-10-28 13:20:27 +0200423test-help:
424 @make -C test help
Klement Sekeraf62ae122016-10-11 11:47:09 +0200425
Klement Sekera277b89c2016-10-28 13:20:27 +0200426test-wipe:
427 @make -C test wipe
428
Damjan Marion55f99672018-03-15 19:36:41 +0100429test-shell:
Klement Sekera993e0ed2017-03-16 09:14:59 +0100430 $(call test,vpp,vpp,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100431
Damjan Marion55f99672018-03-15 19:36:41 +0100432test-shell-debug:
Klement Sekera993e0ed2017-03-16 09:14:59 +0100433 $(call test,vpp,vpp_debug,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100434
Dave Barach7d31ab22019-05-08 19:18:18 -0400435test-shell-gcov:
436 $(call test,vpp,vpp_gcov,shell)
437
Ed Kern56ccc232018-04-02 16:42:48 -0600438test-dep:
439 @make -C test test-dep
440
Klement Sekera277b89c2016-10-28 13:20:27 +0200441test-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100442 @make -C test doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200443
444test-wipe-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100445 @make -C test wipe-doc
Damjan Marionf56b77a2016-10-03 19:44:57 +0200446
Damjan Marion55f99672018-03-15 19:36:41 +0100447test-cov:
Klement Sekera593635d2019-02-07 19:56:50 +0100448 @make -C $(BR) PLATFORM=vpp TAG=vpp_gcov vom-install japi-install
Klement Sekera88d38c42017-03-21 08:27:18 +0100449 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100450 $(call test,vpp,vpp_gcov,cov)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100451
452test-wipe-cov:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100453 @make -C test wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100454
Klement Sekera72715ee2017-01-17 10:37:05 +0100455test-checkstyle:
456 @make -C test checkstyle
457
Damjan Marionf56b77a2016-10-03 19:44:57 +0200458retest:
Damjan Marion374e2c52017-03-09 20:38:15 +0100459 $(call test,vpp,vpp,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200460
461retest-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100462 $(call test,vpp,vpp_debug,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200463
Damjan Marione17fdb52016-02-10 00:36:06 +0100464ifeq ("$(wildcard $(STARTUP_CONF))","")
465define run
466 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
467 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Mariona7775382016-07-07 17:56:48 +0200468 @cd $(STARTUP_DIR) && \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200469 $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100470endef
471else
472define run
Damjan Mariona7775382016-07-07 17:56:48 +0200473 @cd $(STARTUP_DIR) && \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200474 $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
Damjan Marione17fdb52016-02-10 00:36:06 +0100475endef
476endif
477
Damjan Marione6f90232016-03-16 22:49:05 +0100478%.files: .FORCE
479 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
480 \( -not -path './build-root*' -o -path \
481 './build-root/build-vpp_debug-native/dpdk*' \) > $@
482
483.FORCE:
484
Damjan Marione17fdb52016-02-10 00:36:06 +0100485run:
Damjan Mariona7775382016-07-07 17:56:48 +0200486 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100487
488run-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200489 $(call run, $(BR)/install-$(PLATFORM)-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100490
491debug:
Damjan Mariona7775382016-07-07 17:56:48 +0200492 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100493
Damjan Marion005849e2018-07-19 14:39:40 +0200494build-coverity:
Dave Barach3ad77042017-01-04 17:24:32 -0500495 $(call make,$(PLATFORM)_coverity,install-packages)
496
Damjan Marione17fdb52016-02-10 00:36:06 +0100497debug-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200498 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100499
500build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100501 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100502
503run-vat:
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200504 @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100505
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100506pkg-deb:
Damjan Marion4d2f86a2019-01-18 13:28:22 +0100507 $(call make,$(PLATFORM),vpp-package-deb)
508
Mohsin Kazmi752f5b42019-02-12 17:24:17 +0100509vom-pkg-deb:
510 $(call make,$(PLATFORM),vpp-package-deb)
511 $(call make,$(PLATFORM),vom-package-deb)
512
Damjan Marion4d2f86a2019-01-18 13:28:22 +0100513pkg-deb-debug:
514 $(call make,$(PLATFORM)_debug,vpp-package-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100515
Mohsin Kazmi752f5b42019-02-12 17:24:17 +0100516vom-pkg-deb-debug:
517 $(call make,$(PLATFORM)_debug,vpp-package-deb)
518 $(call make,$(PLATFORM)_debug,vom-package-deb)
519
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100520pkg-rpm: dist
Damjan Marionc06eeb02017-04-18 15:26:39 +0200521 make -C extras/rpm
Damjan Marione6f90232016-03-16 22:49:05 +0100522
Thomas F Herbertb60f4962017-07-19 19:17:15 -0400523pkg-srpm: dist
524 make -C extras/rpm srpm
525
Damjan Marion2ce7f982017-01-09 20:24:50 +0100526dpdk-install-dev:
Paul Vinciguerra8e7ba4a2018-10-26 04:42:31 -0700527 $(call banner,"This command is deprecated. Please use 'make install-ext-deps'")
Damjan Marion4a6cb832018-09-18 18:41:38 +0200528 make -C build/external install-$(PKG)
529
530install-ext-deps:
531 make -C build/external install-$(PKG)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100532
Damjan Marione6f90232016-03-16 22:49:05 +0100533ctags: ctags.files
534 @ctags --totals --tag-relative -L $<
535 @rm $<
536
Keith Burns (alagalah)4b72a582016-07-02 17:54:36 -0700537gtags: ctags
538 @gtags --gtagslabel=ctags
539
Damjan Marione6f90232016-03-16 22:49:05 +0100540cscope: cscope.files
541 @cscope -b -q -v
Marek Gradzki60c63c72016-04-26 08:01:31 +0200542
Damjan Marion24704852016-09-07 13:10:50 +0200543checkstyle:
544 @build-root/scripts/checkstyle.sh
545
546fixstyle:
547 @build-root/scripts/checkstyle.sh --fix
Chris Lukeb5850972016-05-03 16:34:59 -0400548
Ole Troan6a3064f2019-05-14 13:24:10 +0200549featurelist:
550 @build-root/scripts/fts.py --all --markdown
551
552checkfeaturelist:
553 @build-root/scripts/fts.py --validate --git-status
554
Chris Luke1d1644c2016-05-13 13:41:36 -0400555#
556# Build the documentation
557#
558
Chris Luke54ccf222016-07-25 16:38:11 -0400559# Doxygen configuration and our utility scripts
560export DOXY_DIR ?= $(WS_ROOT)/doxygen
561
562define make-doxy
Damjan Marion6484b3b2017-01-15 21:30:50 +0100563 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
Chris Luke54ccf222016-07-25 16:38:11 -0400564endef
565
566.PHONY: bootstrap-doxygen doxygen wipe-doxygen
567
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100568bootstrap-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400569 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400570
Chris Lukeb5850972016-05-03 16:34:59 -0400571doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400572 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400573
574wipe-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400575 $(call make-doxy)
576
jdenisco3138d722018-09-24 14:59:33 -0400577# Sphinx Documents
578export DOCS_DIR = $(WS_ROOT)/docs
579export VENV_DIR = $(WS_ROOT)/sphinx_venv
580export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts
581
582.PHONY: docs-venv docs docs-clean
583
584docs-venv:
585 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv)
586
587docs: $(DOCS_DIR)
588 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html)
589
590docs-clean:
591 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh clean)
592
Damjan Marion4a6cb832018-09-18 18:41:38 +0200593verify: install-dep $(BR)/.deps.ok install-ext-deps
Ed Warnickeddff8a42016-11-22 17:57:30 +0000594 $(call banner,"Building for PLATFORM=vpp using gcc")
Peter Mikusad625f52017-05-31 15:23:59 +0000595 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
Damjan Marion686c1c82017-04-19 14:09:07 +0200596 $(call banner,"Building sample-plugin")
597 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
Damjan Marion23d4e8a2018-03-26 14:09:38 +0200598 $(call banner,"Building libmemif")
599 @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
Damjan Marion164e5f82018-04-25 19:11:15 +0200600 $(call banner,"Building VOM")
601 @make -C build-root PLATFORM=vpp TAG=vpp vom-install
Damjan Marion2ce7f982017-01-09 20:24:50 +0100602 $(call banner,"Building $(PKG) packages")
Peter Mikusad625f52017-05-31 15:23:59 +0000603 @make pkg-$(PKG)
Damjan Marion2bfb9e12018-10-25 12:25:38 +0200604ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-18.04)
Damjan Marion855e2682018-08-24 13:37:45 +0200605 $(call banner,"Running tests")
Damjan Mariona472f862017-10-10 19:01:06 +0200606 @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
Damjan Marionaade2c52017-05-22 16:56:54 +0200607endif