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 |
Damjan Marion | 005849e | 2018-07-19 14:39:40 +0200 | [diff] [blame] | 20 | STARTUP_DIR?=$(PWD) |
Brian Brooks | 40b655c | 2017-09-22 12:26:34 -0500 | [diff] [blame] | 21 | MACHINE=$(shell uname -m) |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 22 | SUDO?=sudo |
Damjan Marion | be7ef3b | 2019-09-24 17:45:49 +0200 | [diff] [blame] | 23 | DPDK_CONFIG?=no-pci |
Brian Brooks | 40b655c | 2017-09-22 12:26:34 -0500 | [diff] [blame] | 24 | |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 25 | ,:=, |
| 26 | define disable_plugins |
| 27 | $(if $(1), \ |
| 28 | "plugins {" \ |
| 29 | $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \ |
| 30 | " }" \ |
| 31 | ,) |
| 32 | endef |
| 33 | |
| 34 | MINIMAL_STARTUP_CONF=" \ |
| 35 | unix { \ |
| 36 | interactive \ |
| 37 | cli-listen /run/vpp/cli.sock \ |
| 38 | gid $(shell id -g) \ |
| 39 | $(if $(wildcard startup.vpp),"exec startup.vpp",) \ |
| 40 | } \ |
| 41 | $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",) \ |
| 42 | $(call disable_plugins,$(DISABLED_PLUGINS)) \ |
| 43 | " |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 44 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 45 | GDB_ARGS= -ex "handle SIGUSR1 noprint nostop" |
| 46 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 47 | # |
| 48 | # OS Detection |
| 49 | # |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 50 | # We allow Darwin (MacOS) for docs generation; VPP build will still fail. |
| 51 | ifneq ($(shell uname),Darwin) |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 52 | OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
| 53 | 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] | 54 | endif |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 55 | |
Gabriel Ganne | 898171a | 2017-01-23 12:08:58 +0100 | [diff] [blame] | 56 | ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID)) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 57 | PKG=deb |
Marco Varlese | 19be50e | 2018-05-17 15:46:13 +0200 | [diff] [blame] | 58 | else ifeq ($(filter rhel centos fedora opensuse opensuse-leap opensuse-tumbleweed,$(OS_ID)),$(OS_ID)) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 59 | PKG=rpm |
| 60 | endif |
| 61 | |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 62 | # +libganglia1-dev if building the gmond plugin |
| 63 | |
Ole Troan | 9d42087 | 2017-10-12 13:06:35 +0200 | [diff] [blame] | 64 | DEB_DEPENDS = curl build-essential autoconf automake ccache |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 65 | DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 66 | DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config |
Sergio Gonzalez Monroy | 6184db3 | 2017-10-27 08:58:38 +0100 | [diff] [blame] | 67 | DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev |
Ole Troan | e4a6d69 | 2019-03-13 18:08:42 +0100 | [diff] [blame] | 68 | DEB_DEPENDS += python-all python3-all python3-setuptools python-dev |
| 69 | DEB_DEPENDS += python-virtualenv python-pip libffi6 check |
Paul Vinciguerra | 7e0c48e | 2019-02-01 19:37:45 -0800 | [diff] [blame] | 70 | DEB_DEPENDS += libboost-all-dev libffi-dev python3-ply libmbedtls-dev |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 71 | DEB_DEPENDS += cmake ninja-build uuid-dev python3-jsonschema |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 72 | ifeq ($(OS_VERSION_ID),14.04) |
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 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8) |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 75 | DEB_DEPENDS += libssl-dev |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 76 | APT_ARGS = -t jessie-backports |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 77 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9) |
Anton Ivanov | e6f3b46 | 2017-09-21 13:15:53 +0100 | [diff] [blame] | 78 | DEB_DEPENDS += libssl1.0-dev |
Damjan Marion | 005849e | 2018-07-19 14:39:40 +0200 | [diff] [blame] | 79 | else |
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 | |
Michal Cmarada | 4e633e1 | 2019-01-31 10:57:40 +0100 | [diff] [blame] | 83 | RPM_DEPENDS = redhat-lsb glibc-static |
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 |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 89 | RPM_DEPENDS += ninja-build |
Stephen Hemminger | 6fbef23 | 2018-10-15 12:52:30 -0700 | [diff] [blame] | 90 | RPM_DEPENDS += libuuid-devel |
jdenisco | e869269 | 2019-02-26 09:19:24 -0500 | [diff] [blame] | 91 | RPM_DEPENDS += mbedtls-devel |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 92 | |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 93 | ifeq ($(OS_ID),fedora) |
| 94 | RPM_DEPENDS += dnf-utils |
Thomas F Herbert | 6673178 | 2018-03-05 17:21:56 -0500 | [diff] [blame] | 95 | RPM_DEPENDS += subunit subunit-devel |
Thomas F Herbert | 440751b | 2017-09-11 08:58:23 -0400 | [diff] [blame] | 96 | RPM_DEPENDS += compat-openssl10-devel |
BenoƮt Ganne | 9e6c53b | 2019-04-05 19:04:22 +0200 | [diff] [blame] | 97 | RPM_DEPENDS += python3-devel python3-ply |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 98 | RPM_DEPENDS += python3-virtualenv python3-jsonschema |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 99 | RPM_DEPENDS += cmake |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 100 | RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries' |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 101 | else |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 102 | RPM_DEPENDS += yum-utils |
Thomas F Herbert | 440751b | 2017-09-11 08:58:23 -0400 | [diff] [blame] | 103 | RPM_DEPENDS += openssl-devel |
Paul Vinciguerra | ccf65fb | 2019-04-05 06:45:56 -0700 | [diff] [blame] | 104 | RPM_DEPENDS += python-devel python36-ply |
Ed Kern | c63c016 | 2019-09-17 13:19:42 -0600 | [diff] [blame] | 105 | RPM_DEPENDS += python3-devel python3-pip |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 106 | RPM_DEPENDS += python-virtualenv python36-jsonschema |
Damjan Marion | 855e268 | 2018-08-24 13:37:45 +0200 | [diff] [blame] | 107 | RPM_DEPENDS += devtoolset-7 |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 108 | RPM_DEPENDS += cmake3 |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 109 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 110 | endif |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 111 | |
| 112 | # +ganglia-devel if building the ganglia plugin |
| 113 | |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 114 | RPM_DEPENDS += chrpath libffi-devel rpm-build |
Paul Vinciguerra | 1538824 | 2019-02-27 11:15:04 -0800 | [diff] [blame] | 115 | # lowercase- replace spaces with dashes. |
| 116 | SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | sed -e 's/ /-/' | awk '{print tolower($$0)}') |
Ed Kern | e3ae09f | 2018-04-06 14:52:54 -0600 | [diff] [blame] | 117 | 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] | 118 | RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath |
Paul Vinciguerra | 7e0c48e | 2019-02-01 19:37:45 -0800 | [diff] [blame] | 119 | RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python3-ply |
Marco Varlese | fedc455 | 2017-12-12 11:06:17 +0100 | [diff] [blame] | 120 | |
Michal Cmarada | 4e633e1 | 2019-01-31 10:57:40 +0100 | [diff] [blame] | 121 | RPM_SUSE_DEVEL_DEPS = glibc-devel-static libnuma-devel |
Stephen Hemminger | 6fbef23 | 2018-10-15 12:52:30 -0700 | [diff] [blame] | 122 | RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel libuuid-devel |
Marco Varlese | fedc455 | 2017-12-12 11:06:17 +0100 | [diff] [blame] | 123 | |
| 124 | RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip |
| 125 | RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros |
| 126 | |
Marco Varlese | db41776 | 2017-10-24 17:02:04 +0200 | [diff] [blame] | 127 | RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build |
Marco Varlese | 5f1231c | 2017-10-10 16:43:14 +0200 | [diff] [blame] | 128 | |
| 129 | ifeq ($(OS_ID),opensuse) |
Paul Vinciguerra | 1538824 | 2019-02-27 11:15:04 -0800 | [diff] [blame] | 130 | ifeq ($(SUSE_NAME),tumbleweed) |
Florin Coras | 223548d | 2018-12-27 09:07:32 -0800 | [diff] [blame] | 131 | RPM_SUSE_DEVEL_DEPS = libboost_headers1_68_0-devel-1.68.0 libboost_thread1_68_0-devel-1.68.0 gcc |
Paul Vinciguerra | 7e0c48e | 2019-02-01 19:37:45 -0800 | [diff] [blame] | 132 | RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv |
Marco Varlese | 5f1231c | 2017-10-10 16:43:14 +0200 | [diff] [blame] | 133 | endif |
Ed Kern | e3ae09f | 2018-04-06 14:52:54 -0600 | [diff] [blame] | 134 | ifeq ($(SUSE_ID),15.0) |
Ed Kern | fd9d04d | 2019-02-19 10:27:23 -0700 | [diff] [blame] | 135 | RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc |
Paul Vinciguerra | 7e0c48e | 2019-02-01 19:37:45 -0800 | [diff] [blame] | 136 | RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv |
Ed Kern | e3ae09f | 2018-04-06 14:52:54 -0600 | [diff] [blame] | 137 | else |
Florin Coras | 223548d | 2018-12-27 09:07:32 -0800 | [diff] [blame] | 138 | RPM_SUSE_DEVEL_DEPS += libboost_headers1_68_0-devel-1.68.0 gcc6 |
Ed Kern | e3ae09f | 2018-04-06 14:52:54 -0600 | [diff] [blame] | 139 | RPM_SUSE_PYTHON_DEPS += python-virtualenv |
| 140 | endif |
Marco Varlese | 5f1231c | 2017-10-10 16:43:14 +0200 | [diff] [blame] | 141 | endif |
Marco Varlese | d6ad5a5 | 2017-06-01 15:20:15 +0200 | [diff] [blame] | 142 | |
Ed Kern | 947fe5e | 2018-04-26 17:13:17 -0600 | [diff] [blame] | 143 | ifeq ($(OS_ID),opensuse-leap) |
| 144 | ifeq ($(SUSE_ID),15.0) |
BenoƮt Ganne | ec6e8d2 | 2019-03-26 10:27:57 +0100 | [diff] [blame] | 145 | RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc git curl |
Paul Vinciguerra | 7e0c48e | 2019-02-01 19:37:45 -0800 | [diff] [blame] | 146 | RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv |
Ed Kern | 947fe5e | 2018-04-26 17:13:17 -0600 | [diff] [blame] | 147 | endif |
| 148 | endif |
| 149 | |
Marco Varlese | db41776 | 2017-10-24 17:02:04 +0200 | [diff] [blame] | 150 | RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS) |
| 151 | |
Damjan Marion | 0df78dd | 2016-03-29 22:37:02 +0200 | [diff] [blame] | 152 | ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),) |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 153 | STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf |
| 154 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 155 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 156 | ifeq ($(findstring y,$(UNATTENDED)),y) |
| 157 | CONFIRM=-y |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 158 | FORCE=--force-yes |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 159 | endif |
| 160 | |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 161 | TARGETS = vpp |
| 162 | |
| 163 | ifneq ($(SAMPLE_PLUGIN),no) |
| 164 | TARGETS += sample-plugin |
| 165 | endif |
| 166 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 167 | .PHONY: help wipe wipe-release build build-release rebuild rebuild-release |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 168 | .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] | 169 | .PHONY: ctags cscope |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 170 | .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] | 171 | .PHONY: test-cov test-wipe-cov |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 172 | |
Damjan Marion | 4a6cb83 | 2018-09-18 18:41:38 +0200 | [diff] [blame] | 173 | define banner |
| 174 | @echo "========================================================================" |
| 175 | @echo " $(1)" |
| 176 | @echo "========================================================================" |
| 177 | @echo " " |
| 178 | endef |
| 179 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 180 | help: |
| 181 | @echo "Make Targets:" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 182 | @echo " install-dep - install software dependencies" |
| 183 | @echo " wipe - wipe all products of debug build " |
| 184 | @echo " wipe-release - wipe all products of release build " |
| 185 | @echo " build - build debug binaries" |
| 186 | @echo " build-release - build release binaries" |
| 187 | @echo " build-coverity - build coverity artifacts" |
| 188 | @echo " rebuild - wipe and build debug binares" |
| 189 | @echo " rebuild-release - wipe and build release binares" |
| 190 | @echo " run - run debug binary" |
| 191 | @echo " run-release - run release binary" |
| 192 | @echo " debug - run debug binary with debugger" |
| 193 | @echo " debug-release - run release binary with debugger" |
| 194 | @echo " test - build and run (basic) functional tests" |
| 195 | @echo " test-debug - build and run (basic) functional tests (debug build)" |
| 196 | @echo " test-all - build and run functional and extended tests" |
| 197 | @echo " test-all-debug - build and run functional and extended tests (debug build)" |
| 198 | @echo " test-gcov - build and run functional tests (gcov build)" |
| 199 | @echo " test-shell - enter shell with test environment" |
| 200 | @echo " test-shell-debug - enter shell with test environment (debug build)" |
| 201 | @echo " test-wipe - wipe files generated by unit tests" |
| 202 | @echo " retest - run functional tests" |
| 203 | @echo " retest-debug - run functional tests (debug build)" |
| 204 | @echo " test-help - show help on test framework" |
| 205 | @echo " run-vat - run vpp-api-test tool" |
| 206 | @echo " pkg-deb - build DEB packages" |
| 207 | @echo " pkg-deb-debug - build DEB debug packages" |
| 208 | @echo " vom-pkg-deb - build vom DEB packages" |
| 209 | @echo " vom-pkg-deb-debug - build vom DEB debug packages" |
| 210 | @echo " pkg-rpm - build RPM packages" |
| 211 | @echo " install-ext-deps - install external development dependencies" |
| 212 | @echo " ctags - (re)generate ctags database" |
| 213 | @echo " gtags - (re)generate gtags database" |
| 214 | @echo " cscope - (re)generate cscope database" |
| 215 | @echo " checkstyle - check coding style" |
| 216 | @echo " fixstyle - fix coding style" |
| 217 | @echo " doxygen - (re)generate documentation" |
| 218 | @echo " bootstrap-doxygen - setup Doxygen dependencies" |
| 219 | @echo " wipe-doxygen - wipe all generated documentation" |
| 220 | @echo " checkfeaturelist - check FEATURE.yaml according to schema" |
| 221 | @echo " featurelist - dump feature list in markdown" |
| 222 | @echo " json-api-files - (re)-generate json api files" |
Paul Vinciguerra | 9529feb | 2019-07-15 15:22:31 -0400 | [diff] [blame] | 223 | @echo " json-api-files-debug - (re)-generate json api files for debug target" |
jdenisco | 3138d72 | 2018-09-24 14:59:33 -0400 | [diff] [blame] | 224 | @echo " docs - Build the Sphinx documentation" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 225 | @echo " docs-venv - Build the virtual environment for the Sphinx docs" |
| 226 | @echo " docs-clean - Remove the generated files from the Sphinx docs" |
| 227 | @echo " test-doc - generate documentation for test framework" |
| 228 | @echo " test-wipe-doc - wipe documentation for test framework" |
| 229 | @echo " test-cov - generate code coverage report for test framework" |
| 230 | @echo " test-wipe-cov - wipe code coverage report for test framework" |
| 231 | @echo " test-checkstyle - check PEP8 compliance for test framework" |
| 232 | @echo " test-refresh-deps - refresh the Python dependencies for the tests" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 233 | @echo "" |
| 234 | @echo "Make Arguments:" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 235 | @echo " V=[0|1] - set build verbosity level" |
| 236 | @echo " STARTUP_CONF=<path> - startup configuration file" |
| 237 | @echo " (e.g. /etc/vpp/startup.conf)" |
| 238 | @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)" |
| 239 | @echo " It also sets STARTUP_CONF if" |
| 240 | @echo " startup.conf file is present" |
| 241 | @echo " GDB=<path> - gdb binary to use for debugging" |
| 242 | @echo " PLATFORM=<name> - target platform. default is vpp" |
| 243 | @echo " TEST=<filter> - apply filter to test set, see test-help" |
| 244 | @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to" |
| 245 | @echo " autogenerated startup.conf" |
| 246 | @echo " (e.g. \"no-pci\" )" |
| 247 | @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin" |
| 248 | @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which" |
| 249 | @echo " should not be loaded" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 250 | @echo "" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 251 | @echo "Current Argument Values:" |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 252 | @echo " V = $(V)" |
| 253 | @echo " STARTUP_CONF = $(STARTUP_CONF)" |
| 254 | @echo " STARTUP_DIR = $(STARTUP_DIR)" |
| 255 | @echo " GDB = $(GDB)" |
| 256 | @echo " PLATFORM = $(PLATFORM)" |
| 257 | @echo " DPDK_VERSION = $(DPDK_VERSION)" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 258 | @echo " DPDK_CONFIG = $(DPDK_CONFIG)" |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 259 | @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 260 | @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 261 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 262 | $(BR)/.deps.ok: |
Damjan Marion | c21d59f | 2016-11-19 12:04:34 +0100 | [diff] [blame] | 263 | ifeq ($(findstring y,$(UNATTENDED)),y) |
| 264 | make install-dep |
| 265 | endif |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 266 | ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID)) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 267 | @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \ |
| 268 | if [ -n "$$MISSING" ] ; then \ |
| 269 | echo "\nPlease install missing packages: \n$$MISSING\n" ; \ |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 270 | echo "by executing \"make install-dep\"\n" ; \ |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 271 | exit 1 ; \ |
| 272 | fi ; \ |
| 273 | exit 0 |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 274 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 275 | @for i in $(RPM_DEPENDS) ; do \ |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 276 | RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3) ; \ |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 277 | MISSING+=$$(rpm -q $$RPM | grep "^package") ; \ |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 278 | done ; \ |
| 279 | if [ -n "$$MISSING" ] ; then \ |
| 280 | echo "Please install missing RPMs: \n$$MISSING\n" ; \ |
| 281 | echo "by executing \"make install-dep\"\n" ; \ |
| 282 | exit 1 ; \ |
| 283 | fi ; \ |
| 284 | exit 0 |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 285 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 286 | @touch $@ |
| 287 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 288 | bootstrap: |
| 289 | @echo "'make bootstrap' is not needed anymore" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 290 | |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 291 | install-dep: |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 292 | ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID)) |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 293 | ifeq ($(OS_VERSION_ID),14.04) |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 294 | @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 295 | endif |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 296 | ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8) |
| 297 | @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \ |
| 298 | || ( echo "Please install jessie-backports" ; exit 1 ) |
| 299 | endif |
Ed Warnicke | eb82e7f | 2017-02-01 16:08:51 -0800 | [diff] [blame] | 300 | @sudo -E apt-get update |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 301 | @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS) |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 302 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Yichen Wang | 840cd12 | 2018-10-30 22:52:15 -0700 | [diff] [blame] | 303 | ifeq ($(OS_ID),rhel) |
| 304 | @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms |
Yichen Wang | 00cbd57 | 2019-02-04 22:27:20 -0800 | [diff] [blame] | 305 | @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 306 | @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS) |
| 307 | @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib |
Yichen Wang | 840cd12 | 2018-10-30 22:52:15 -0700 | [diff] [blame] | 308 | else ifeq ($(OS_ID),centos) |
drenfong.wang | 6dd5e34 | 2019-01-15 08:24:26 +0000 | [diff] [blame] | 309 | @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release |
Yichen Wang | 840cd12 | 2018-10-30 22:52:15 -0700 | [diff] [blame] | 310 | @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
Gabriel Ganne | b17402e | 2017-01-02 16:44:21 +0100 | [diff] [blame] | 311 | @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 312 | @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 313 | else ifeq ($(OS_ID),fedora) |
| 314 | @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 315 | @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS) |
| 316 | @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib |
| 317 | endif |
Marco Varlese | 23722e6 | 2018-08-20 12:21:30 +0200 | [diff] [blame] | 318 | else ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID)) |
Marco Varlese | 50ec721 | 2017-10-10 09:30:33 +0200 | [diff] [blame] | 319 | @sudo -E zypper refresh |
| 320 | @sudo -E zypper install -y $(RPM_SUSE_DEPENDS) |
Ed Kern | 947fe5e | 2018-04-26 17:13:17 -0600 | [diff] [blame] | 321 | else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID)) |
| 322 | @sudo -E zypper refresh |
Florin Coras | 223548d | 2018-12-27 09:07:32 -0800 | [diff] [blame] | 323 | @sudo -E zypper install -y $(RPM_SUSE_DEPENDS) |
Ed Kern | 6604dde | 2018-08-20 11:05:03 -0600 | [diff] [blame] | 324 | else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID)) |
| 325 | @sudo -E zypper refresh |
| 326 | @sudo -E zypper install -y $(RPM_SUSE_DEPENDS) |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 327 | else |
Yichen Wang | 840cd12 | 2018-10-30 22:52:15 -0700 | [diff] [blame] | 328 | $(error "This option currently works only on Ubuntu, Debian, RHEL, CentOS or openSUSE systems") |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 329 | endif |
Ole Troan | e4218be | 2019-05-07 10:32:40 +0200 | [diff] [blame] | 330 | git config commit.template .git_commit_template.txt |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 331 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 332 | define make |
Damjan Marion | 6b1d7c5 | 2016-04-26 18:19:47 +0200 | [diff] [blame] | 333 | @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 334 | endef |
| 335 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 336 | $(BR)/scripts/.version: |
| 337 | ifneq ("$(wildcard /etc/redhat-release)","") |
| 338 | $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version) |
| 339 | else |
| 340 | $(shell $(BR)/scripts/version > $(BR)/scripts/.version) |
| 341 | endif |
| 342 | |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 343 | DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar |
| 344 | DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-) |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 345 | |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 346 | dist: |
Thomas F Herbert | 8d48722 | 2017-07-18 15:48:03 -0400 | [diff] [blame] | 347 | @if git rev-parse 2> /dev/null ; then \ |
| 348 | git archive \ |
| 349 | --prefix=$(DIST_SUBDIR)/ \ |
| 350 | --format=tar \ |
| 351 | -o $(DIST_FILE) \ |
| 352 | HEAD ; \ |
| 353 | git describe > $(BR)/.version ; \ |
| 354 | else \ |
| 355 | (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \ |
| 356 | src/scripts/version > $(BR)/.version ; \ |
| 357 | fi |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 358 | @tar --append \ |
| 359 | --file $(DIST_FILE) \ |
| 360 | --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \ |
| 361 | $(BR)/.version |
| 362 | @$(RM) $(BR)/.version $(DIST_FILE).xz |
| 363 | @xz -v --threads=0 $(DIST_FILE) |
| 364 | @$(RM) $(BR)/vpp-latest.tar.xz |
| 365 | @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 366 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 367 | build: $(BR)/.deps.ok |
Damjan Marion | 9d7a7ba | 2018-03-14 20:58:39 +0100 | [diff] [blame] | 368 | $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 369 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 370 | wipedist: |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 371 | @$(RM) $(BR)/*.tar.xz |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 372 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 373 | wipe: wipedist test-wipe $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 374 | $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS))) |
Paul Vinciguerra | 05b5d1b | 2018-12-07 03:57:49 -0800 | [diff] [blame] | 375 | @find . -type f -name "*.api.json" ! -path "./test/*" -exec rm {} \; |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 376 | |
| 377 | rebuild: wipe build |
| 378 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 379 | build-release: $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 380 | $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 381 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 382 | wipe-release: test-wipe $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 383 | $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 384 | |
| 385 | rebuild-release: wipe-release build-release |
| 386 | |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 387 | libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3))) |
| 388 | |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 389 | export TEST_DIR ?= $(WS_ROOT)/test |
| 390 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 391 | define test |
Neale Ranns | b7d41fc | 2018-07-16 08:22:37 -0400 | [diff] [blame] | 392 | $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,) |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 393 | $(eval libs:=lib lib64) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 394 | make -C test \ |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 395 | VPP_BUILD_DIR=$(BR)/build-$(2)-native \ |
| 396 | VPP_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \ |
| 397 | VPP_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \ |
Dave Barach | 7d31ab2 | 2019-05-08 19:18:18 -0400 | [diff] [blame] | 398 | VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_api_test_plugins) \ |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 399 | VPP_INSTALL_PATH=$(BR)/install-$(2)-native/ \ |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 400 | LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \ |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 401 | EXTENDED_TESTS=$(EXTENDED_TESTS) \ |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 402 | PYTHON=$(PYTHON) \ |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 403 | OS_ID=$(OS_ID) \ |
Klement Sekera | a3d933c | 2017-11-06 09:46:00 +0100 | [diff] [blame] | 404 | CACHE_OUTPUT=$(CACHE_OUTPUT) \ |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 405 | $(3) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 406 | endef |
| 407 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 408 | test: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 409 | $(call test,vpp,vpp,test) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 410 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 411 | test-debug: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 412 | $(call test,vpp,vpp_debug,test) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 413 | |
Dave Barach | b757d1a | 2019-03-22 08:50:29 -0400 | [diff] [blame] | 414 | test-gcov: |
| 415 | $(call test,vpp,vpp_gcov,test) |
| 416 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 417 | test-all: |
Michal Cmarada | 4e633e1 | 2019-01-31 10:57:40 +0100 | [diff] [blame] | 418 | $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp vom-install,) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 419 | $(eval EXTENDED_TESTS=yes) |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 420 | $(call test,vpp,vpp,test) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 421 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 422 | test-all-debug: |
Michal Cmarada | 4e633e1 | 2019-01-31 10:57:40 +0100 | [diff] [blame] | 423 | $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp_debug vom-install,) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 424 | $(eval EXTENDED_TESTS=yes) |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 425 | $(call test,vpp,vpp_debug,test) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 426 | |
Paul Vinciguerra | 2648e44 | 2019-07-09 16:49:46 -0400 | [diff] [blame] | 427 | papi-wipe: |
| 428 | @make -C test papi-wipe |
| 429 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 430 | test-help: |
| 431 | @make -C test help |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 432 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 433 | test-wipe: |
| 434 | @make -C test wipe |
| 435 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 436 | test-shell: |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 437 | $(call test,vpp,vpp,shell) |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 438 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 439 | test-shell-debug: |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 440 | $(call test,vpp,vpp_debug,shell) |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 441 | |
Dave Barach | 7d31ab2 | 2019-05-08 19:18:18 -0400 | [diff] [blame] | 442 | test-shell-gcov: |
| 443 | $(call test,vpp,vpp_gcov,shell) |
| 444 | |
Ed Kern | 56ccc23 | 2018-04-02 16:42:48 -0600 | [diff] [blame] | 445 | test-dep: |
| 446 | @make -C test test-dep |
| 447 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 448 | test-doc: |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 449 | @make -C test doc |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 450 | |
| 451 | test-wipe-doc: |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 452 | @make -C test wipe-doc |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 453 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 454 | test-cov: |
Neale Ranns | 6a4c9af | 2019-06-27 08:13:35 +0000 | [diff] [blame] | 455 | @make -C $(BR) PLATFORM=vpp TAG=vpp_gcov vom-install |
Klement Sekera | 88d38c4 | 2017-03-21 08:27:18 +0100 | [diff] [blame] | 456 | $(eval EXTENDED_TESTS=yes) |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 457 | $(call test,vpp,vpp_gcov,cov) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 458 | |
| 459 | test-wipe-cov: |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 460 | @make -C test wipe-cov |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 461 | |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 462 | test-checkstyle: |
| 463 | @make -C test checkstyle |
| 464 | |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 465 | test-refresh-deps: |
| 466 | @make -C test refresh-deps |
| 467 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 468 | retest: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 469 | $(call test,vpp,vpp,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 470 | |
| 471 | retest-debug: |
Damjan Marion | 374e2c5 | 2017-03-09 20:38:15 +0100 | [diff] [blame] | 472 | $(call test,vpp,vpp_debug,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 473 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 474 | ifeq ("$(wildcard $(STARTUP_CONF))","") |
| 475 | define run |
| 476 | @echo "WARNING: STARTUP_CONF not defined or file doesn't exist." |
| 477 | @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 478 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 479 | $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 480 | endef |
| 481 | else |
| 482 | define run |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 483 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 484 | $(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] | 485 | endef |
| 486 | endif |
| 487 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 488 | %.files: .FORCE |
| 489 | @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \ |
| 490 | \( -not -path './build-root*' -o -path \ |
| 491 | './build-root/build-vpp_debug-native/dpdk*' \) > $@ |
| 492 | |
| 493 | .FORCE: |
| 494 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 495 | run: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 496 | $(call run, $(BR)/install-$(PLATFORM)_debug-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 497 | |
| 498 | run-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 499 | $(call run, $(BR)/install-$(PLATFORM)-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 500 | |
| 501 | debug: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 502 | $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 503 | |
Damjan Marion | 005849e | 2018-07-19 14:39:40 +0200 | [diff] [blame] | 504 | build-coverity: |
Dave Barach | 3ad7704 | 2017-01-04 17:24:32 -0500 | [diff] [blame] | 505 | $(call make,$(PLATFORM)_coverity,install-packages) |
| 506 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 507 | debug-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 508 | $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 509 | |
| 510 | build-vat: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 511 | $(call make,$(PLATFORM)_debug,vpp-api-test-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 512 | |
| 513 | run-vat: |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 514 | @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 515 | |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 516 | pkg-deb: |
Damjan Marion | 4d2f86a | 2019-01-18 13:28:22 +0100 | [diff] [blame] | 517 | $(call make,$(PLATFORM),vpp-package-deb) |
| 518 | |
Mohsin Kazmi | 752f5b4 | 2019-02-12 17:24:17 +0100 | [diff] [blame] | 519 | vom-pkg-deb: |
| 520 | $(call make,$(PLATFORM),vpp-package-deb) |
| 521 | $(call make,$(PLATFORM),vom-package-deb) |
| 522 | |
Damjan Marion | 4d2f86a | 2019-01-18 13:28:22 +0100 | [diff] [blame] | 523 | pkg-deb-debug: |
| 524 | $(call make,$(PLATFORM)_debug,vpp-package-deb) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 525 | |
Mohsin Kazmi | 752f5b4 | 2019-02-12 17:24:17 +0100 | [diff] [blame] | 526 | vom-pkg-deb-debug: |
| 527 | $(call make,$(PLATFORM)_debug,vpp-package-deb) |
| 528 | $(call make,$(PLATFORM)_debug,vom-package-deb) |
| 529 | |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 530 | pkg-rpm: dist |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 531 | make -C extras/rpm |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 532 | |
Thomas F Herbert | b60f496 | 2017-07-19 19:17:15 -0400 | [diff] [blame] | 533 | pkg-srpm: dist |
| 534 | make -C extras/rpm srpm |
| 535 | |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 536 | dpdk-install-dev: |
Paul Vinciguerra | 8e7ba4a | 2018-10-26 04:42:31 -0700 | [diff] [blame] | 537 | $(call banner,"This command is deprecated. Please use 'make install-ext-deps'") |
Damjan Marion | 4a6cb83 | 2018-09-18 18:41:38 +0200 | [diff] [blame] | 538 | make -C build/external install-$(PKG) |
| 539 | |
| 540 | install-ext-deps: |
| 541 | make -C build/external install-$(PKG) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 542 | |
Paul Vinciguerra | 9529feb | 2019-07-15 15:22:31 -0400 | [diff] [blame] | 543 | json-api-files: |
| 544 | $(WS_ROOT)/src/tools/vppapigen/generate_json.py |
| 545 | |
| 546 | json-api-files-debug: |
| 547 | $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target |
| 548 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 549 | ctags: ctags.files |
| 550 | @ctags --totals --tag-relative -L $< |
| 551 | @rm $< |
| 552 | |
Keith Burns (alagalah) | 4b72a58 | 2016-07-02 17:54:36 -0700 | [diff] [blame] | 553 | gtags: ctags |
| 554 | @gtags --gtagslabel=ctags |
| 555 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 556 | cscope: cscope.files |
| 557 | @cscope -b -q -v |
Marek Gradzki | 60c63c7 | 2016-04-26 08:01:31 +0200 | [diff] [blame] | 558 | |
Damjan Marion | 2470485 | 2016-09-07 13:10:50 +0200 | [diff] [blame] | 559 | checkstyle: |
| 560 | @build-root/scripts/checkstyle.sh |
| 561 | |
| 562 | fixstyle: |
| 563 | @build-root/scripts/checkstyle.sh --fix |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 564 | |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 565 | featurelist: |
| 566 | @build-root/scripts/fts.py --all --markdown |
| 567 | |
| 568 | checkfeaturelist: |
| 569 | @build-root/scripts/fts.py --validate --git-status |
| 570 | |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 571 | # |
| 572 | # Build the documentation |
| 573 | # |
| 574 | |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 575 | # Doxygen configuration and our utility scripts |
| 576 | export DOXY_DIR ?= $(WS_ROOT)/doxygen |
| 577 | |
| 578 | define make-doxy |
Damjan Marion | 6484b3b | 2017-01-15 21:30:50 +0100 | [diff] [blame] | 579 | @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 580 | endef |
| 581 | |
| 582 | .PHONY: bootstrap-doxygen doxygen wipe-doxygen |
| 583 | |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 584 | bootstrap-doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 585 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 586 | |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 587 | doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 588 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 589 | |
| 590 | wipe-doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 591 | $(call make-doxy) |
| 592 | |
jdenisco | 3138d72 | 2018-09-24 14:59:33 -0400 | [diff] [blame] | 593 | # Sphinx Documents |
| 594 | export DOCS_DIR = $(WS_ROOT)/docs |
| 595 | export VENV_DIR = $(WS_ROOT)/sphinx_venv |
| 596 | export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts |
| 597 | |
| 598 | .PHONY: docs-venv docs docs-clean |
| 599 | |
| 600 | docs-venv: |
| 601 | @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv) |
| 602 | |
| 603 | docs: $(DOCS_DIR) |
| 604 | @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html) |
| 605 | |
| 606 | docs-clean: |
| 607 | @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh clean) |
| 608 | |
Dave Wallace | 7b8a30d | 2019-07-15 12:03:51 -0400 | [diff] [blame] | 609 | pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps |
Ed Warnicke | ddff8a4 | 2016-11-22 17:57:30 +0000 | [diff] [blame] | 610 | $(call banner,"Building for PLATFORM=vpp using gcc") |
Peter Mikus | ad625f5 | 2017-05-31 15:23:59 +0000 | [diff] [blame] | 611 | @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages |
Damjan Marion | 686c1c8 | 2017-04-19 14:09:07 +0200 | [diff] [blame] | 612 | $(call banner,"Building sample-plugin") |
| 613 | @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 614 | $(call banner,"Building libmemif") |
| 615 | @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install |
Damjan Marion | 164e5f8 | 2018-04-25 19:11:15 +0200 | [diff] [blame] | 616 | $(call banner,"Building VOM") |
| 617 | @make -C build-root PLATFORM=vpp TAG=vpp vom-install |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 618 | $(call banner,"Building $(PKG) packages") |
Peter Mikus | ad625f5 | 2017-05-31 15:23:59 +0000 | [diff] [blame] | 619 | @make pkg-$(PKG) |
YohanPipereau | def35a2 | 2019-07-10 14:00:14 +0200 | [diff] [blame] | 620 | ifeq ($(OS_ID),ubuntu) |
| 621 | $(call banner,"Building VOM $(PKG) package") |
| 622 | @make vom-pkg-deb |
| 623 | endif |
Dave Wallace | 7b8a30d | 2019-07-15 12:03:51 -0400 | [diff] [blame] | 624 | |
| 625 | verify: pkg-verify |
Damjan Marion | 2bfb9e1 | 2018-10-25 12:25:38 +0200 | [diff] [blame] | 626 | ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-18.04) |
Paul Vinciguerra | 4bf8490 | 2019-07-31 00:34:05 -0400 | [diff] [blame] | 627 | $(call banner,"Testing vppapigen") |
| 628 | @src/tools/vppapigen/test_vppapigen.py |
Damjan Marion | 855e268 | 2018-08-24 13:37:45 +0200 | [diff] [blame] | 629 | $(call banner,"Running tests") |
Damjan Marion | a472f86 | 2017-10-10 19:01:06 +0200 | [diff] [blame] | 630 | @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test |
Damjan Marion | aade2c5 | 2017-05-22 16:56:54 +0200 | [diff] [blame] | 631 | endif |