Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 1 | # 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 Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 14 | export WS_ROOT=$(CURDIR) |
| 15 | export BR=$(WS_ROOT)/build-root |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 16 | CCACHE_DIR?=$(BR)/.ccache |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 17 | GDB?=gdb |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 18 | PLATFORM?=vpp |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 19 | SAMPLE_PLUGIN?=no |
Brian Brooks | 40b655c | 2017-09-22 12:26:34 -0500 | [diff] [blame] | 20 | MACHINE=$(shell uname -m) |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 21 | SUDO?=sudo |
Brian Brooks | 40b655c | 2017-09-22 12:26:34 -0500 | [diff] [blame] | 22 | |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 23 | ,:=, |
| 24 | define disable_plugins |
| 25 | $(if $(1), \ |
| 26 | "plugins {" \ |
| 27 | $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \ |
| 28 | " }" \ |
| 29 | ,) |
| 30 | endef |
| 31 | |
| 32 | MINIMAL_STARTUP_CONF=" \ |
| 33 | unix { \ |
| 34 | interactive \ |
| 35 | cli-listen /run/vpp/cli.sock \ |
| 36 | gid $(shell id -g) \ |
| 37 | $(if $(wildcard startup.vpp),"exec startup.vpp",) \ |
| 38 | } \ |
| 39 | $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",) \ |
| 40 | $(call disable_plugins,$(DISABLED_PLUGINS)) \ |
| 41 | " |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 42 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 43 | GDB_ARGS= -ex "handle SIGUSR1 noprint nostop" |
| 44 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 45 | # |
| 46 | # OS Detection |
| 47 | # |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 48 | # We allow Darwin (MacOS) for docs generation; VPP build will still fail. |
| 49 | ifneq ($(shell uname),Darwin) |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 50 | OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
| 51 | OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 52 | endif |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 53 | |
Gabriel Ganne | 898171a | 2017-01-23 12:08:58 +0100 | [diff] [blame] | 54 | ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID)) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 55 | PKG=deb |
Ed Kern | 947fe5e | 2018-04-26 17:13:17 -0600 | [diff] [blame] | 56 | else ifeq ($(filter rhel centos fedora opensuse opensuse-leap,$(OS_ID)),$(OS_ID)) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 57 | PKG=rpm |
| 58 | endif |
| 59 | |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 60 | # +libganglia1-dev if building the gmond plugin |
| 61 | |
Ole Troan | 9d42087 | 2017-10-12 13:06:35 +0200 | [diff] [blame] | 62 | DEB_DEPENDS = curl build-essential autoconf automake ccache |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 63 | DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 64 | DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config |
Sergio Gonzalez Monroy | 6184db3 | 2017-10-27 08:58:38 +0100 | [diff] [blame] | 65 | DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 66 | DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6 check |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 67 | DEB_DEPENDS += libboost-all-dev libffi-dev python-ply libmbedtls-dev |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 68 | ifeq ($(OS_VERSION_ID),14.04) |
| 69 | DEB_DEPENDS += openjdk-8-jdk-headless |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 70 | DEB_DEPENDS += libssl-dev |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 71 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8) |
| 72 | DEB_DEPENDS += openjdk-8-jdk-headless |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 73 | DEB_DEPENDS += libssl-dev |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 74 | APT_ARGS = -t jessie-backports |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 75 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9) |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 76 | DEB_DEPENDS += default-jdk-headless |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 77 | DEB_DEPENDS += libssl1.0-dev |
| 78 | else |
Dave Wallace | f91fe3b | 2017-09-25 15:00:36 -0400 | [diff] [blame] | 79 | DEB_DEPENDS += default-jdk-headless |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 80 | DEB_DEPENDS += libssl-dev |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 81 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 82 | |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 83 | RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils |
Gabriel Ganne | 555d920 | 2017-09-06 10:44:07 +0200 | [diff] [blame] | 84 | RPM_DEPENDS += apr-devel |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 85 | RPM_DEPENDS += numactl-devel |
Thomas F Herbert | e412891 | 2017-10-09 15:03:55 -0400 | [diff] [blame] | 86 | RPM_DEPENDS += check check-devel |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 87 | RPM_DEPENDS += boost boost-devel |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 88 | RPM_DEPENDS += selinux-policy selinux-policy-devel |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 89 | |
Igor Mikhailov (imichail) | 3420896 | 2017-05-02 00:03:09 -0700 | [diff] [blame] | 90 | ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25) |
Thomas F Herbert | 6673178 | 2018-03-05 17:21:56 -0500 | [diff] [blame] | 91 | RPM_DEPENDS += subunit subunit-devel |
Thomas F Herbert | 440751b | 2017-09-11 08:58:23 -0400 | [diff] [blame] | 92 | RPM_DEPENDS += openssl-devel |
Gabriel Ganne | b295782 | 2018-01-25 10:03:13 +0100 | [diff] [blame] | 93 | RPM_DEPENDS += python-devel python2-ply |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 94 | RPM_DEPENDS += python2-virtualenv |
Thomas F Herbert | 5f56c09 | 2018-04-05 16:09:58 -0400 | [diff] [blame] | 95 | RPM_DEPENDS += mbedtls-devel |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 96 | RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries' |
Thomas F Herbert | da78c85 | 2017-08-31 10:22:57 -0400 | [diff] [blame] | 97 | else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0) |
Thomas F Herbert | 6673178 | 2018-03-05 17:21:56 -0500 | [diff] [blame] | 98 | RPM_DEPENDS += subunit subunit-devel |
Thomas F Herbert | 440751b | 2017-09-11 08:58:23 -0400 | [diff] [blame] | 99 | RPM_DEPENDS += compat-openssl10-devel |
Gabriel Ganne | b295782 | 2018-01-25 10:03:13 +0100 | [diff] [blame] | 100 | RPM_DEPENDS += python2-devel python2-ply |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 101 | RPM_DEPENDS += python2-virtualenv |
Thomas F Herbert | 5f56c09 | 2018-04-05 16:09:58 -0400 | [diff] [blame] | 102 | RPM_DEPENDS += mbedtls-devel |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 103 | RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries' |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 104 | else |
Thomas F Herbert | 440751b | 2017-09-11 08:58:23 -0400 | [diff] [blame] | 105 | RPM_DEPENDS += openssl-devel |
Jon Loeliger | 28227ad | 2018-01-24 13:47:46 -0600 | [diff] [blame] | 106 | RPM_DEPENDS += python-devel python-ply |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 107 | RPM_DEPENDS += python-virtualenv |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 108 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 109 | endif |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 110 | |
| 111 | # +ganglia-devel if building the ganglia plugin |
| 112 | |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 113 | RPM_DEPENDS += chrpath libffi-devel rpm-build |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 114 | |
Marco Varlese | db41776 | 2017-10-24 17:02:04 +0200 | [diff] [blame] | 115 | SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2) |
Ed Kern | e3ae09f | 2018-04-06 14:52:54 -0600 | [diff] [blame] | 116 | SUSE_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2) |
Ole Troan | 9d42087 | 2017-10-12 13:06:35 +0200 | [diff] [blame] | 117 | RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath |
| 118 | RPM_SUSE_BUILDTOOLS_DEPS += clang indent libtool make python-ply |
Marco Varlese | fedc455 | 2017-12-12 11:06:17 +0100 | [diff] [blame] | 119 | |
| 120 | RPM_SUSE_DEVEL_DEPS = glibc-devel-static java-1_8_0-openjdk-devel libnuma-devel |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 121 | RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel |
Marco Varlese | fedc455 | 2017-12-12 11:06:17 +0100 | [diff] [blame] | 122 | |
| 123 | RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip |
| 124 | RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros |
| 125 | |
Marco Varlese | db41776 | 2017-10-24 17:02:04 +0200 | [diff] [blame] | 126 | RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build |
Marco Varlese | 5f1231c | 2017-10-10 16:43:14 +0200 | [diff] [blame] | 127 | |
| 128 | ifeq ($(OS_ID),opensuse) |
Ed Kern | e3ae09f | 2018-04-06 14:52:54 -0600 | [diff] [blame] | 129 | ifeq ($(SUSE_NAME),Tumbleweed) |
Marco Varlese | fedc455 | 2017-12-12 11:06:17 +0100 | [diff] [blame] | 130 | RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc |
Marco Varlese | db41776 | 2017-10-24 17:02:04 +0200 | [diff] [blame] | 131 | RPM_SUSE_PYTHON_DEPS += python2-virtualenv |
Marco Varlese | 5f1231c | 2017-10-10 16:43:14 +0200 | [diff] [blame] | 132 | endif |
Ed Kern | e3ae09f | 2018-04-06 14:52:54 -0600 | [diff] [blame] | 133 | ifeq ($(SUSE_ID),15.0) |
| 134 | RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6 |
| 135 | RPM_SUSE_PYTHON_DEPS += python2-virtualenv |
| 136 | else |
| 137 | RPM_SUSE_DEVEL_DEPS += boost_1_61-devel gcc6 |
| 138 | RPM_SUSE_PYTHON_DEPS += python-virtualenv |
| 139 | endif |
Marco Varlese | 5f1231c | 2017-10-10 16:43:14 +0200 | [diff] [blame] | 140 | endif |
Marco Varlese | d6ad5a5 | 2017-06-01 15:20:15 +0200 | [diff] [blame] | 141 | |
Ed Kern | 947fe5e | 2018-04-26 17:13:17 -0600 | [diff] [blame] | 142 | ifeq ($(OS_ID),opensuse-leap) |
| 143 | ifeq ($(SUSE_ID),15.0) |
| 144 | RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6 |
| 145 | RPM_SUSE_PYTHON_DEPS += python2-virtualenv |
| 146 | endif |
| 147 | endif |
| 148 | |
Marco Varlese | db41776 | 2017-10-24 17:02:04 +0200 | [diff] [blame] | 149 | RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS) |
| 150 | |
Damjan Marion | 0df78dd | 2016-03-29 22:37:02 +0200 | [diff] [blame] | 151 | ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),) |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 152 | STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf |
| 153 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 154 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 155 | ifeq ($(findstring y,$(UNATTENDED)),y) |
| 156 | CONFIRM=-y |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 157 | FORCE=--force-yes |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 158 | endif |
| 159 | |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 160 | TARGETS = vpp |
| 161 | |
| 162 | ifneq ($(SAMPLE_PLUGIN),no) |
| 163 | TARGETS += sample-plugin |
| 164 | endif |
| 165 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 166 | .PHONY: help wipe wipe-release build build-release rebuild rebuild-release |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 167 | .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm |
Damjan Marion | cb034b9 | 2016-12-28 18:38:59 +0100 | [diff] [blame] | 168 | .PHONY: ctags cscope |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 169 | .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 170 | .PHONY: test-cov test-wipe-cov |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 171 | |
| 172 | help: |
| 173 | @echo "Make Targets:" |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 174 | @echo " install-dep - install software dependencies" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 175 | @echo " wipe - wipe all products of debug build " |
| 176 | @echo " wipe-release - wipe all products of release build " |
| 177 | @echo " build - build debug binaries" |
| 178 | @echo " build-release - build release binaries" |
Dave Barach | 3ad7704 | 2017-01-04 17:24:32 -0500 | [diff] [blame] | 179 | @echo " build-coverity - build coverity artifacts" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 180 | @echo " rebuild - wipe and build debug binares" |
| 181 | @echo " rebuild-release - wipe and build release binares" |
| 182 | @echo " run - run debug binary" |
| 183 | @echo " run-release - run release binary" |
| 184 | @echo " debug - run debug binary with debugger" |
| 185 | @echo " debug-release - run release binary with debugger" |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 186 | @echo " test - build and run (basic) functional tests" |
| 187 | @echo " test-debug - build and run (basic) functional tests (debug build)" |
| 188 | @echo " test-all - build and run (all) functional tests" |
| 189 | @echo " test-all-debug - build and run (all) functional tests (debug build)" |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 190 | @echo " test-shell - enter shell with test environment" |
| 191 | @echo " test-shell-debug - enter shell with test environment (debug build)" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 192 | @echo " test-wipe - wipe files generated by unit tests" |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 193 | @echo " retest - run functional tests" |
| 194 | @echo " retest-debug - run functional tests (debug build)" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 195 | @echo " test-help - show help on test framework" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 196 | @echo " run-vat - run vpp-api-test tool" |
| 197 | @echo " pkg-deb - build DEB packages" |
| 198 | @echo " pkg-rpm - build RPM packages" |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 199 | @echo " dpdk-install-dev - install DPDK development packages" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 200 | @echo " ctags - (re)generate ctags database" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 201 | @echo " gtags - (re)generate gtags database" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 202 | @echo " cscope - (re)generate cscope database" |
Damjan Marion | 2470485 | 2016-09-07 13:10:50 +0200 | [diff] [blame] | 203 | @echo " checkstyle - check coding style" |
| 204 | @echo " fixstyle - fix coding style" |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 205 | @echo " doxygen - (re)generate documentation" |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 206 | @echo " bootstrap-doxygen - setup Doxygen dependencies" |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 207 | @echo " wipe-doxygen - wipe all generated documentation" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 208 | @echo " test-doc - generate documentation for test framework" |
| 209 | @echo " test-wipe-doc - wipe documentation for test framework" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 210 | @echo " test-cov - generate code coverage report for test framework" |
| 211 | @echo " test-wipe-cov - wipe code coverage report for test framework" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 212 | @echo " test-checkstyle - check PEP8 compliance for test framework" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 213 | @echo "" |
| 214 | @echo "Make Arguments:" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 215 | @echo " V=[0|1] - set build verbosity level" |
| 216 | @echo " STARTUP_CONF=<path> - startup configuration file" |
| 217 | @echo " (e.g. /etc/vpp/startup.conf)" |
| 218 | @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)" |
| 219 | @echo " It also sets STARTUP_CONF if" |
| 220 | @echo " startup.conf file is present" |
| 221 | @echo " GDB=<path> - gdb binary to use for debugging" |
| 222 | @echo " PLATFORM=<name> - target platform. default is vpp" |
| 223 | @echo " TEST=<filter> - apply filter to test set, see test-help" |
| 224 | @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to" |
| 225 | @echo " autogenerated startup.conf" |
| 226 | @echo " (e.g. \"no-pci\" )" |
| 227 | @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin" |
| 228 | @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which" |
| 229 | @echo " should not be loaded" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 230 | @echo "" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 231 | @echo "Current Argument Values:" |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 232 | @echo " V = $(V)" |
| 233 | @echo " STARTUP_CONF = $(STARTUP_CONF)" |
| 234 | @echo " STARTUP_DIR = $(STARTUP_DIR)" |
| 235 | @echo " GDB = $(GDB)" |
| 236 | @echo " PLATFORM = $(PLATFORM)" |
| 237 | @echo " DPDK_VERSION = $(DPDK_VERSION)" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 238 | @echo " DPDK_CONFIG = $(DPDK_CONFIG)" |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 239 | @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 240 | @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 241 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 242 | $(BR)/.deps.ok: |
Damjan Marion | c21d59f | 2016-11-19 12:04:34 +0100 | [diff] [blame] | 243 | ifeq ($(findstring y,$(UNATTENDED)),y) |
| 244 | make install-dep |
| 245 | endif |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 246 | ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID)) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 247 | @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \ |
| 248 | if [ -n "$$MISSING" ] ; then \ |
| 249 | echo "\nPlease install missing packages: \n$$MISSING\n" ; \ |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 250 | echo "by executing \"make install-dep\"\n" ; \ |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 251 | exit 1 ; \ |
| 252 | fi ; \ |
| 253 | exit 0 |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 254 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 255 | @for i in $(RPM_DEPENDS) ; do \ |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 256 | RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3) ; \ |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 257 | MISSING+=$$(rpm -q $$RPM | grep "^package") ; \ |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 258 | done ; \ |
| 259 | if [ -n "$$MISSING" ] ; then \ |
| 260 | echo "Please install missing RPMs: \n$$MISSING\n" ; \ |
| 261 | echo "by executing \"make install-dep\"\n" ; \ |
| 262 | exit 1 ; \ |
| 263 | fi ; \ |
| 264 | exit 0 |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 265 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 266 | @touch $@ |
| 267 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 268 | bootstrap: |
| 269 | @echo "'make bootstrap' is not needed anymore" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 270 | |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 271 | install-dep: |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 272 | ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID)) |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 273 | ifeq ($(OS_VERSION_ID),14.04) |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 274 | @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common |
| 275 | @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM) |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 276 | endif |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 277 | ifeq ($(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 ) |
| 280 | endif |
Ed Warnicke | eb82e7f | 2017-02-01 16:08:51 -0800 | [diff] [blame] | 281 | @sudo -E apt-get update |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 282 | @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS) |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 283 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Gabriel Ganne | b17402e | 2017-01-02 16:44:21 +0100 | [diff] [blame] | 284 | @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 285 | @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 286 | @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib |
Marco Varlese | d6ad5a5 | 2017-06-01 15:20:15 +0200 | [diff] [blame] | 287 | else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID)) |
Marco Varlese | 50ec721 | 2017-10-10 09:30:33 +0200 | [diff] [blame] | 288 | @sudo -E zypper refresh |
| 289 | @sudo -E zypper install -y $(RPM_SUSE_DEPENDS) |
Ed Kern | 947fe5e | 2018-04-26 17:13:17 -0600 | [diff] [blame] | 290 | else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID)) |
| 291 | @sudo -E zypper refresh |
| 292 | @sudo -E zypper install -y $(RPM_SUSE_DEPENDS) |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 293 | else |
Marco Varlese | 50ec721 | 2017-10-10 09:30:33 +0200 | [diff] [blame] | 294 | $(error "This option currently works only on Ubuntu, Debian, Centos or openSUSE systems") |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 295 | endif |
| 296 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 297 | define make |
Damjan Marion | 6b1d7c5 | 2016-04-26 18:19:47 +0200 | [diff] [blame] | 298 | @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 299 | endef |
| 300 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 301 | $(BR)/scripts/.version: |
| 302 | ifneq ("$(wildcard /etc/redhat-release)","") |
| 303 | $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version) |
| 304 | else |
| 305 | $(shell $(BR)/scripts/version > $(BR)/scripts/.version) |
| 306 | endif |
| 307 | |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 308 | DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar |
| 309 | DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-) |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 310 | |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 311 | dist: |
Thomas F Herbert | 8d48722 | 2017-07-18 15:48:03 -0400 | [diff] [blame] | 312 | @if git rev-parse 2> /dev/null ; then \ |
| 313 | git archive \ |
| 314 | --prefix=$(DIST_SUBDIR)/ \ |
| 315 | --format=tar \ |
| 316 | -o $(DIST_FILE) \ |
| 317 | HEAD ; \ |
| 318 | git describe > $(BR)/.version ; \ |
| 319 | else \ |
| 320 | (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \ |
| 321 | src/scripts/version > $(BR)/.version ; \ |
| 322 | fi |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 323 | @tar --append \ |
| 324 | --file $(DIST_FILE) \ |
| 325 | --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \ |
| 326 | $(BR)/.version |
| 327 | @$(RM) $(BR)/.version $(DIST_FILE).xz |
| 328 | @xz -v --threads=0 $(DIST_FILE) |
| 329 | @$(RM) $(BR)/vpp-latest.tar.xz |
| 330 | @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 331 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 332 | build: $(BR)/.deps.ok |
Damjan Marion | 9d7a7ba | 2018-03-14 20:58:39 +0100 | [diff] [blame] | 333 | $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 334 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 335 | wipedist: |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 336 | @$(RM) $(BR)/*.tar.xz |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 337 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 338 | wipe: wipedist test-wipe $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 339 | $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 340 | |
| 341 | rebuild: wipe build |
| 342 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 343 | build-release: $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 344 | $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 345 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 346 | wipe-release: test-wipe $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 347 | $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 348 | |
| 349 | rebuild-release: wipe-release build-release |
| 350 | |
Ed Kern | 56ccc23 | 2018-04-02 16:42:48 -0600 | [diff] [blame] | 351 | export VPP_PYTHON_PREFIX ?= $(BR)/python |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 352 | |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 353 | libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3))) |
| 354 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 355 | define test |
Damjan Marion | 164e5f8 | 2018-04-25 19:11:15 +0200 | [diff] [blame] | 356 | $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install vom-install,) |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 357 | $(eval libs:=lib lib64) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 358 | make -C test \ |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 359 | TEST_DIR=$(WS_ROOT)/test \ |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 360 | VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \ |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 361 | VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \ |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 362 | VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \ |
Ole Troan | 7e3a875 | 2016-12-05 10:27:09 +0100 | [diff] [blame] | 363 | VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \ |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 364 | LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \ |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 365 | EXTENDED_TESTS=$(EXTENDED_TESTS) \ |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 366 | PYTHON=$(PYTHON) \ |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 367 | OS_ID=$(OS_ID) \ |
Klement Sekera | a3d933c | 2017-11-06 09:46:00 +0100 | [diff] [blame] | 368 | CACHE_OUTPUT=$(CACHE_OUTPUT) \ |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 369 | $(3) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 370 | endef |
| 371 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 372 | test: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 373 | $(call test,vpp,vpp,test) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 374 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 375 | test-debug: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 376 | $(call test,vpp,vpp_debug,test) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 377 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 378 | test-all: |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 379 | $(eval EXTENDED_TESTS=yes) |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 380 | $(call test,vpp,vpp,test) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 381 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 382 | test-all-debug: |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 383 | $(eval EXTENDED_TESTS=yes) |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 384 | $(call test,vpp,vpp_debug,test) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 385 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 386 | test-help: |
| 387 | @make -C test help |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 388 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 389 | test-wipe: |
| 390 | @make -C test wipe |
| 391 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 392 | test-shell: |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 393 | $(call test,vpp,vpp,shell) |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 394 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 395 | test-shell-debug: |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 396 | $(call test,vpp,vpp_debug,shell) |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 397 | |
Ed Kern | 56ccc23 | 2018-04-02 16:42:48 -0600 | [diff] [blame] | 398 | test-dep: |
| 399 | @make -C test test-dep |
| 400 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 401 | test-doc: |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 402 | @make -C test doc |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 403 | |
| 404 | test-wipe-doc: |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 405 | @make -C test wipe-doc |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 406 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 407 | test-cov: |
Klement Sekera | 88d38c4 | 2017-03-21 08:27:18 +0100 | [diff] [blame] | 408 | $(eval EXTENDED_TESTS=yes) |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 409 | $(call test,vpp,vpp_gcov,cov) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 410 | |
| 411 | test-wipe-cov: |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 412 | @make -C test wipe-cov |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 413 | |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 414 | test-checkstyle: |
| 415 | @make -C test checkstyle |
| 416 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 417 | retest: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 418 | $(call test,vpp,vpp,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 419 | |
| 420 | retest-debug: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 421 | $(call test,vpp,vpp_debug,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 422 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 423 | STARTUP_DIR ?= $(PWD) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 424 | ifeq ("$(wildcard $(STARTUP_CONF))","") |
| 425 | define run |
| 426 | @echo "WARNING: STARTUP_CONF not defined or file doesn't exist." |
| 427 | @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 428 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 429 | $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 430 | endef |
| 431 | else |
| 432 | define run |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 433 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 434 | $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 435 | endef |
| 436 | endif |
| 437 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 438 | %.files: .FORCE |
| 439 | @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \ |
| 440 | \( -not -path './build-root*' -o -path \ |
| 441 | './build-root/build-vpp_debug-native/dpdk*' \) > $@ |
| 442 | |
| 443 | .FORCE: |
| 444 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 445 | run: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 446 | $(call run, $(BR)/install-$(PLATFORM)_debug-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 447 | |
| 448 | run-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 449 | $(call run, $(BR)/install-$(PLATFORM)-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 450 | |
| 451 | debug: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 452 | $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 453 | |
Dave Barach | 3ad7704 | 2017-01-04 17:24:32 -0500 | [diff] [blame] | 454 | build-coverity: |
| 455 | $(call make,$(PLATFORM)_coverity,install-packages) |
| 456 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 457 | debug-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 458 | $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 459 | |
| 460 | build-vat: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 461 | $(call make,$(PLATFORM)_debug,vpp-api-test-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 462 | |
| 463 | run-vat: |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 464 | @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 465 | |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 466 | pkg-deb: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 467 | $(call make,$(PLATFORM),install-deb) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 468 | |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 469 | pkg-rpm: dist |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 470 | make -C extras/rpm |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 471 | |
Thomas F Herbert | b60f496 | 2017-07-19 19:17:15 -0400 | [diff] [blame] | 472 | pkg-srpm: dist |
| 473 | make -C extras/rpm srpm |
| 474 | |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 475 | dpdk-install-dev: |
| 476 | make -C dpdk install-$(PKG) |
| 477 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 478 | ctags: ctags.files |
| 479 | @ctags --totals --tag-relative -L $< |
| 480 | @rm $< |
| 481 | |
Keith Burns (alagalah) | 4b72a58 | 2016-07-02 17:54:36 -0700 | [diff] [blame] | 482 | gtags: ctags |
| 483 | @gtags --gtagslabel=ctags |
| 484 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 485 | cscope: cscope.files |
| 486 | @cscope -b -q -v |
Marek Gradzki | 60c63c7 | 2016-04-26 08:01:31 +0200 | [diff] [blame] | 487 | |
Damjan Marion | 2470485 | 2016-09-07 13:10:50 +0200 | [diff] [blame] | 488 | checkstyle: |
| 489 | @build-root/scripts/checkstyle.sh |
| 490 | |
| 491 | fixstyle: |
| 492 | @build-root/scripts/checkstyle.sh --fix |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 493 | |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 494 | # |
| 495 | # Build the documentation |
| 496 | # |
| 497 | |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 498 | # Doxygen configuration and our utility scripts |
| 499 | export DOXY_DIR ?= $(WS_ROOT)/doxygen |
| 500 | |
| 501 | define make-doxy |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 502 | @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 503 | endef |
| 504 | |
| 505 | .PHONY: bootstrap-doxygen doxygen wipe-doxygen |
| 506 | |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 507 | bootstrap-doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 508 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 509 | |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 510 | doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 511 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 512 | |
| 513 | wipe-doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 514 | $(call make-doxy) |
| 515 | |
Damjan Marion | e30872e | 2016-11-12 01:23:55 +0100 | [diff] [blame] | 516 | define banner |
| 517 | @echo "========================================================================" |
| 518 | @echo " $(1)" |
| 519 | @echo "========================================================================" |
| 520 | @echo " " |
| 521 | endef |
| 522 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 523 | verify: install-dep $(BR)/.deps.ok dpdk-install-dev |
Ed Warnicke | ddff8a4 | 2016-11-22 17:57:30 +0000 | [diff] [blame] | 524 | $(call banner,"Building for PLATFORM=vpp using gcc") |
Peter Mikus | ad625f5 | 2017-05-31 15:23:59 +0000 | [diff] [blame] | 525 | @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages |
Damjan Marion | 686c1c8 | 2017-04-19 14:09:07 +0200 | [diff] [blame] | 526 | $(call banner,"Building sample-plugin") |
| 527 | @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 528 | $(call banner,"Building libmemif") |
| 529 | @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install |
Damjan Marion | 164e5f8 | 2018-04-25 19:11:15 +0200 | [diff] [blame] | 530 | $(call banner,"Building VOM") |
| 531 | @make -C build-root PLATFORM=vpp TAG=vpp vom-install |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 532 | $(call banner,"Building $(PKG) packages") |
Peter Mikus | ad625f5 | 2017-05-31 15:23:59 +0000 | [diff] [blame] | 533 | @make pkg-$(PKG) |
Damjan Marion | aade2c5 | 2017-05-22 16:56:54 +0200 | [diff] [blame] | 534 | ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04) |
Damjan Marion | a472f86 | 2017-10-10 19:01:06 +0200 | [diff] [blame] | 535 | @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test |
Damjan Marion | aade2c5 | 2017-05-22 16:56:54 +0200 | [diff] [blame] | 536 | endif |
Ed Warnicke | ddff8a4 | 2016-11-22 17:57:30 +0000 | [diff] [blame] | 537 | |
Peter Mikus | ad625f5 | 2017-05-31 15:23:59 +0000 | [diff] [blame] | 538 | |