blob: b3eb9cc285a64118dabeaa18db2423adf012ee18 [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
Brian Brooks40b655c2017-09-22 12:26:34 -050020MACHINE=$(shell uname -m)
21
Damjan Marionb1dab652017-06-30 11:51:41 +020022,:=,
23define disable_plugins
24$(if $(1), \
25 "plugins {" \
26 $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
27 " }" \
28 ,)
29endef
30
31MINIMAL_STARTUP_CONF=" \
32unix { \
33 interactive \
34 cli-listen /run/vpp/cli.sock \
35 gid $(shell id -g) \
36 $(if $(wildcard startup.vpp),"exec startup.vpp",) \
37} \
38$(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",) \
39$(call disable_plugins,$(DISABLED_PLUGINS)) \
40"
Damjan Marione17fdb52016-02-10 00:36:06 +010041
Damjan Marioneef4d992016-02-23 22:04:50 +010042GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
43
Damjan Marionc5e86812016-05-02 19:40:27 +020044#
45# OS Detection
46#
Chris Luke36d25062016-09-22 20:52:26 -040047# We allow Darwin (MacOS) for docs generation; VPP build will still fail.
48ifneq ($(shell uname),Darwin)
Damjan Marionc5e86812016-05-02 19:40:27 +020049OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
50OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
Chris Luke36d25062016-09-22 20:52:26 -040051endif
Damjan Marionc5e86812016-05-02 19:40:27 +020052
Gabriel Ganne898171a2017-01-23 12:08:58 +010053ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marion2ce7f982017-01-09 20:24:50 +010054PKG=deb
Marco Varlesed6ad5a52017-06-01 15:20:15 +020055else ifeq ($(filter rhel centos fedora opensuse,$(OS_ID)),$(OS_ID))
Damjan Marion2ce7f982017-01-09 20:24:50 +010056PKG=rpm
57endif
58
Dave Wallaced756b352017-07-03 13:11:38 -040059# +libganglia1-dev if building the gmond plugin
60
Ole Troan9d420872017-10-12 13:06:35 +020061DEB_DEPENDS = curl build-essential autoconf automake ccache
Dave Wallaced756b352017-07-03 13:11:38 -040062DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd
Damjan Marion6bbf83a2017-01-10 10:39:21 +010063DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
Sergio Gonzalez Monroy6184db32017-10-27 08:58:38 +010064DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020065DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6 check
Florin Coras371ca502018-02-21 12:07:41 -080066DEB_DEPENDS += libboost-all-dev libffi-dev python-ply libmbedtls-dev
Ed Warnicke027103e2016-05-05 18:03:27 -050067ifeq ($(OS_VERSION_ID),14.04)
68 DEB_DEPENDS += openjdk-8-jdk-headless
Anton Ivanove6f3b462017-09-21 13:15:53 +010069 DEB_DEPENDS += libssl-dev
Damjan Marion9b6463d2017-05-29 12:29:05 +020070else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
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 +020073 APT_ARGS = -t jessie-backports
Anton Ivanove6f3b462017-09-21 13:15:53 +010074else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
Ed Warnicke027103e2016-05-05 18:03:27 -050075 DEB_DEPENDS += default-jdk-headless
Anton Ivanove6f3b462017-09-21 13:15:53 +010076 DEB_DEPENDS += libssl1.0-dev
77else
Dave Wallacef91fe3b2017-09-25 15:00:36 -040078 DEB_DEPENDS += default-jdk-headless
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
Damjan Marion6bbf83a2017-01-10 10:39:21 +010082RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
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
Gabriel Ganneb8bbd652017-11-16 14:47:42 +010087RPM_DEPENDS += subunit subunit-devel
Billy McFall28cf3b72018-01-15 17:54:52 -050088RPM_DEPENDS += selinux-policy selinux-policy-devel
Florin Coras371ca502018-02-21 12:07:41 -080089RPM_DEPENDS += mbedtls-devel
Klement Sekerad3e671e2017-09-29 12:36:37 +020090
Igor Mikhailov (imichail)34208962017-05-02 00:03:09 -070091ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
Thomas F Herbert440751b2017-09-11 08:58:23 -040092 RPM_DEPENDS += openssl-devel
Gabriel Ganneb2957822018-01-25 10:03:13 +010093 RPM_DEPENDS += python-devel python2-ply
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040094 RPM_DEPENDS += python2-virtualenv
95 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Thomas F Herbertda78c852017-08-31 10:22:57 -040096else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
Thomas F Herbert440751b2017-09-11 08:58:23 -040097 RPM_DEPENDS += compat-openssl10-devel
Gabriel Ganneb2957822018-01-25 10:03:13 +010098 RPM_DEPENDS += python2-devel python2-ply
Thomas F Herbert28ea2512017-03-29 10:40:16 -040099 RPM_DEPENDS += python2-virtualenv
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400100 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400101else
Thomas F Herbert440751b2017-09-11 08:58:23 -0400102 RPM_DEPENDS += openssl-devel
Jon Loeliger28227ad2018-01-24 13:47:46 -0600103 RPM_DEPENDS += python-devel python-ply
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400104 RPM_DEPENDS += python-virtualenv
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400105 RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert28ea2512017-03-29 10:40:16 -0400106endif
Dave Wallaced756b352017-07-03 13:11:38 -0400107
108# +ganglia-devel if building the ganglia plugin
109
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400110RPM_DEPENDS += chrpath libffi-devel rpm-build
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500111
Marco Varlesedb417762017-10-24 17:02:04 +0200112SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
Ole Troan9d420872017-10-12 13:06:35 +0200113RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
114RPM_SUSE_BUILDTOOLS_DEPS += clang indent libtool make python-ply
Marco Varlesefedc4552017-12-12 11:06:17 +0100115
116RPM_SUSE_DEVEL_DEPS = glibc-devel-static java-1_8_0-openjdk-devel libnuma-devel
Florin Coras371ca502018-02-21 12:07:41 -0800117RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel
Marco Varlesefedc4552017-12-12 11:06:17 +0100118
119RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
120RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
121
Marco Varlesedb417762017-10-24 17:02:04 +0200122RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
Marco Varlese5f1231c2017-10-10 16:43:14 +0200123
124ifeq ($(OS_ID),opensuse)
Marco Varlesedb417762017-10-24 17:02:04 +0200125ifneq ($(SUSE_NAME),Tumbleweed)
Marco Varlesefedc4552017-12-12 11:06:17 +0100126 RPM_SUSE_DEVEL_DEPS += boost_1_61-devel gcc6
Marco Varlesedb417762017-10-24 17:02:04 +0200127 RPM_SUSE_PYTHON_DEPS += python-virtualenv
Marco Varlese5f1231c2017-10-10 16:43:14 +0200128else
Marco Varlesefedc4552017-12-12 11:06:17 +0100129 RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc
Marco Varlesedb417762017-10-24 17:02:04 +0200130 RPM_SUSE_PYTHON_DEPS += python2-virtualenv
Marco Varlese5f1231c2017-10-10 16:43:14 +0200131endif
132endif
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200133
Marco Varlesedb417762017-10-24 17:02:04 +0200134RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
135
Damjan Marion0df78dd2016-03-29 22:37:02 +0200136ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +0100137 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
138endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100139
Damjan Marionc5e86812016-05-02 19:40:27 +0200140ifeq ($(findstring y,$(UNATTENDED)),y)
141CONFIRM=-y
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700142FORCE=--force-yes
Damjan Marionc5e86812016-05-02 19:40:27 +0200143endif
144
Damjan Marion0dc3f192017-05-31 19:25:08 +0200145TARGETS = vpp
146
147ifneq ($(SAMPLE_PLUGIN),no)
148TARGETS += sample-plugin
149endif
150
Damjan Marione17fdb52016-02-10 00:36:06 +0100151.PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
152.PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
Damjan Marioncb034b92016-12-28 18:38:59 +0100153.PHONY: ctags cscope
Klement Sekera277b89c2016-10-28 13:20:27 +0200154.PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
Juraj Sloboda0279b292016-11-16 19:50:24 +0100155.PHONY: test-cov test-wipe-cov
Damjan Marione17fdb52016-02-10 00:36:06 +0100156
157help:
158 @echo "Make Targets:"
159 @echo " bootstrap - prepare tree for build"
Damjan Marionebb27fb2016-02-25 16:26:01 +0100160 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +0100161 @echo " wipe - wipe all products of debug build "
162 @echo " wipe-release - wipe all products of release build "
163 @echo " build - build debug binaries"
164 @echo " build-release - build release binaries"
Dave Barach3ad77042017-01-04 17:24:32 -0500165 @echo " build-coverity - build coverity artifacts"
Damjan Marione17fdb52016-02-10 00:36:06 +0100166 @echo " rebuild - wipe and build debug binares"
167 @echo " rebuild-release - wipe and build release binares"
168 @echo " run - run debug binary"
169 @echo " run-release - run release binary"
170 @echo " debug - run debug binary with debugger"
171 @echo " debug-release - run release binary with debugger"
Klement Sekera87134932017-03-07 11:39:27 +0100172 @echo " test - build and run (basic) functional tests"
173 @echo " test-debug - build and run (basic) functional tests (debug build)"
174 @echo " test-all - build and run (all) functional tests"
175 @echo " test-all-debug - build and run (all) functional tests (debug build)"
Klement Sekeraa86e2892017-03-09 08:01:52 +0100176 @echo " test-shell - enter shell with test environment"
177 @echo " test-shell-debug - enter shell with test environment (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200178 @echo " test-wipe - wipe files generated by unit tests"
Damjan Marionf56b77a2016-10-03 19:44:57 +0200179 @echo " retest - run functional tests"
180 @echo " retest-debug - run functional tests (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200181 @echo " test-help - show help on test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100182 @echo " run-vat - run vpp-api-test tool"
183 @echo " pkg-deb - build DEB packages"
184 @echo " pkg-rpm - build RPM packages"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100185 @echo " dpdk-install-dev - install DPDK development packages"
Damjan Marione6f90232016-03-16 22:49:05 +0100186 @echo " ctags - (re)generate ctags database"
Damjan Mariona7775382016-07-07 17:56:48 +0200187 @echo " gtags - (re)generate gtags database"
Damjan Marione6f90232016-03-16 22:49:05 +0100188 @echo " cscope - (re)generate cscope database"
Damjan Marion24704852016-09-07 13:10:50 +0200189 @echo " checkstyle - check coding style"
190 @echo " fixstyle - fix coding style"
Chris Luke1d1644c2016-05-13 13:41:36 -0400191 @echo " doxygen - (re)generate documentation"
Chris Luke54ccf222016-07-25 16:38:11 -0400192 @echo " bootstrap-doxygen - setup Doxygen dependencies"
Chris Luke1d1644c2016-05-13 13:41:36 -0400193 @echo " wipe-doxygen - wipe all generated documentation"
Klement Sekera277b89c2016-10-28 13:20:27 +0200194 @echo " test-doc - generate documentation for test framework"
195 @echo " test-wipe-doc - wipe documentation for test framework"
Juraj Sloboda0279b292016-11-16 19:50:24 +0100196 @echo " test-cov - generate code coverage report for test framework"
197 @echo " test-wipe-cov - wipe code coverage report for test framework"
Klement Sekera72715ee2017-01-17 10:37:05 +0100198 @echo " test-checkstyle - check PEP8 compliance for test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100199 @echo ""
200 @echo "Make Arguments:"
Damjan Marionb1dab652017-06-30 11:51:41 +0200201 @echo " V=[0|1] - set build verbosity level"
202 @echo " STARTUP_CONF=<path> - startup configuration file"
203 @echo " (e.g. /etc/vpp/startup.conf)"
204 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
205 @echo " It also sets STARTUP_CONF if"
206 @echo " startup.conf file is present"
207 @echo " GDB=<path> - gdb binary to use for debugging"
208 @echo " PLATFORM=<name> - target platform. default is vpp"
209 @echo " TEST=<filter> - apply filter to test set, see test-help"
210 @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to"
211 @echo " autogenerated startup.conf"
212 @echo " (e.g. \"no-pci\" )"
213 @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin"
214 @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which"
215 @echo " should not be loaded"
Damjan Marione17fdb52016-02-10 00:36:06 +0100216 @echo ""
Klement Sekera277b89c2016-10-28 13:20:27 +0200217 @echo "Current Argument Values:"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200218 @echo " V = $(V)"
219 @echo " STARTUP_CONF = $(STARTUP_CONF)"
220 @echo " STARTUP_DIR = $(STARTUP_DIR)"
221 @echo " GDB = $(GDB)"
222 @echo " PLATFORM = $(PLATFORM)"
223 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200224 @echo " DPDK_CONFIG = $(DPDK_CONFIG)"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200225 @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200226 @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)"
Damjan Marione17fdb52016-02-10 00:36:06 +0100227
228$(BR)/.bootstrap.ok:
Damjan Marionc21d59f2016-11-19 12:04:34 +0100229ifeq ($(findstring y,$(UNATTENDED)),y)
230 make install-dep
231endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200232ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marione17fdb52016-02-10 00:36:06 +0100233 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
234 if [ -n "$$MISSING" ] ; then \
235 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +0100236 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +0100237 exit 1 ; \
238 fi ; \
239 exit 0
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400240else ifneq ("$(wildcard /etc/redhat-release)","")
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400241 @for i in $(RPM_DEPENDS) ; do \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400242 RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3) ; \
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400243 MISSING+=$$(rpm -q $$RPM | grep "^package") ; \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400244 done ; \
245 if [ -n "$$MISSING" ] ; then \
246 echo "Please install missing RPMs: \n$$MISSING\n" ; \
247 echo "by executing \"make install-dep\"\n" ; \
248 exit 1 ; \
249 fi ; \
250 exit 0
Damjan Marione17fdb52016-02-10 00:36:06 +0100251endif
Damjan Marion905a7f52016-07-07 20:27:49 +0200252 @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk
Damjan Marione17fdb52016-02-10 00:36:06 +0100253 @echo "#!/bin/bash\n" > $(BR)/path_setup
254 @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
255 @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup
256 @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup
Ole Troan6855f6c2016-04-09 03:16:30 +0200257
Damjan Marione17fdb52016-02-10 00:36:06 +0100258ifeq ("$(wildcard /usr/bin/ccache )","")
259 @echo "WARNING: Please install ccache AYEC and re-run this script"
260else
261 @rm -rf $(BR)/tools/ccache-bin
262 @mkdir -p $(BR)/tools/ccache-bin
263 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
264 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
265endif
Damjan Marion7cd468a2016-12-19 23:05:39 +0100266 @make -C $(BR) V=$(V) is_build_tool=yes tools-install
Damjan Marione17fdb52016-02-10 00:36:06 +0100267 @touch $@
268
269bootstrap: $(BR)/.bootstrap.ok
270
Damjan Marionebb27fb2016-02-25 16:26:01 +0100271install-dep:
Damjan Marion9b6463d2017-05-29 12:29:05 +0200272ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marionc5e86812016-05-02 19:40:27 +0200273ifeq ($(OS_VERSION_ID),14.04)
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700274 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
275 @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
Damjan Marionc5e86812016-05-02 19:40:27 +0200276endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200277ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
278 @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
279 || ( echo "Please install jessie-backports" ; exit 1 )
280endif
Ed Warnickeeb82e7f2017-02-01 16:08:51 -0800281 @sudo -E apt-get update
Damjan Marion9b6463d2017-05-29 12:29:05 +0200282 @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500283else ifneq ("$(wildcard /etc/redhat-release)","")
Gabriel Ganneb17402e2017-01-02 16:44:21 +0100284 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
285 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
Florin Coras371ca502018-02-21 12:07:41 -0800286 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200287else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
Marco Varlese50ec7212017-10-10 09:30:33 +0200288 @sudo -E zypper refresh
289 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
Damjan Marionebb27fb2016-02-25 16:26:01 +0100290else
Marco Varlese50ec7212017-10-10 09:30:33 +0200291 $(error "This option currently works only on Ubuntu, Debian, Centos or openSUSE systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100292endif
293
Damjan Marione17fdb52016-02-10 00:36:06 +0100294define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200295 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100296endef
297
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400298$(BR)/scripts/.version:
299ifneq ("$(wildcard /etc/redhat-release)","")
300 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
301else
302 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
303endif
304
Damjan Marionc06eeb02017-04-18 15:26:39 +0200305DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
306DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400307
Damjan Marionc06eeb02017-04-18 15:26:39 +0200308dist:
Thomas F Herbert8d487222017-07-18 15:48:03 -0400309 @if git rev-parse 2> /dev/null ; then \
310 git archive \
311 --prefix=$(DIST_SUBDIR)/ \
312 --format=tar \
313 -o $(DIST_FILE) \
314 HEAD ; \
315 git describe > $(BR)/.version ; \
316 else \
317 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
318 src/scripts/version > $(BR)/.version ; \
319 fi
Damjan Marionc06eeb02017-04-18 15:26:39 +0200320 @tar --append \
321 --file $(DIST_FILE) \
322 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
323 $(BR)/.version
324 @$(RM) $(BR)/.version $(DIST_FILE).xz
325 @xz -v --threads=0 $(DIST_FILE)
326 @$(RM) $(BR)/vpp-latest.tar.xz
327 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400328
Damjan Marione17fdb52016-02-10 00:36:06 +0100329build: $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200330 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100331
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400332wipedist:
Damjan Marionc06eeb02017-04-18 15:26:39 +0200333 @$(RM) $(BR)/*.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400334
Marco Varleseb328f362017-11-22 16:46:58 +0100335wipe: wipedist test-wipe $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200336 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100337
338rebuild: wipe build
339
340build-release: $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200341 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100342
Marco Varleseb328f362017-11-22 16:46:58 +0100343wipe-release: test-wipe $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200344 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100345
346rebuild-release: wipe-release build-release
347
Damjan Marion6484b3b2017-01-15 21:30:50 +0100348export VPP_PYTHON_PREFIX=$(BR)/python
Klement Sekeraf62ae122016-10-11 11:47:09 +0200349
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700350libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
351
Damjan Marionf56b77a2016-10-03 19:44:57 +0200352define test
Damjan Marioncb034b92016-12-28 18:38:59 +0100353 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700354 $(eval libs:=lib lib64)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200355 make -C test \
Klement Sekera993e0ed2017-03-16 09:14:59 +0100356 TEST_DIR=$(WS_ROOT)/test \
Juraj Sloboda0279b292016-11-16 19:50:24 +0100357 VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
Klement Sekeraf62ae122016-10-11 11:47:09 +0200358 VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700359 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
Ole Troan7e3a8752016-12-05 10:27:09 +0100360 VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700361 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
Klement Sekera87134932017-03-07 11:39:27 +0100362 EXTENDED_TESTS=$(EXTENDED_TESTS) \
vagrant937bf302017-04-07 01:48:47 +0000363 PYTHON=$(PYTHON) \
Klement Sekerad3e671e2017-09-29 12:36:37 +0200364 OS_ID=$(OS_ID) \
Klement Sekeraa3d933c2017-11-06 09:46:00 +0100365 CACHE_OUTPUT=$(CACHE_OUTPUT) \
Damjan Marion6484b3b2017-01-15 21:30:50 +0100366 $(3)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200367endef
368
Peter Ginchev53194292016-10-14 10:23:37 +0300369test: bootstrap
Damjan Marion374e2c52017-03-09 20:38:15 +0100370 $(call test,vpp,vpp,test)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200371
Peter Ginchev53194292016-10-14 10:23:37 +0300372test-debug: bootstrap
Damjan Marion374e2c52017-03-09 20:38:15 +0100373 $(call test,vpp,vpp_debug,test)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200374
Klement Sekera87134932017-03-07 11:39:27 +0100375test-all: bootstrap
376 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100377 $(call test,vpp,vpp,test)
Klement Sekera87134932017-03-07 11:39:27 +0100378
379test-all-debug: bootstrap
380 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100381 $(call test,vpp,vpp_debug,test)
Klement Sekera87134932017-03-07 11:39:27 +0100382
Klement Sekera277b89c2016-10-28 13:20:27 +0200383test-help:
384 @make -C test help
Klement Sekeraf62ae122016-10-11 11:47:09 +0200385
Klement Sekera277b89c2016-10-28 13:20:27 +0200386test-wipe:
387 @make -C test wipe
388
Klement Sekeraa86e2892017-03-09 08:01:52 +0100389test-shell: bootstrap
Klement Sekera993e0ed2017-03-16 09:14:59 +0100390 $(call test,vpp,vpp,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100391
392test-shell-debug: bootstrap
Klement Sekera993e0ed2017-03-16 09:14:59 +0100393 $(call test,vpp,vpp_debug,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100394
Klement Sekera277b89c2016-10-28 13:20:27 +0200395test-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100396 @make -C test doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200397
398test-wipe-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100399 @make -C test wipe-doc
Damjan Marionf56b77a2016-10-03 19:44:57 +0200400
Klement Sekera9225dee2016-12-12 08:36:58 +0100401test-cov: bootstrap
Klement Sekera88d38c42017-03-21 08:27:18 +0100402 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100403 $(call test,vpp,vpp_gcov,cov)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100404
405test-wipe-cov:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100406 @make -C test wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100407
Klement Sekera72715ee2017-01-17 10:37:05 +0100408test-checkstyle:
409 @make -C test checkstyle
410
Damjan Marionf56b77a2016-10-03 19:44:57 +0200411retest:
Damjan Marion374e2c52017-03-09 20:38:15 +0100412 $(call test,vpp,vpp,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200413
414retest-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100415 $(call test,vpp,vpp_debug,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200416
Damjan Marioneef4d992016-02-23 22:04:50 +0100417STARTUP_DIR ?= $(PWD)
Damjan Marione17fdb52016-02-10 00:36:06 +0100418ifeq ("$(wildcard $(STARTUP_CONF))","")
419define run
420 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
421 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Mariona7775382016-07-07 17:56:48 +0200422 @cd $(STARTUP_DIR) && \
Damjan Marion0dc3f192017-05-31 19:25:08 +0200423 sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) \
424 plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
Damjan Marione17fdb52016-02-10 00:36:06 +0100425endef
426else
427define run
Damjan Mariona7775382016-07-07 17:56:48 +0200428 @cd $(STARTUP_DIR) && \
Damjan Marion0dc3f192017-05-31 19:25:08 +0200429 sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') \
430 plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
Damjan Marione17fdb52016-02-10 00:36:06 +0100431endef
432endif
433
Damjan Marione6f90232016-03-16 22:49:05 +0100434%.files: .FORCE
435 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
436 \( -not -path './build-root*' -o -path \
437 './build-root/build-vpp_debug-native/dpdk*' \) > $@
438
439.FORCE:
440
Damjan Marione17fdb52016-02-10 00:36:06 +0100441run:
Damjan Mariona7775382016-07-07 17:56:48 +0200442 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100443
444run-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200445 $(call run, $(BR)/install-$(PLATFORM)-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100446
447debug:
Damjan Mariona7775382016-07-07 17:56:48 +0200448 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100449
Dave Barach3ad77042017-01-04 17:24:32 -0500450build-coverity:
451 $(call make,$(PLATFORM)_coverity,install-packages)
452
Damjan Marione17fdb52016-02-10 00:36:06 +0100453debug-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200454 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100455
456build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100457 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100458
459run-vat:
Matus Fabian5d224482017-01-02 04:44:03 -0800460 @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100461
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100462pkg-deb:
Damjan Marione6f90232016-03-16 22:49:05 +0100463 $(call make,$(PLATFORM),install-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100464
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100465pkg-rpm: dist
Damjan Marionc06eeb02017-04-18 15:26:39 +0200466 make -C extras/rpm
Damjan Marione6f90232016-03-16 22:49:05 +0100467
Thomas F Herbertb60f4962017-07-19 19:17:15 -0400468pkg-srpm: dist
469 make -C extras/rpm srpm
470
Damjan Marion2ce7f982017-01-09 20:24:50 +0100471dpdk-install-dev:
472 make -C dpdk install-$(PKG)
473
Damjan Marione6f90232016-03-16 22:49:05 +0100474ctags: ctags.files
475 @ctags --totals --tag-relative -L $<
476 @rm $<
477
Keith Burns (alagalah)4b72a582016-07-02 17:54:36 -0700478gtags: ctags
479 @gtags --gtagslabel=ctags
480
Damjan Marione6f90232016-03-16 22:49:05 +0100481cscope: cscope.files
482 @cscope -b -q -v
Marek Gradzki60c63c72016-04-26 08:01:31 +0200483
Damjan Marion24704852016-09-07 13:10:50 +0200484checkstyle:
485 @build-root/scripts/checkstyle.sh
486
487fixstyle:
488 @build-root/scripts/checkstyle.sh --fix
Chris Lukeb5850972016-05-03 16:34:59 -0400489
Chris Luke1d1644c2016-05-13 13:41:36 -0400490#
491# Build the documentation
492#
493
Chris Luke54ccf222016-07-25 16:38:11 -0400494# Doxygen configuration and our utility scripts
495export DOXY_DIR ?= $(WS_ROOT)/doxygen
496
497define make-doxy
Damjan Marion6484b3b2017-01-15 21:30:50 +0100498 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
Chris Luke54ccf222016-07-25 16:38:11 -0400499endef
500
501.PHONY: bootstrap-doxygen doxygen wipe-doxygen
502
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100503bootstrap-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400504 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400505
Chris Lukeb5850972016-05-03 16:34:59 -0400506doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400507 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400508
509wipe-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400510 $(call make-doxy)
511
Damjan Marione30872e2016-11-12 01:23:55 +0100512define banner
513 @echo "========================================================================"
514 @echo " $(1)"
515 @echo "========================================================================"
516 @echo " "
517endef
518
Peter Mikusad625f52017-05-31 15:23:59 +0000519verify: install-dep $(BR)/.bootstrap.ok dpdk-install-dev
Ed Warnickeddff8a42016-11-22 17:57:30 +0000520 $(call banner,"Building for PLATFORM=vpp using gcc")
Peter Mikusad625f52017-05-31 15:23:59 +0000521 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
Damjan Marion2ce7f982017-01-09 20:24:50 +0100522ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
Damjan Marione30872e2016-11-12 01:23:55 +0100523 $(call banner,"Installing dependencies")
524 @sudo -E apt-get update
525 @sudo -E apt-get $(CONFIRM) $(FORCE) install clang
526 $(call banner,"Building for PLATFORM=vpp using clang")
Peter Mikusad625f52017-05-31 15:23:59 +0000527 @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
Damjan Marione30872e2016-11-12 01:23:55 +0100528endif
Damjan Marion686c1c82017-04-19 14:09:07 +0200529 $(call banner,"Building sample-plugin")
530 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
Damjan Marion2ce7f982017-01-09 20:24:50 +0100531 $(call banner,"Building $(PKG) packages")
Peter Mikusad625f52017-05-31 15:23:59 +0000532 @make pkg-$(PKG)
Damjan Marionaade2c52017-05-22 16:56:54 +0200533ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
Damjan Mariona472f862017-10-10 19:01:06 +0200534 @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
Damjan Marionaade2c52017-05-22 16:56:54 +0200535endif
Ed Warnickeddff8a42016-11-22 17:57:30 +0000536
Peter Mikusad625f52017-05-31 15:23:59 +0000537