blob: c08115d47e5c70ea0ab4fe4de590e06aff9789a0 [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
Thomas F Herbert4b0ac822017-08-29 16:07:51 -040020export AESNI?=y
Damjan Marione17fdb52016-02-10 00:36:06 +010021
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
Damjan Marione17fdb52016-02-10 00:36:06 +010061DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev 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 Monroyacdc3062017-08-24 14:09:17 +010064DEB_DEPENDS += lcov chrpath autoconf nasm indent libnuma-dev
Damjan Marion1211beb2017-08-31 11:23:10 +020065DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6
Ed Warnicke027103e2016-05-05 18:03:27 -050066ifeq ($(OS_VERSION_ID),14.04)
67 DEB_DEPENDS += openjdk-8-jdk-headless
Damjan Marion9b6463d2017-05-29 12:29:05 +020068else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
69 DEB_DEPENDS += openjdk-8-jdk-headless
70 APT_ARGS = -t jessie-backports
Ed Warnicke027103e2016-05-05 18:03:27 -050071else
72 DEB_DEPENDS += default-jdk-headless
73endif
Damjan Marione17fdb52016-02-10 00:36:06 +010074
Damjan Marion6bbf83a2017-01-10 10:39:21 +010075RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
Gabriel Ganne555d9202017-09-06 10:44:07 +020076RPM_DEPENDS += apr-devel
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040077RPM_DEPENDS += openssl-devel
78RPM_DEPENDS += numactl-devel
Igor Mikhailov (imichail)34208962017-05-02 00:03:09 -070079ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040080 RPM_DEPENDS += python-devel
81 RPM_DEPENDS += python2-virtualenv
82 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Thomas F Herbertda78c852017-08-31 10:22:57 -040083else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040084 RPM_DEPENDS += python2-devel
Thomas F Herbert28ea2512017-03-29 10:40:16 -040085 RPM_DEPENDS += python2-virtualenv
Thomas F Herbertbc1c8482017-05-17 19:00:07 -040086 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
Thomas F Herbert28ea2512017-03-29 10:40:16 -040087else
Thomas F Herbertbd8e2422017-08-03 11:04:24 -040088 RPM_DEPENDS += python-devel
Thomas F Herbert28ea2512017-03-29 10:40:16 -040089 RPM_DEPENDS += python-virtualenv
Thomas F Herbertbc1c8482017-05-17 19:00:07 -040090 RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert28ea2512017-03-29 10:40:16 -040091endif
Dave Wallaced756b352017-07-03 13:11:38 -040092
93# +ganglia-devel if building the ganglia plugin
94
Thomas F Herbertbc1c8482017-05-17 19:00:07 -040095RPM_DEPENDS += chrpath libffi-devel rpm-build
Thomas F Herbert33129bb2017-08-01 12:46:41 -040096ifeq ($(OS_ID),fedora)
97 RPM_DEPENDS += nasm
Thomas F Herbert4b0ac822017-08-29 16:07:51 -040098else ifeq ($(findstring y,$(AESNI)),y)
Thomas F Herbert33129bb2017-08-01 12:46:41 -040099 RPM_DEPENDS += https://kojipkgs.fedoraproject.org//packages/nasm/2.12.02/2.fc26/x86_64/nasm-2.12.02-2.fc26.x86_64.rpm
100endif
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500101
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200102RPM_SUSE_DEPENDS = autoconf automake bison ccache chrpath distribution-release gcc6 glibc-devel-static
103RPM_SUSE_DEPENDS += java-1_8_0-openjdk-devel libopenssl-devel libtool lsb-release make openssl-devel
Damjan Marion1211beb2017-08-31 11:23:10 +0200104RPM_SUSE_DEPENDS += python-devel python-pip python-rpm-macros shadow nasm libnuma-devel
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200105
Damjan Marion0df78dd2016-03-29 22:37:02 +0200106ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +0100107 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
108endif
Damjan Marione17fdb52016-02-10 00:36:06 +0100109
Damjan Marionc5e86812016-05-02 19:40:27 +0200110ifeq ($(findstring y,$(UNATTENDED)),y)
111CONFIRM=-y
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700112FORCE=--force-yes
Damjan Marionc5e86812016-05-02 19:40:27 +0200113endif
114
Damjan Marion0dc3f192017-05-31 19:25:08 +0200115TARGETS = vpp
116
117ifneq ($(SAMPLE_PLUGIN),no)
118TARGETS += sample-plugin
119endif
120
Damjan Marione17fdb52016-02-10 00:36:06 +0100121.PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
122.PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
Damjan Marioncb034b92016-12-28 18:38:59 +0100123.PHONY: ctags cscope
Klement Sekera277b89c2016-10-28 13:20:27 +0200124.PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
Juraj Sloboda0279b292016-11-16 19:50:24 +0100125.PHONY: test-cov test-wipe-cov
Damjan Marione17fdb52016-02-10 00:36:06 +0100126
127help:
128 @echo "Make Targets:"
129 @echo " bootstrap - prepare tree for build"
Damjan Marionebb27fb2016-02-25 16:26:01 +0100130 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +0100131 @echo " wipe - wipe all products of debug build "
132 @echo " wipe-release - wipe all products of release build "
133 @echo " build - build debug binaries"
134 @echo " build-release - build release binaries"
Dave Barach3ad77042017-01-04 17:24:32 -0500135 @echo " build-coverity - build coverity artifacts"
Damjan Marione17fdb52016-02-10 00:36:06 +0100136 @echo " rebuild - wipe and build debug binares"
137 @echo " rebuild-release - wipe and build release binares"
138 @echo " run - run debug binary"
139 @echo " run-release - run release binary"
140 @echo " debug - run debug binary with debugger"
141 @echo " debug-release - run release binary with debugger"
Klement Sekera87134932017-03-07 11:39:27 +0100142 @echo " test - build and run (basic) functional tests"
143 @echo " test-debug - build and run (basic) functional tests (debug build)"
144 @echo " test-all - build and run (all) functional tests"
145 @echo " test-all-debug - build and run (all) functional tests (debug build)"
Klement Sekeraa86e2892017-03-09 08:01:52 +0100146 @echo " test-shell - enter shell with test environment"
147 @echo " test-shell-debug - enter shell with test environment (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200148 @echo " test-wipe - wipe files generated by unit tests"
Damjan Marionf56b77a2016-10-03 19:44:57 +0200149 @echo " retest - run functional tests"
150 @echo " retest-debug - run functional tests (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +0200151 @echo " test-help - show help on test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100152 @echo " run-vat - run vpp-api-test tool"
153 @echo " pkg-deb - build DEB packages"
154 @echo " pkg-rpm - build RPM packages"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100155 @echo " dpdk-install-dev - install DPDK development packages"
Damjan Marione6f90232016-03-16 22:49:05 +0100156 @echo " ctags - (re)generate ctags database"
Damjan Mariona7775382016-07-07 17:56:48 +0200157 @echo " gtags - (re)generate gtags database"
Damjan Marione6f90232016-03-16 22:49:05 +0100158 @echo " cscope - (re)generate cscope database"
Damjan Marion24704852016-09-07 13:10:50 +0200159 @echo " checkstyle - check coding style"
160 @echo " fixstyle - fix coding style"
Chris Luke1d1644c2016-05-13 13:41:36 -0400161 @echo " doxygen - (re)generate documentation"
Chris Luke54ccf222016-07-25 16:38:11 -0400162 @echo " bootstrap-doxygen - setup Doxygen dependencies"
Chris Luke1d1644c2016-05-13 13:41:36 -0400163 @echo " wipe-doxygen - wipe all generated documentation"
Klement Sekera277b89c2016-10-28 13:20:27 +0200164 @echo " test-doc - generate documentation for test framework"
165 @echo " test-wipe-doc - wipe documentation for test framework"
Juraj Sloboda0279b292016-11-16 19:50:24 +0100166 @echo " test-cov - generate code coverage report for test framework"
167 @echo " test-wipe-cov - wipe code coverage report for test framework"
Klement Sekera72715ee2017-01-17 10:37:05 +0100168 @echo " test-checkstyle - check PEP8 compliance for test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100169 @echo ""
170 @echo "Make Arguments:"
Damjan Marionb1dab652017-06-30 11:51:41 +0200171 @echo " V=[0|1] - set build verbosity level"
172 @echo " STARTUP_CONF=<path> - startup configuration file"
173 @echo " (e.g. /etc/vpp/startup.conf)"
174 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
175 @echo " It also sets STARTUP_CONF if"
176 @echo " startup.conf file is present"
177 @echo " GDB=<path> - gdb binary to use for debugging"
178 @echo " PLATFORM=<name> - target platform. default is vpp"
179 @echo " TEST=<filter> - apply filter to test set, see test-help"
180 @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to"
181 @echo " autogenerated startup.conf"
182 @echo " (e.g. \"no-pci\" )"
183 @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin"
184 @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which"
185 @echo " should not be loaded"
Damjan Marione17fdb52016-02-10 00:36:06 +0100186 @echo ""
Klement Sekera277b89c2016-10-28 13:20:27 +0200187 @echo "Current Argument Values:"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200188 @echo " V = $(V)"
189 @echo " STARTUP_CONF = $(STARTUP_CONF)"
190 @echo " STARTUP_DIR = $(STARTUP_DIR)"
191 @echo " GDB = $(GDB)"
192 @echo " PLATFORM = $(PLATFORM)"
193 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200194 @echo " DPDK_CONFIG = $(DPDK_CONFIG)"
Damjan Marion0dc3f192017-05-31 19:25:08 +0200195 @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)"
Damjan Marionb1dab652017-06-30 11:51:41 +0200196 @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)"
Damjan Marione17fdb52016-02-10 00:36:06 +0100197
198$(BR)/.bootstrap.ok:
Damjan Marionc21d59f2016-11-19 12:04:34 +0100199ifeq ($(findstring y,$(UNATTENDED)),y)
200 make install-dep
201endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200202ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marione17fdb52016-02-10 00:36:06 +0100203 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
204 if [ -n "$$MISSING" ] ; then \
205 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +0100206 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +0100207 exit 1 ; \
208 fi ; \
209 exit 0
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400210else ifneq ("$(wildcard /etc/redhat-release)","")
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400211 @for i in $(RPM_DEPENDS) ; do \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400212 RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3) ; \
Thomas F Herbertbd8e2422017-08-03 11:04:24 -0400213 MISSING+=$$(rpm -q $$RPM | grep "^package") ; \
Thomas F Herbert70efbfc2017-03-20 19:19:51 -0400214 done ; \
215 if [ -n "$$MISSING" ] ; then \
216 echo "Please install missing RPMs: \n$$MISSING\n" ; \
217 echo "by executing \"make install-dep\"\n" ; \
218 exit 1 ; \
219 fi ; \
220 exit 0
Damjan Marione17fdb52016-02-10 00:36:06 +0100221endif
Damjan Marion905a7f52016-07-07 20:27:49 +0200222 @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk
Damjan Marione17fdb52016-02-10 00:36:06 +0100223 @echo "#!/bin/bash\n" > $(BR)/path_setup
224 @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
225 @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup
226 @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup
Ole Troan6855f6c2016-04-09 03:16:30 +0200227
Damjan Marione17fdb52016-02-10 00:36:06 +0100228ifeq ("$(wildcard /usr/bin/ccache )","")
229 @echo "WARNING: Please install ccache AYEC and re-run this script"
230else
231 @rm -rf $(BR)/tools/ccache-bin
232 @mkdir -p $(BR)/tools/ccache-bin
233 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
234 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
235endif
Damjan Marion7cd468a2016-12-19 23:05:39 +0100236 @make -C $(BR) V=$(V) is_build_tool=yes tools-install
Damjan Marione17fdb52016-02-10 00:36:06 +0100237 @touch $@
238
239bootstrap: $(BR)/.bootstrap.ok
240
Damjan Marionebb27fb2016-02-25 16:26:01 +0100241install-dep:
Damjan Marion9b6463d2017-05-29 12:29:05 +0200242ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
Damjan Marionc5e86812016-05-02 19:40:27 +0200243ifeq ($(OS_VERSION_ID),14.04)
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700244 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
245 @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
Damjan Marionc5e86812016-05-02 19:40:27 +0200246endif
Damjan Marion9b6463d2017-05-29 12:29:05 +0200247ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
248 @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
249 || ( echo "Please install jessie-backports" ; exit 1 )
250endif
Ed Warnickeeb82e7f2017-02-01 16:08:51 -0800251 @sudo -E apt-get update
Damjan Marion9b6463d2017-05-29 12:29:05 +0200252 @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500253else ifneq ("$(wildcard /etc/redhat-release)","")
Gabriel Ganneb17402e2017-01-02 16:44:21 +0100254 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
255 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
Thomas F Herbertbc1c8482017-05-17 19:00:07 -0400256 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs zlib
Marco Varlesed6ad5a52017-06-01 15:20:15 +0200257else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
258 @sudo -E zypper -n install -y $(RPM_SUSE_DEPENDS)
Damjan Marionebb27fb2016-02-25 16:26:01 +0100259else
Damjan Marion9b6463d2017-05-29 12:29:05 +0200260 $(error "This option currently works only on Ubuntu, Debian or Centos systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100261endif
262
Damjan Marione17fdb52016-02-10 00:36:06 +0100263define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200264 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100265endef
266
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400267$(BR)/scripts/.version:
268ifneq ("$(wildcard /etc/redhat-release)","")
269 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
270else
271 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
272endif
273
Damjan Marionc06eeb02017-04-18 15:26:39 +0200274DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
275DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400276
Damjan Marionc06eeb02017-04-18 15:26:39 +0200277dist:
Thomas F Herbert8d487222017-07-18 15:48:03 -0400278 @if git rev-parse 2> /dev/null ; then \
279 git archive \
280 --prefix=$(DIST_SUBDIR)/ \
281 --format=tar \
282 -o $(DIST_FILE) \
283 HEAD ; \
284 git describe > $(BR)/.version ; \
285 else \
286 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
287 src/scripts/version > $(BR)/.version ; \
288 fi
Damjan Marionc06eeb02017-04-18 15:26:39 +0200289 @tar --append \
290 --file $(DIST_FILE) \
291 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
292 $(BR)/.version
293 @$(RM) $(BR)/.version $(DIST_FILE).xz
294 @xz -v --threads=0 $(DIST_FILE)
295 @$(RM) $(BR)/vpp-latest.tar.xz
296 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400297
Damjan Marione17fdb52016-02-10 00:36:06 +0100298build: $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200299 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100300
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400301wipedist:
Damjan Marionc06eeb02017-04-18 15:26:39 +0200302 @$(RM) $(BR)/*.tar.xz
Thomas F Herbert20a29c72016-10-13 18:36:50 -0400303
304wipe: wipedist $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200305 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100306
307rebuild: wipe build
308
309build-release: $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200310 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100311
312wipe-release: $(BR)/.bootstrap.ok
Damjan Marion0dc3f192017-05-31 19:25:08 +0200313 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
Damjan Marione17fdb52016-02-10 00:36:06 +0100314
315rebuild-release: wipe-release build-release
316
Damjan Marion6484b3b2017-01-15 21:30:50 +0100317export VPP_PYTHON_PREFIX=$(BR)/python
Klement Sekeraf62ae122016-10-11 11:47:09 +0200318
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700319libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
320
Damjan Marionf56b77a2016-10-03 19:44:57 +0200321define test
Damjan Marioncb034b92016-12-28 18:38:59 +0100322 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700323 $(eval libs:=lib lib64)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200324 make -C test \
Klement Sekera993e0ed2017-03-16 09:14:59 +0100325 TEST_DIR=$(WS_ROOT)/test \
Juraj Sloboda0279b292016-11-16 19:50:24 +0100326 VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
Klement Sekeraf62ae122016-10-11 11:47:09 +0200327 VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700328 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
Ole Troan7e3a8752016-12-05 10:27:09 +0100329 VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
Igor Mikhailov (imichail)ee29dd22017-05-09 23:27:14 -0700330 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
Klement Sekera87134932017-03-07 11:39:27 +0100331 EXTENDED_TESTS=$(EXTENDED_TESTS) \
vagrant937bf302017-04-07 01:48:47 +0000332 PYTHON=$(PYTHON) \
Damjan Marion6484b3b2017-01-15 21:30:50 +0100333 $(3)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200334endef
335
Peter Ginchev53194292016-10-14 10:23:37 +0300336test: bootstrap
Damjan Marion374e2c52017-03-09 20:38:15 +0100337 $(call test,vpp,vpp,test)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200338
Peter Ginchev53194292016-10-14 10:23:37 +0300339test-debug: bootstrap
Damjan Marion374e2c52017-03-09 20:38:15 +0100340 $(call test,vpp,vpp_debug,test)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200341
Klement Sekera87134932017-03-07 11:39:27 +0100342test-all: bootstrap
343 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100344 $(call test,vpp,vpp,test)
Klement Sekera87134932017-03-07 11:39:27 +0100345
346test-all-debug: bootstrap
347 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100348 $(call test,vpp,vpp_debug,test)
Klement Sekera87134932017-03-07 11:39:27 +0100349
Klement Sekera277b89c2016-10-28 13:20:27 +0200350test-help:
351 @make -C test help
Klement Sekeraf62ae122016-10-11 11:47:09 +0200352
Klement Sekera277b89c2016-10-28 13:20:27 +0200353test-wipe:
354 @make -C test wipe
355
Klement Sekeraa86e2892017-03-09 08:01:52 +0100356test-shell: bootstrap
Klement Sekera993e0ed2017-03-16 09:14:59 +0100357 $(call test,vpp,vpp,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100358
359test-shell-debug: bootstrap
Klement Sekera993e0ed2017-03-16 09:14:59 +0100360 $(call test,vpp,vpp_debug,shell)
Klement Sekeraa86e2892017-03-09 08:01:52 +0100361
Klement Sekera277b89c2016-10-28 13:20:27 +0200362test-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100363 @make -C test doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200364
365test-wipe-doc:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100366 @make -C test wipe-doc
Damjan Marionf56b77a2016-10-03 19:44:57 +0200367
Klement Sekera9225dee2016-12-12 08:36:58 +0100368test-cov: bootstrap
Klement Sekera88d38c42017-03-21 08:27:18 +0100369 $(eval EXTENDED_TESTS=yes)
Damjan Marion374e2c52017-03-09 20:38:15 +0100370 $(call test,vpp,vpp_gcov,cov)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100371
372test-wipe-cov:
Damjan Marion6484b3b2017-01-15 21:30:50 +0100373 @make -C test wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100374
Klement Sekera72715ee2017-01-17 10:37:05 +0100375test-checkstyle:
376 @make -C test checkstyle
377
Damjan Marionf56b77a2016-10-03 19:44:57 +0200378retest:
Damjan Marion374e2c52017-03-09 20:38:15 +0100379 $(call test,vpp,vpp,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200380
381retest-debug:
Damjan Marion374e2c52017-03-09 20:38:15 +0100382 $(call test,vpp,vpp_debug,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200383
Damjan Marioneef4d992016-02-23 22:04:50 +0100384STARTUP_DIR ?= $(PWD)
Damjan Marione17fdb52016-02-10 00:36:06 +0100385ifeq ("$(wildcard $(STARTUP_CONF))","")
386define run
387 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
388 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Mariona7775382016-07-07 17:56:48 +0200389 @cd $(STARTUP_DIR) && \
Damjan Marion0dc3f192017-05-31 19:25:08 +0200390 sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) \
391 plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
Damjan Marione17fdb52016-02-10 00:36:06 +0100392endef
393else
394define run
Damjan Mariona7775382016-07-07 17:56:48 +0200395 @cd $(STARTUP_DIR) && \
Damjan Marion0dc3f192017-05-31 19:25:08 +0200396 sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') \
397 plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
Damjan Marione17fdb52016-02-10 00:36:06 +0100398endef
399endif
400
Damjan Marione6f90232016-03-16 22:49:05 +0100401%.files: .FORCE
402 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
403 \( -not -path './build-root*' -o -path \
404 './build-root/build-vpp_debug-native/dpdk*' \) > $@
405
406.FORCE:
407
Damjan Marione17fdb52016-02-10 00:36:06 +0100408run:
Damjan Mariona7775382016-07-07 17:56:48 +0200409 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100410
411run-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200412 $(call run, $(BR)/install-$(PLATFORM)-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100413
414debug:
Damjan Mariona7775382016-07-07 17:56:48 +0200415 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100416
Dave Barach3ad77042017-01-04 17:24:32 -0500417build-coverity:
418 $(call make,$(PLATFORM)_coverity,install-packages)
419
Damjan Marione17fdb52016-02-10 00:36:06 +0100420debug-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200421 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100422
423build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100424 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100425
426run-vat:
Matus Fabian5d224482017-01-02 04:44:03 -0800427 @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100428
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100429pkg-deb:
Damjan Marione6f90232016-03-16 22:49:05 +0100430 $(call make,$(PLATFORM),install-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100431
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100432pkg-rpm: dist
Damjan Marionc06eeb02017-04-18 15:26:39 +0200433 make -C extras/rpm
Damjan Marione6f90232016-03-16 22:49:05 +0100434
Thomas F Herbertb60f4962017-07-19 19:17:15 -0400435pkg-srpm: dist
436 make -C extras/rpm srpm
437
Damjan Marion2ce7f982017-01-09 20:24:50 +0100438dpdk-install-dev:
439 make -C dpdk install-$(PKG)
440
Damjan Marione6f90232016-03-16 22:49:05 +0100441ctags: ctags.files
442 @ctags --totals --tag-relative -L $<
443 @rm $<
444
Keith Burns (alagalah)4b72a582016-07-02 17:54:36 -0700445gtags: ctags
446 @gtags --gtagslabel=ctags
447
Damjan Marione6f90232016-03-16 22:49:05 +0100448cscope: cscope.files
449 @cscope -b -q -v
Marek Gradzki60c63c72016-04-26 08:01:31 +0200450
Damjan Marion24704852016-09-07 13:10:50 +0200451checkstyle:
452 @build-root/scripts/checkstyle.sh
453
454fixstyle:
455 @build-root/scripts/checkstyle.sh --fix
Chris Lukeb5850972016-05-03 16:34:59 -0400456
Chris Luke1d1644c2016-05-13 13:41:36 -0400457#
458# Build the documentation
459#
460
Chris Luke54ccf222016-07-25 16:38:11 -0400461# Doxygen configuration and our utility scripts
462export DOXY_DIR ?= $(WS_ROOT)/doxygen
463
464define make-doxy
Damjan Marion6484b3b2017-01-15 21:30:50 +0100465 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
Chris Luke54ccf222016-07-25 16:38:11 -0400466endef
467
468.PHONY: bootstrap-doxygen doxygen wipe-doxygen
469
Damjan Marion6bbf83a2017-01-10 10:39:21 +0100470bootstrap-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400471 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400472
Chris Lukeb5850972016-05-03 16:34:59 -0400473doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400474 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400475
476wipe-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400477 $(call make-doxy)
478
Damjan Marione30872e2016-11-12 01:23:55 +0100479define banner
480 @echo "========================================================================"
481 @echo " $(1)"
482 @echo "========================================================================"
483 @echo " "
484endef
485
Peter Mikusad625f52017-05-31 15:23:59 +0000486verify: install-dep $(BR)/.bootstrap.ok dpdk-install-dev
Ed Warnickeddff8a42016-11-22 17:57:30 +0000487 $(call banner,"Building for PLATFORM=vpp using gcc")
Peter Mikusad625f52017-05-31 15:23:59 +0000488 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
Damjan Marion2ce7f982017-01-09 20:24:50 +0100489ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
Damjan Marione30872e2016-11-12 01:23:55 +0100490 $(call banner,"Installing dependencies")
491 @sudo -E apt-get update
492 @sudo -E apt-get $(CONFIRM) $(FORCE) install clang
493 $(call banner,"Building for PLATFORM=vpp using clang")
Peter Mikusad625f52017-05-31 15:23:59 +0000494 @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
Damjan Marione30872e2016-11-12 01:23:55 +0100495endif
Damjan Marion686c1c82017-04-19 14:09:07 +0200496 $(call banner,"Building sample-plugin")
497 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
Damjan Marion2ce7f982017-01-09 20:24:50 +0100498 $(call banner,"Building $(PKG) packages")
Peter Mikusad625f52017-05-31 15:23:59 +0000499 @make pkg-$(PKG)
Damjan Marionaade2c52017-05-22 16:56:54 +0200500ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
Klement Sekeraf413bef2017-08-15 07:09:02 +0200501 @make COMPRESS_FAILED_TEST_LOGS=yes test
Damjan Marionaade2c52017-05-22 16:56:54 +0200502endif
Ed Warnickeddff8a42016-11-22 17:57:30 +0000503
Peter Mikusad625f52017-05-31 15:23:59 +0000504