blob: 36c7a5a741d00aaed10f1837797a6cb8171e3c58 [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
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020067DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6 check
Florin Coras371ca502018-02-21 12:07:41 -080068DEB_DEPENDS += libboost-all-dev libffi-dev python-ply libmbedtls-dev
Damjan Marion612dd6a2018-07-30 12:45:07 +020069DEB_DEPENDS += cmake ninja-build
Ed Warnicke027103e2016-05-05 18:03:27 -050070ifeq ($(OS_VERSION_ID),14.04)
71 DEB_DEPENDS += openjdk-8-jdk-headless
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)
74 DEB_DEPENDS += openjdk-8-jdk-headless
Anton Ivanove6f3b462017-09-21 13:15:53 +010075 DEB_DEPENDS += libssl-dev
Damjan Marion9b6463d2017-05-29 12:29:05 +020076 APT_ARGS = -t jessie-backports
Anton Ivanove6f3b462017-09-21 13:15:53 +010077else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
Ed Warnicke027103e2016-05-05 18:03:27 -050078 DEB_DEPENDS += default-jdk-headless
Anton Ivanove6f3b462017-09-21 13:15:53 +010079 DEB_DEPENDS += libssl1.0-dev
Damjan Marion005849e2018-07-19 14:39:40 +020080else
Dave Wallacef91fe3b2017-09-25 15:00:36 -040081 DEB_DEPENDS += default-jdk-headless
Anton Ivanove6f3b462017-09-21 13:15:53 +010082 DEB_DEPENDS += libssl-dev
Ed Warnicke027103e2016-05-05 18:03:27 -050083endif
Damjan Marione17fdb52016-02-10 00:36:06 +010084
Damjan Marion6bbf83a2017-01-10 10:39:21 +010085RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
Gabriel Ganne555d9202017-09-06 10:44:07 +020086RPM_DEPENDS += apr-devel
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040087RPM_DEPENDS += numactl-devel
Thomas F Herberte4128912017-10-09 15:03:55 -040088RPM_DEPENDS += check check-devel
Neale Ranns812ed392017-10-16 04:20:13 -070089RPM_DEPENDS += boost boost-devel
Billy McFall28cf3b72018-01-15 17:54:52 -050090RPM_DEPENDS += selinux-policy selinux-policy-devel
Damjan Marion855e2682018-08-24 13:37:45 +020091RPM_DEPENDS += cmake3 ninja-build
Klement Sekerad3e671e2017-09-29 12:36:37 +020092
Igor Mikhailov (imichail)34208962017-05-02 00:03:09 -070093ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
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 += openssl-devel
Gabriel Ganneb2957822018-01-25 10:03:13 +010096 RPM_DEPENDS += python-devel python2-ply
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040097 RPM_DEPENDS += python2-virtualenv
Thomas F Herbert5f56c092018-04-05 16:09:58 -040098 RPM_DEPENDS += mbedtls-devel
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040099 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Thomas F Herbertda78c852017-08-31 10:22:57 -0400100else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
Thomas F Herbert66731782018-03-05 17:21:56 -0500101 RPM_DEPENDS += subunit subunit-devel
Thomas F Herbert440751b2017-09-11 08:58:23 -0400102 RPM_DEPENDS += compat-openssl10-devel
Gabriel Ganneb2957822018-01-25 10:03:13 +0100103 RPM_DEPENDS += python2-devel python2-ply
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400104 RPM_DEPENDS += python2-virtualenv
Thomas F Herbert5f56c092018-04-05 16:09:58 -0400105 RPM_DEPENDS += mbedtls-devel
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400106 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400107else
Thomas F Herbert440751b2017-09-11 08:58:23 -0400108 RPM_DEPENDS += openssl-devel
Jon Loeliger28227ad2018-01-24 13:47:46 -0600109 RPM_DEPENDS += python-devel python-ply
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400110 RPM_DEPENDS += python-virtualenv
Damjan Marion855e2682018-08-24 13:37:45 +0200111 RPM_DEPENDS += devtoolset-7
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400112 RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400113endif
Dave Wallaced756b352017-07-03 13:11:38 -0400114
115# +ganglia-devel if building the ganglia plugin
116
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400117RPM_DEPENDS += chrpath libffi-devel rpm-build
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500118
Marco Varlesedb417762017-10-24 17:02:04 +0200119SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
Ed Kerne3ae09f2018-04-06 14:52:54 -0600120SUSE_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 +0200121RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
Marco Varlese23722e62018-08-20 12:21:30 +0200122RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python-ply
Marco Varlesefedc4552017-12-12 11:06:17 +0100123
124RPM_SUSE_DEVEL_DEPS = glibc-devel-static java-1_8_0-openjdk-devel libnuma-devel
Florin Coras371ca502018-02-21 12:07:41 -0800125RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel
Marco Varlesefedc4552017-12-12 11:06:17 +0100126
127RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
128RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
129
Marco Varlesedb417762017-10-24 17:02:04 +0200130RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
Marco Varlese5f1231c2017-10-10 16:43:14 +0200131
132ifeq ($(OS_ID),opensuse)
Ed Kerne3ae09f2018-04-06 14:52:54 -0600133ifeq ($(SUSE_NAME),Tumbleweed)
Marco Varlesefedc4552017-12-12 11:06:17 +0100134 RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc
Marco Varlese69220402018-07-04 14:23:08 +0200135 RPM_SUSE_PYTHON_DEPS += python2-ply python2-virtualenv
Marco Varlese5f1231c2017-10-10 16:43:14 +0200136endif
Ed Kerne3ae09f2018-04-06 14:52:54 -0600137ifeq ($(SUSE_ID),15.0)
138 RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6
Marco Varlese69220402018-07-04 14:23:08 +0200139 RPM_SUSE_PYTHON_DEPS += python2-ply python2-virtualenv
Ed Kerne3ae09f2018-04-06 14:52:54 -0600140else
141 RPM_SUSE_DEVEL_DEPS += boost_1_61-devel gcc6
142 RPM_SUSE_PYTHON_DEPS += python-virtualenv
143endif
Marco Varlese5f1231c2017-10-10 16:43:14 +0200144endif
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200145
Ed Kern947fe5e2018-04-26 17:13:17 -0600146ifeq ($(OS_ID),opensuse-leap)
147ifeq ($(SUSE_ID),15.0)
148 RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6
Marco Varlese69220402018-07-04 14:23:08 +0200149 RPM_SUSE_PYTHON_DEPS += python2-ply python2-virtualenv
Ed Kern947fe5e2018-04-26 17:13:17 -0600150endif
151endif
152
Marco Varlesedb417762017-10-24 17:02:04 +0200153RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
154
Damjan Marion0df78dd2016-03-29 22:37:02 +0200155ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +0100156 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
157endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100158
Damjan Marionc5e86812016-05-02 19:40:27 +0200159ifeq ($(findstring y,$(UNATTENDED)),y)
160CONFIRM=-y
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700161FORCE=--force-yes
Damjan Marionc5e86812016-05-02 19:40:27 +0200162endif
163
Damjan Marion0dc3f192017-05-31 19:25:08 +0200164TARGETS = vpp
165
166ifneq ($(SAMPLE_PLUGIN),no)
167TARGETS += sample-plugin
168endif
169
Damjan Marion55f99672018-03-15 19:36:41 +0100170.PHONY: help wipe wipe-release build build-release rebuild rebuild-release
Damjan Marione17fdb52016-02-10 00:36:06 +0100171.PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
Damjan Marioncb034b92016-12-28 18:38:59 +0100172.PHONY: ctags cscope
Klement Sekera277b89c2016-10-28 13:20:27 +0200173.PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
Juraj Sloboda0279b292016-11-16 19:50:24 +0100174.PHONY: test-cov test-wipe-cov
Damjan Marione17fdb52016-02-10 00:36:06 +0100175
Damjan Marion4a6cb832018-09-18 18:41:38 +0200176define banner
177 @echo "========================================================================"
178 @echo " $(1)"
179 @echo "========================================================================"
180 @echo " "
181endef
182
Damjan Marione17fdb52016-02-10 00:36:06 +0100183help:
184 @echo "Make Targets:"
Damjan Marionebb27fb2016-02-25 16:26:01 +0100185 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +0100186 @echo " wipe - wipe all products of debug build "
187 @echo " wipe-release - wipe all products of release build "
188 @echo " build - build debug binaries"
189 @echo " build-release - build release binaries"
Dave Barach3ad77042017-01-04 17:24:32 -0500190 @echo " build-coverity - build coverity artifacts"
Damjan Marione17fdb52016-02-10 00:36:06 +0100191 @echo " rebuild - wipe and build debug binares"
192 @echo " rebuild-release - wipe and build release binares"
193 @echo " run - run debug binary"
194 @echo " run-release - run release binary"
195 @echo " debug - run debug binary with debugger"
196 @echo " debug-release - run release binary with debugger"
Klement Sekera87134932017-03-07 11:39:27 +0100197 @echo " test - build and run (basic) functional tests"
198 @echo " test-debug - build and run (basic) functional tests (debug build)"
199 @echo " test-all - build and run (all) functional tests"
200 @echo " test-all-debug - build and run (all) functional tests (debug build)"
Neale Rannsb7d41fc2018-07-16 08:22:37 -0400201 @echo " test-ext - build and run 'extras' functional tests"
Klement Sekeraa86e2892017-03-09 08:01:52 +0100202 @echo " test-shell - enter shell with test environment"
203 @echo " test-shell-debug - enter shell with test environment (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200204 @echo " test-wipe - wipe files generated by unit tests"
Damjan Marionf56b77a2016-10-03 19:44:57 +0200205 @echo " retest - run functional tests"
206 @echo " retest-debug - run functional tests (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200207 @echo " test-help - show help on test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100208 @echo " run-vat - run vpp-api-test tool"
209 @echo " pkg-deb - build DEB packages"
210 @echo " pkg-rpm - build RPM packages"
Damjan Marion4a6cb832018-09-18 18:41:38 +0200211 @echo " install-ext-deps - install external development dependencies"
Damjan Marione6f90232016-03-16 22:49:05 +0100212 @echo " ctags - (re)generate ctags database"
Damjan Mariona7775382016-07-07 17:56:48 +0200213 @echo " gtags - (re)generate gtags database"
Damjan Marione6f90232016-03-16 22:49:05 +0100214 @echo " cscope - (re)generate cscope database"
Damjan Marion24704852016-09-07 13:10:50 +0200215 @echo " checkstyle - check coding style"
216 @echo " fixstyle - fix coding style"
Chris Luke1d1644c2016-05-13 13:41:36 -0400217 @echo " doxygen - (re)generate documentation"
Chris Luke54ccf222016-07-25 16:38:11 -0400218 @echo " bootstrap-doxygen - setup Doxygen dependencies"
Chris Luke1d1644c2016-05-13 13:41:36 -0400219 @echo " wipe-doxygen - wipe all generated documentation"
jdenisco3138d722018-09-24 14:59:33 -0400220 @echo " docs - Build the Sphinx documentation"
221 @echo " docs-venv - Build the virtual environment for the Sphinx docs"
222 @echo " docs-clean - Remove the generated files from the Sphinx docs"
Klement Sekera277b89c2016-10-28 13:20:27 +0200223 @echo " test-doc - generate documentation for test framework"
224 @echo " test-wipe-doc - wipe documentation for test framework"
Juraj Sloboda0279b292016-11-16 19:50:24 +0100225 @echo " test-cov - generate code coverage report for test framework"
226 @echo " test-wipe-cov - wipe code coverage report for test framework"
Klement Sekera72715ee2017-01-17 10:37:05 +0100227 @echo " test-checkstyle - check PEP8 compliance for test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100228 @echo ""
229 @echo "Make Arguments:"
Damjan Marionb1dab652017-06-30 11:51:41 +0200230 @echo " V=[0|1] - set build verbosity level"
231 @echo " STARTUP_CONF=<path> - startup configuration file"
232 @echo " (e.g. /etc/vpp/startup.conf)"
233 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
234 @echo " It also sets STARTUP_CONF if"
235 @echo " startup.conf file is present"
236 @echo " GDB=<path> - gdb binary to use for debugging"
237 @echo " PLATFORM=<name> - target platform. default is vpp"
238 @echo " TEST=<filter> - apply filter to test set, see test-help"
239 @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to"
240 @echo " autogenerated startup.conf"
241 @echo " (e.g. \"no-pci\" )"
242 @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin"
243 @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which"
244 @echo " should not be loaded"
Damjan Marione17fdb52016-02-10 00:36:06 +0100245 @echo ""
Klement Sekera277b89c2016-10-28 13:20:27 +0200246 @echo "Current Argument Values:"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200247 @echo " V = $(V)"
248 @echo " STARTUP_CONF = $(STARTUP_CONF)"
249 @echo " STARTUP_DIR = $(STARTUP_DIR)"
250 @echo " GDB = $(GDB)"
251 @echo " PLATFORM = $(PLATFORM)"
252 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200253 @echo " DPDK_CONFIG = $(DPDK_CONFIG)"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200254 @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200255 @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)"
Damjan Marione17fdb52016-02-10 00:36:06 +0100256
Damjan Marion55f99672018-03-15 19:36:41 +0100257$(BR)/.deps.ok:
Damjan Marionc21d59f2016-11-19 12:04:34 +0100258ifeq ($(findstring y,$(UNATTENDED)),y)
259 make install-dep
260endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200261ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marione17fdb52016-02-10 00:36:06 +0100262 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
263 if [ -n "$$MISSING" ] ; then \
264 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +0100265 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +0100266 exit 1 ; \
267 fi ; \
268 exit 0
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400269else ifneq ("$(wildcard /etc/redhat-release)","")
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400270 @for i in $(RPM_DEPENDS) ; do \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400271 RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3) ; \
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400272 MISSING+=$$(rpm -q $$RPM | grep "^package") ; \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400273 done ; \
274 if [ -n "$$MISSING" ] ; then \
275 echo "Please install missing RPMs: \n$$MISSING\n" ; \
276 echo "by executing \"make install-dep\"\n" ; \
277 exit 1 ; \
278 fi ; \
279 exit 0
Damjan Marione17fdb52016-02-10 00:36:06 +0100280endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100281 @touch $@
282
Damjan Marion55f99672018-03-15 19:36:41 +0100283bootstrap:
284 @echo "'make bootstrap' is not needed anymore"
Damjan Marione17fdb52016-02-10 00:36:06 +0100285
Damjan Marionebb27fb2016-02-25 16:26:01 +0100286install-dep:
Damjan Marion9b6463d2017-05-29 12:29:05 +0200287ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marionc5e86812016-05-02 19:40:27 +0200288ifeq ($(OS_VERSION_ID),14.04)
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700289 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
290 @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
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)","")
Gabriel Ganneb17402e2017-01-02 16:44:21 +0100299 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
Damjan Marion855e2682018-08-24 13:37:45 +0200300 @sudo -E yum install $(CONFIRM) centos-release-scl-rh
Gabriel Ganneb17402e2017-01-02 16:44:21 +0100301 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
Florin Coras371ca502018-02-21 12:07:41 -0800302 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
Marco Varlese23722e62018-08-20 12:21:30 +0200303else ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
Marco Varlese50ec7212017-10-10 09:30:33 +0200304 @sudo -E zypper refresh
305 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Ed Kern947fe5e2018-04-26 17:13:17 -0600306else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
307 @sudo -E zypper refresh
308 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Ed Kern6604dde2018-08-20 11:05:03 -0600309else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
310 @sudo -E zypper refresh
311 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Damjan Marionebb27fb2016-02-25 16:26:01 +0100312else
Marco Varlese50ec7212017-10-10 09:30:33 +0200313 $(error "This option currently works only on Ubuntu, Debian, Centos or openSUSE systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100314endif
315
Damjan Marione17fdb52016-02-10 00:36:06 +0100316define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200317 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100318endef
319
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400320$(BR)/scripts/.version:
321ifneq ("$(wildcard /etc/redhat-release)","")
322 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
323else
324 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
325endif
326
Damjan Marionc06eeb02017-04-18 15:26:39 +0200327DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
328DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400329
Damjan Marionc06eeb02017-04-18 15:26:39 +0200330dist:
Thomas F Herbert8d487222017-07-18 15:48:03 -0400331 @if git rev-parse 2> /dev/null ; then \
332 git archive \
333 --prefix=$(DIST_SUBDIR)/ \
334 --format=tar \
335 -o $(DIST_FILE) \
336 HEAD ; \
337 git describe > $(BR)/.version ; \
338 else \
339 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
340 src/scripts/version > $(BR)/.version ; \
341 fi
Damjan Marionc06eeb02017-04-18 15:26:39 +0200342 @tar --append \
343 --file $(DIST_FILE) \
344 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
345 $(BR)/.version
346 @$(RM) $(BR)/.version $(DIST_FILE).xz
347 @xz -v --threads=0 $(DIST_FILE)
348 @$(RM) $(BR)/vpp-latest.tar.xz
349 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400350
Damjan Marion55f99672018-03-15 19:36:41 +0100351build: $(BR)/.deps.ok
Damjan Marion9d7a7ba2018-03-14 20:58:39 +0100352 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100353
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400354wipedist:
Damjan Marionc06eeb02017-04-18 15:26:39 +0200355 @$(RM) $(BR)/*.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400356
Damjan Marion55f99672018-03-15 19:36:41 +0100357wipe: wipedist test-wipe $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200358 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100359
360rebuild: wipe build
361
Damjan Marion55f99672018-03-15 19:36:41 +0100362build-release: $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200363 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100364
Damjan Marion55f99672018-03-15 19:36:41 +0100365wipe-release: test-wipe $(BR)/.deps.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200366 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100367
368rebuild-release: wipe-release build-release
369
Ed Kern56ccc232018-04-02 16:42:48 -0600370export VPP_PYTHON_PREFIX ?= $(BR)/python
Klement Sekeraf62ae122016-10-11 11:47:09 +0200371
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700372libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
373
Damjan Marionf56b77a2016-10-03 19:44:57 +0200374define test
Neale Rannsb7d41fc2018-07-16 08:22:37 -0400375 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700376 $(eval libs:=lib lib64)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200377 make -C test \
Klement Sekera993e0ed2017-03-16 09:14:59 +0100378 TEST_DIR=$(WS_ROOT)/test \
Juraj Sloboda0279b292016-11-16 19:50:24 +0100379 VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
Klement Sekeraf62ae122016-10-11 11:47:09 +0200380 VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700381 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
Ole Troan7e3a8752016-12-05 10:27:09 +0100382 VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700383 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
Klement Sekera87134932017-03-07 11:39:27 +0100384 EXTENDED_TESTS=$(EXTENDED_TESTS) \
vagrant937bf302017-04-07 01:48:47 +0000385 PYTHON=$(PYTHON) \
Klement Sekerad3e671e2017-09-29 12:36:37 +0200386 OS_ID=$(OS_ID) \
Klement Sekeraa3d933c2017-11-06 09:46:00 +0100387 CACHE_OUTPUT=$(CACHE_OUTPUT) \
Damjan Marion6484b3b2017-01-15 21:30:50 +0100388 $(3)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200389endef
390
Damjan Marion55f99672018-03-15 19:36:41 +0100391test:
Damjan Marion374e2c52017-03-09 20:38:15 +0100392 $(call test,vpp,vpp,test)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200393
Damjan Marion55f99672018-03-15 19:36:41 +0100394test-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100395 $(call test,vpp,vpp_debug,test)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200396
Damjan Marion55f99672018-03-15 19:36:41 +0100397test-all:
Klement Sekera87134932017-03-07 11:39:27 +0100398 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100399 $(call test,vpp,vpp,test)
Klement Sekera87134932017-03-07 11:39:27 +0100400
Neale Rannsb7d41fc2018-07-16 08:22:37 -0400401test-ext:
Damjan Marioncc4a5e82018-07-30 16:10:14 +0200402 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp_debug vom-install japi-install,)
Neale Rannsb7d41fc2018-07-16 08:22:37 -0400403 $(eval EXTENDED_TESTS=yes)
404 $(call test,vpp,vpp_debug,test-ext)
405
Damjan Marion55f99672018-03-15 19:36:41 +0100406test-all-debug:
Klement Sekera87134932017-03-07 11:39:27 +0100407 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100408 $(call test,vpp,vpp_debug,test)
Klement Sekera87134932017-03-07 11:39:27 +0100409
Klement Sekera277b89c2016-10-28 13:20:27 +0200410test-help:
411 @make -C test help
Klement Sekeraf62ae122016-10-11 11:47:09 +0200412
Klement Sekera277b89c2016-10-28 13:20:27 +0200413test-wipe:
414 @make -C test wipe
415
Damjan Marion55f99672018-03-15 19:36:41 +0100416test-shell:
Klement Sekera993e0ed2017-03-16 09:14:59 +0100417 $(call test,vpp,vpp,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100418
Damjan Marion55f99672018-03-15 19:36:41 +0100419test-shell-debug:
Klement Sekera993e0ed2017-03-16 09:14:59 +0100420 $(call test,vpp,vpp_debug,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100421
Ed Kern56ccc232018-04-02 16:42:48 -0600422test-dep:
423 @make -C test test-dep
424
Klement Sekera277b89c2016-10-28 13:20:27 +0200425test-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100426 @make -C test doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200427
428test-wipe-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100429 @make -C test wipe-doc
Damjan Marionf56b77a2016-10-03 19:44:57 +0200430
Damjan Marion55f99672018-03-15 19:36:41 +0100431test-cov:
Klement Sekera88d38c42017-03-21 08:27:18 +0100432 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100433 $(call test,vpp,vpp_gcov,cov)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100434
435test-wipe-cov:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100436 @make -C test wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100437
Klement Sekera72715ee2017-01-17 10:37:05 +0100438test-checkstyle:
439 @make -C test checkstyle
440
Damjan Marionf56b77a2016-10-03 19:44:57 +0200441retest:
Damjan Marion374e2c52017-03-09 20:38:15 +0100442 $(call test,vpp,vpp,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200443
444retest-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100445 $(call test,vpp,vpp_debug,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200446
Damjan Marione17fdb52016-02-10 00:36:06 +0100447ifeq ("$(wildcard $(STARTUP_CONF))","")
448define run
449 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
450 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Mariona7775382016-07-07 17:56:48 +0200451 @cd $(STARTUP_DIR) && \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200452 $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100453endef
454else
455define run
Damjan Mariona7775382016-07-07 17:56:48 +0200456 @cd $(STARTUP_DIR) && \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200457 $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
Damjan Marione17fdb52016-02-10 00:36:06 +0100458endef
459endif
460
Damjan Marione6f90232016-03-16 22:49:05 +0100461%.files: .FORCE
462 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
463 \( -not -path './build-root*' -o -path \
464 './build-root/build-vpp_debug-native/dpdk*' \) > $@
465
466.FORCE:
467
Damjan Marione17fdb52016-02-10 00:36:06 +0100468run:
Damjan Mariona7775382016-07-07 17:56:48 +0200469 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100470
471run-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200472 $(call run, $(BR)/install-$(PLATFORM)-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100473
474debug:
Damjan Mariona7775382016-07-07 17:56:48 +0200475 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100476
Damjan Marion005849e2018-07-19 14:39:40 +0200477build-coverity:
Dave Barach3ad77042017-01-04 17:24:32 -0500478 $(call make,$(PLATFORM)_coverity,install-packages)
479
Damjan Marione17fdb52016-02-10 00:36:06 +0100480debug-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200481 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100482
483build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100484 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100485
486run-vat:
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200487 @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100488
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100489pkg-deb:
Damjan Marione6f90232016-03-16 22:49:05 +0100490 $(call make,$(PLATFORM),install-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100491
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100492pkg-rpm: dist
Damjan Marionc06eeb02017-04-18 15:26:39 +0200493 make -C extras/rpm
Damjan Marione6f90232016-03-16 22:49:05 +0100494
Thomas F Herbertb60f4962017-07-19 19:17:15 -0400495pkg-srpm: dist
496 make -C extras/rpm srpm
497
Damjan Marion2ce7f982017-01-09 20:24:50 +0100498dpdk-install-dev:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200499 $(call banner,"This command is deprecated. Please use 'make install-ext-libs'")
500 make -C build/external install-$(PKG)
501
502install-ext-deps:
503 make -C build/external install-$(PKG)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100504
Damjan Marione6f90232016-03-16 22:49:05 +0100505ctags: ctags.files
506 @ctags --totals --tag-relative -L $<
507 @rm $<
508
Keith Burns (alagalah)4b72a582016-07-02 17:54:36 -0700509gtags: ctags
510 @gtags --gtagslabel=ctags
511
Damjan Marione6f90232016-03-16 22:49:05 +0100512cscope: cscope.files
513 @cscope -b -q -v
Marek Gradzki60c63c72016-04-26 08:01:31 +0200514
Damjan Marion24704852016-09-07 13:10:50 +0200515checkstyle:
516 @build-root/scripts/checkstyle.sh
517
518fixstyle:
519 @build-root/scripts/checkstyle.sh --fix
Chris Lukeb5850972016-05-03 16:34:59 -0400520
Chris Luke1d1644c2016-05-13 13:41:36 -0400521#
522# Build the documentation
523#
524
Chris Luke54ccf222016-07-25 16:38:11 -0400525# Doxygen configuration and our utility scripts
526export DOXY_DIR ?= $(WS_ROOT)/doxygen
527
528define make-doxy
Damjan Marion6484b3b2017-01-15 21:30:50 +0100529 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
Chris Luke54ccf222016-07-25 16:38:11 -0400530endef
531
532.PHONY: bootstrap-doxygen doxygen wipe-doxygen
533
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100534bootstrap-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400535 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400536
Chris Lukeb5850972016-05-03 16:34:59 -0400537doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400538 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400539
540wipe-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400541 $(call make-doxy)
542
jdenisco3138d722018-09-24 14:59:33 -0400543# Sphinx Documents
544export DOCS_DIR = $(WS_ROOT)/docs
545export VENV_DIR = $(WS_ROOT)/sphinx_venv
546export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts
547
548.PHONY: docs-venv docs docs-clean
549
550docs-venv:
551 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv)
552
553docs: $(DOCS_DIR)
554 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html)
555
556docs-clean:
557 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh clean)
558
Damjan Marion4a6cb832018-09-18 18:41:38 +0200559verify: install-dep $(BR)/.deps.ok install-ext-deps
Ed Warnickeddff8a42016-11-22 17:57:30 +0000560 $(call banner,"Building for PLATFORM=vpp using gcc")
Peter Mikusad625f52017-05-31 15:23:59 +0000561 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
Damjan Marion686c1c82017-04-19 14:09:07 +0200562 $(call banner,"Building sample-plugin")
563 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
Damjan Marion23d4e8a2018-03-26 14:09:38 +0200564 $(call banner,"Building libmemif")
565 @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
Damjan Marioncc4a5e82018-07-30 16:10:14 +0200566 $(call banner,"Building JAPI")
567 @make -C build-root PLATFORM=vpp TAG=vpp japi-install
Damjan Marion164e5f82018-04-25 19:11:15 +0200568 $(call banner,"Building VOM")
569 @make -C build-root PLATFORM=vpp TAG=vpp vom-install
Damjan Marion2ce7f982017-01-09 20:24:50 +0100570 $(call banner,"Building $(PKG) packages")
Peter Mikusad625f52017-05-31 15:23:59 +0000571 @make pkg-$(PKG)
Damjan Marionaade2c52017-05-22 16:56:54 +0200572ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
Damjan Marion855e2682018-08-24 13:37:45 +0200573 $(call banner,"Running tests")
Damjan Mariona472f862017-10-10 19:01:06 +0200574 @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
Damjan Marionaade2c52017-05-22 16:56:54 +0200575endif
Ed Warnickeddff8a42016-11-22 17:57:30 +0000576
Peter Mikusad625f52017-05-31 15:23:59 +0000577