Dave Wallace | 51a037d | 2021-11-06 10:59:22 -0400 | [diff] [blame] | 1 | # Copyright (c) 2021 Cisco and/or its affiliates. |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 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 |
Tom Jones | c3b416c | 2024-01-18 14:51:44 +0000 | [diff] [blame] | 17 | SHELL:=$(shell which bash) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 18 | GDB?=gdb |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 19 | PLATFORM?=vpp |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 20 | SAMPLE_PLUGIN?=no |
Damjan Marion | 005849e | 2018-07-19 14:39:40 +0200 | [diff] [blame] | 21 | STARTUP_DIR?=$(PWD) |
Brian Brooks | 40b655c | 2017-09-22 12:26:34 -0500 | [diff] [blame] | 22 | MACHINE=$(shell uname -m) |
Damjan Marion | 8950c27 | 2020-10-21 23:55:08 +0200 | [diff] [blame] | 23 | SUDO?=sudo -E |
Damjan Marion | be7ef3b | 2019-09-24 17:45:49 +0200 | [diff] [blame] | 24 | DPDK_CONFIG?=no-pci |
Brian Brooks | 40b655c | 2017-09-22 12:26:34 -0500 | [diff] [blame] | 25 | |
Tom Jones | bf89b81 | 2024-02-06 10:05:06 +0000 | [diff] [blame] | 26 | ifeq ($(strip $(SHELL)),) |
| 27 | $(error "bash not found, VPP requires bash to build") |
| 28 | endif |
| 29 | |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 30 | ,:=, |
| 31 | define disable_plugins |
| 32 | $(if $(1), \ |
| 33 | "plugins {" \ |
| 34 | $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \ |
| 35 | " }" \ |
| 36 | ,) |
| 37 | endef |
| 38 | |
| 39 | MINIMAL_STARTUP_CONF=" \ |
| 40 | unix { \ |
| 41 | interactive \ |
| 42 | cli-listen /run/vpp/cli.sock \ |
| 43 | gid $(shell id -g) \ |
| 44 | $(if $(wildcard startup.vpp),"exec startup.vpp",) \ |
| 45 | } \ |
| 46 | $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",) \ |
Andrew Yourtchenko | f234b0d | 2022-03-14 09:49:15 +0000 | [diff] [blame] | 47 | $(if $(EXTRA_VPP_CONFIG), "$(EXTRA_VPP_CONFIG)",) \ |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 48 | $(call disable_plugins,$(DISABLED_PLUGINS)) \ |
| 49 | " |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 50 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 51 | GDB_ARGS= -ex "handle SIGUSR1 noprint nostop" |
| 52 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 53 | # |
| 54 | # OS Detection |
| 55 | # |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 56 | # We allow Darwin (MacOS) for docs generation; VPP build will still fail. |
| 57 | ifneq ($(shell uname),Darwin) |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 58 | OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
| 59 | 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] | 60 | endif |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 61 | |
spencercoder | ecb62d2 | 2023-08-22 12:42:09 +0800 | [diff] [blame] | 62 | ifeq ($(filter ubuntu debian linuxmint,$(OS_ID)),$(OS_ID)) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 63 | PKG=deb |
Kaj Niemi | 088d1a0 | 2023-10-09 13:14:51 +0000 | [diff] [blame] | 64 | else ifeq ($(filter rhel centos fedora opensuse-leap rocky almalinux,$(OS_ID)),$(OS_ID)) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 65 | PKG=rpm |
Tom Jones | d823ffc | 2024-02-05 09:50:00 +0000 | [diff] [blame] | 66 | else ifeq ($(filter freebsd,$(OS_ID)),$(OS_ID)) |
| 67 | PKG=pkg |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 68 | endif |
| 69 | |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 70 | # +libganglia1-dev if building the gmond plugin |
| 71 | |
Ole Troan | 9d42087 | 2017-10-12 13:06:35 +0200 | [diff] [blame] | 72 | DEB_DEPENDS = curl build-essential autoconf automake ccache |
Nick Brown | b8e7a45 | 2021-08-10 09:20:32 +0100 | [diff] [blame] | 73 | DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-python |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 74 | DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 75 | DEB_DEPENDS += gcovr lcov chrpath autoconf libnuma-dev |
Damjan Marion | a416493 | 2020-05-12 12:22:18 +0200 | [diff] [blame] | 76 | DEB_DEPENDS += python3-all python3-setuptools check |
Damjan Marion | 7892560 | 2024-05-23 13:06:39 +0000 | [diff] [blame] | 77 | DEB_DEPENDS += libffi-dev python3-ply libunwind-dev |
Damjan Marion | 3706636 | 2023-07-28 20:06:09 +0200 | [diff] [blame] | 78 | DEB_DEPENDS += cmake ninja-build python3-jsonschema python3-yaml |
Paul Vinciguerra | 2c6efec | 2019-11-20 19:15:46 -0500 | [diff] [blame] | 79 | DEB_DEPENDS += python3-venv # ensurepip |
Saima Yunus | 776ee67 | 2022-05-19 11:48:59 -0700 | [diff] [blame] | 80 | DEB_DEPENDS += python3-dev python3-pip |
Neale Ranns | 616447c | 2021-02-05 09:04:35 +0000 | [diff] [blame] | 81 | DEB_DEPENDS += libnl-3-dev libnl-route-3-dev libmnl-dev |
Andrew Yourtchenko | a472031 | 2022-02-02 19:32:18 +0000 | [diff] [blame] | 82 | # DEB_DEPENDS += enchant # for docs |
Dave Wallace | 719d560 | 2021-11-12 18:25:32 -0500 | [diff] [blame] | 83 | DEB_DEPENDS += python3-virtualenv |
| 84 | DEB_DEPENDS += libssl-dev |
Yulong Pei | f9a1748 | 2023-01-05 02:26:32 +0000 | [diff] [blame] | 85 | DEB_DEPENDS += libelf-dev libpcap-dev # for libxdp (af_xdp) |
Dave Wallace | fa5aabb | 2022-02-05 09:27:05 -0500 | [diff] [blame] | 86 | DEB_DEPENDS += iperf3 # for 'make test TEST=vcl' |
Damjan Marion | aa659ef | 2022-04-05 19:26:51 +0200 | [diff] [blame] | 87 | DEB_DEPENDS += nasm |
Naveen Joy | 1ee30fd | 2022-12-20 08:39:06 -0800 | [diff] [blame] | 88 | DEB_DEPENDS += iperf ethtool # for 'make test TEST=vm_vpp_interfaces' |
Mohammed Hawari | ccd3070 | 2023-06-09 16:50:56 +0200 | [diff] [blame] | 89 | DEB_DEPENDS += libpcap-dev |
Dave Wallace | 8800f73 | 2023-08-31 00:47:44 -0400 | [diff] [blame] | 90 | DEB_DEPENDS += tshark |
Adrian Villin | 637edda | 2024-05-06 06:55:34 -0400 | [diff] [blame] | 91 | DEB_DEPENDS += jq # for extracting test summary from .json report (hs-test) |
Dave Barach | 6d97e62 | 2020-03-18 10:14:40 -0400 | [diff] [blame] | 92 | |
Chuan Han | f30e07e | 2020-09-25 15:34:06 -0700 | [diff] [blame] | 93 | LIBFFI=libffi6 # works on all but 20.04 and debian-testing |
Dave Wallace | d18726e | 2024-07-10 22:04:42 -0400 | [diff] [blame] | 94 | ifeq ($(OS_VERSION_ID),24.04) |
Dave Wallace | cf9356d | 2024-07-23 01:28:19 -0400 | [diff] [blame] | 95 | DEB_DEPENDS += libssl-dev |
| 96 | DEB_DEPENDS += llvm clang clang-format-15 |
Jay Wang | 7b7bc04 | 2024-07-12 12:53:56 +0000 | [diff] [blame] | 97 | # overwrite clang-format version to run `make checkstyle` successfully |
Dave Wallace | cf9356d | 2024-07-23 01:28:19 -0400 | [diff] [blame] | 98 | # TODO: remove once ubuntu 20.04 is deprecated and extras/scripts/checkstyle.sh is upgraded to 15 |
| 99 | export CLANG_FORMAT_VER=15 |
| 100 | LIBFFI=libffi8 |
| 101 | DEB_DEPENDS += enchant-2 # for docs |
Dave Wallace | d18726e | 2024-07-10 22:04:42 -0400 | [diff] [blame] | 102 | else ifeq ($(OS_VERSION_ID),22.04) |
Saima Yunus | bbc99f4 | 2022-06-10 19:34:04 -0700 | [diff] [blame] | 103 | DEB_DEPENDS += python3-virtualenv |
| 104 | DEB_DEPENDS += libssl-dev |
Dave Wallace | cf9356d | 2024-07-23 01:28:19 -0400 | [diff] [blame] | 105 | DEB_DEPENDS += clang clang-format-15 |
| 106 | # overwrite clang-format version to run `make checkstyle` successfully |
| 107 | # TODO: remove once ubuntu 20.04 is deprecated and extras/scripts/checkstyle.sh is upgraded to 15 |
| 108 | export CLANG_FORMAT_VER=15 |
Saima Yunus | bbc99f4 | 2022-06-10 19:34:04 -0700 | [diff] [blame] | 109 | LIBFFI=libffi7 |
| 110 | DEB_DEPENDS += enchant-2 # for docs |
| 111 | else ifeq ($(OS_VERSION_ID),20.04) |
Damjan Marion | a416493 | 2020-05-12 12:22:18 +0200 | [diff] [blame] | 112 | DEB_DEPENDS += python3-virtualenv |
Jieqiang Wang | a5cf6e0 | 2020-06-04 14:09:57 +0800 | [diff] [blame] | 113 | DEB_DEPENDS += libssl-dev |
Damjan Marion | 8cb5d36 | 2022-04-14 22:18:19 +0200 | [diff] [blame] | 114 | DEB_DEPENDS += clang clang-format-11 |
Dave Barach | 6e6968f | 2020-03-21 11:15:48 -0400 | [diff] [blame] | 115 | LIBFFI=libffi7 |
Dave Wallace | 719d560 | 2021-11-12 18:25:32 -0500 | [diff] [blame] | 116 | DEB_DEPENDS += enchant-2 # for docs |
Benoît Ganne | 3f0ae66 | 2020-09-09 12:50:07 +0200 | [diff] [blame] | 117 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10) |
Dave Wallace | 719d560 | 2021-11-12 18:25:32 -0500 | [diff] [blame] | 118 | DEB_DEPENDS += virtualenv |
Andrew Yourtchenko | a472031 | 2022-02-02 19:32:18 +0000 | [diff] [blame] | 119 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-11) |
| 120 | DEB_DEPENDS += virtualenv |
Damjan Marion | 8cb5d36 | 2022-04-14 22:18:19 +0200 | [diff] [blame] | 121 | DEB_DEPENDS += clang clang-format-11 |
Andrew Yourtchenko | a472031 | 2022-02-02 19:32:18 +0000 | [diff] [blame] | 122 | LIBFFI=libffi7 |
Pim van Pelt | 712fc03 | 2024-01-14 21:02:41 +0100 | [diff] [blame] | 123 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-12) |
| 124 | DEB_DEPENDS += virtualenv |
Dave Wallace | cf9356d | 2024-07-23 01:28:19 -0400 | [diff] [blame] | 125 | DEB_DEPENDS += clang-14 clang-format-15 |
Pim van Pelt | 4a515d3 | 2024-01-15 11:06:19 +0100 | [diff] [blame] | 126 | # for extras/scripts/checkstyle.sh |
Dave Wallace | cf9356d | 2024-07-23 01:28:19 -0400 | [diff] [blame] | 127 | # TODO: remove once ubuntu 20.04 is deprecated and extras/scripts/checkstyle.sh is upgraded to -15 |
| 128 | export CLANG_FORMAT_VER=15 |
Pim van Pelt | 712fc03 | 2024-01-14 21:02:41 +0100 | [diff] [blame] | 129 | LIBFFI=libffi8 |
Damjan Marion | 005849e | 2018-07-19 14:39:40 +0200 | [diff] [blame] | 130 | else |
Dave Wallace | 4a33231 | 2022-03-17 17:44:35 -0400 | [diff] [blame] | 131 | DEB_DEPENDS += clang-11 clang-format-11 |
Chuan Han | f30e07e | 2020-09-25 15:34:06 -0700 | [diff] [blame] | 132 | LIBFFI=libffi7 |
Dave Wallace | 719d560 | 2021-11-12 18:25:32 -0500 | [diff] [blame] | 133 | DEB_DEPENDS += enchant-2 # for docs |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 134 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 135 | |
Dave Barach | 6e6968f | 2020-03-21 11:15:48 -0400 | [diff] [blame] | 136 | DEB_DEPENDS += $(LIBFFI) |
| 137 | |
Christian Svensson | 184a70a | 2023-02-06 17:25:16 +0100 | [diff] [blame] | 138 | RPM_DEPENDS = glibc-static |
Gabriel Ganne | 555d920 | 2017-09-06 10:44:07 +0200 | [diff] [blame] | 139 | RPM_DEPENDS += apr-devel |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 140 | RPM_DEPENDS += numactl-devel |
Thomas F Herbert | e412891 | 2017-10-09 15:03:55 -0400 | [diff] [blame] | 141 | RPM_DEPENDS += check check-devel |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 142 | RPM_DEPENDS += selinux-policy selinux-policy-devel |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 143 | RPM_DEPENDS += ninja-build |
Yichen Wang | 81355d7 | 2020-06-08 17:13:01 -0700 | [diff] [blame] | 144 | RPM_DEPENDS += ccache |
| 145 | RPM_DEPENDS += xmlto |
Christian Svensson | 184a70a | 2023-02-06 17:25:16 +0100 | [diff] [blame] | 146 | RPM_DEPENDS += elfutils-libelf-devel libpcap-devel |
Neale Ranns | 616447c | 2021-02-05 09:04:35 +0000 | [diff] [blame] | 147 | RPM_DEPENDS += libnl3-devel libmnl-devel |
Tianyu Li | 46f1dbc | 2022-04-12 15:05:08 +0800 | [diff] [blame] | 148 | RPM_DEPENDS += nasm |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 149 | |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 150 | ifeq ($(OS_ID),fedora) |
| 151 | RPM_DEPENDS += dnf-utils |
Thomas F Herbert | 6673178 | 2018-03-05 17:21:56 -0500 | [diff] [blame] | 152 | RPM_DEPENDS += subunit subunit-devel |
Thomas F Herbert | 440751b | 2017-09-11 08:58:23 -0400 | [diff] [blame] | 153 | RPM_DEPENDS += compat-openssl10-devel |
Ed Kern | 86e8bce | 2020-02-05 08:30:00 -0700 | [diff] [blame] | 154 | RPM_DEPENDS += python3-devel # needed for python3 -m pip install psutil |
Paul Vinciguerra | 9d0ca07 | 2019-11-20 00:09:04 -0500 | [diff] [blame] | 155 | RPM_DEPENDS += python3-ply # for vppapigen |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 156 | RPM_DEPENDS += python3-virtualenv python3-jsonschema |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 157 | RPM_DEPENDS += cmake |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 158 | RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries' |
Christian Svensson | 184a70a | 2023-02-06 17:25:16 +0100 | [diff] [blame] | 159 | else ifeq ($(OS_ID),rocky) |
| 160 | RPM_DEPENDS += yum-utils |
| 161 | RPM_DEPENDS += subunit subunit-devel |
| 162 | RPM_DEPENDS += openssl-devel |
| 163 | RPM_DEPENDS += python3-devel # needed for python3 -m pip install psutil |
| 164 | RPM_DEPENDS += python3-ply # for vppapigen |
| 165 | RPM_DEPENDS += python3-virtualenv python3-jsonschema |
| 166 | RPM_DEPENDS += infiniband-diags llvm clang cmake |
| 167 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Kaj Niemi | 088d1a0 | 2023-10-09 13:14:51 +0000 | [diff] [blame] | 168 | else ifeq ($(OS_ID),almalinux) |
| 169 | RPM_DEPENDS += yum-utils |
| 170 | RPM_DEPENDS += subunit subunit-devel |
| 171 | RPM_DEPENDS += openssl-devel |
| 172 | RPM_DEPENDS += python3-devel # needed for python3 -m pip install psutil |
| 173 | RPM_DEPENDS += python3-ply # for vppapigen |
| 174 | RPM_DEPENDS += python3-virtualenv python3-jsonschema |
| 175 | RPM_DEPENDS += infiniband-diags llvm clang cmake |
| 176 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Renato Botelho do Couto | c025329 | 2019-11-07 06:10:34 -0600 | [diff] [blame] | 177 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8) |
Ed Kern | 86e8bce | 2020-02-05 08:30:00 -0700 | [diff] [blame] | 178 | RPM_DEPENDS += yum-utils |
Dave Wallace | 35ef865 | 2021-01-14 16:46:49 -0500 | [diff] [blame] | 179 | RPM_DEPENDS += compat-openssl10 openssl-devel |
Yichen Wang | 81355d7 | 2020-06-08 17:13:01 -0700 | [diff] [blame] | 180 | RPM_DEPENDS += python2-devel python36-devel python3-ply |
Renato Botelho do Couto | c025329 | 2019-11-07 06:10:34 -0600 | [diff] [blame] | 181 | RPM_DEPENDS += python3-virtualenv python3-jsonschema |
Dave Wallace | e20d3c8 | 2021-06-04 22:55:18 -0400 | [diff] [blame] | 182 | RPM_DEPENDS += libarchive cmake |
Tianyu Li | e7adafe | 2022-10-26 09:15:12 +0000 | [diff] [blame] | 183 | RPM_DEPENDS += infiniband-diags libibumad |
Tianyu Li | 590a82c | 2023-01-28 07:58:45 +0000 | [diff] [blame] | 184 | RPM_DEPENDS += libpcap-devel llvm-toolset |
Renato Botelho do Couto | c025329 | 2019-11-07 06:10:34 -0600 | [diff] [blame] | 185 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 186 | else |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 187 | RPM_DEPENDS += yum-utils |
Thomas F Herbert | 440751b | 2017-09-11 08:58:23 -0400 | [diff] [blame] | 188 | RPM_DEPENDS += openssl-devel |
Paul Vinciguerra | 9d0ca07 | 2019-11-20 00:09:04 -0500 | [diff] [blame] | 189 | RPM_DEPENDS += python36-ply # for vppapigen |
Ed Kern | c63c016 | 2019-09-17 13:19:42 -0600 | [diff] [blame] | 190 | RPM_DEPENDS += python3-devel python3-pip |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 191 | RPM_DEPENDS += python-virtualenv python36-jsonschema |
jiangxiaoming | 9f1dbd2 | 2020-08-27 16:00:16 +0800 | [diff] [blame] | 192 | RPM_DEPENDS += devtoolset-9 devtoolset-9-libasan-devel |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 193 | RPM_DEPENDS += cmake3 |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 194 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Thomas F Herbert | 28ea251 | 2017-03-29 10:40:16 -0400 | [diff] [blame] | 195 | endif |
Dave Wallace | d756b35 | 2017-07-03 13:11:38 -0400 | [diff] [blame] | 196 | |
| 197 | # +ganglia-devel if building the ganglia plugin |
| 198 | |
Thomas F Herbert | bc1c848 | 2017-05-17 19:00:07 -0400 | [diff] [blame] | 199 | RPM_DEPENDS += chrpath libffi-devel rpm-build |
Jieqiang Wang | 81b95c1 | 2020-07-23 15:19:25 +0000 | [diff] [blame] | 200 | |
| 201 | RPM_DEPENDS_DEBUG = glibc-debuginfo e2fsprogs-debuginfo |
| 202 | RPM_DEPENDS_DEBUG += krb5-debuginfo openssl-debuginfo |
| 203 | RPM_DEPENDS_DEBUG += zlib-debuginfo nss-softokn-debuginfo |
| 204 | RPM_DEPENDS_DEBUG += yum-plugin-auto-update-debug-info |
Marco Varlese | db41776 | 2017-10-24 17:02:04 +0200 | [diff] [blame] | 205 | |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 206 | RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath |
| 207 | RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python3-ply |
| 208 | |
Laszlo Kiraly | 987318e | 2022-09-02 14:08:36 +0200 | [diff] [blame] | 209 | RPM_SUSE_DEVEL_DEPS = glibc-devel-static libnuma-devel libelf-devel |
Damjan Marion | 3706636 | 2023-07-28 20:06:09 +0200 | [diff] [blame] | 210 | RPM_SUSE_DEVEL_DEPS += libopenssl-devel lsb-release |
Laszlo Kiraly | 3ff7676 | 2023-07-06 11:36:42 +0200 | [diff] [blame] | 211 | RPM_SUSE_DEVEL_DEPS += libpcap-devel llvm-devel |
Laszlo Kiraly | 987318e | 2022-09-02 14:08:36 +0200 | [diff] [blame] | 212 | RPM_SUSE_DEVEL_DEPS += curl libstdc++-devel bison gcc-c++ zlib-devel |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 213 | |
Laszlo Kiraly | 987318e | 2022-09-02 14:08:36 +0200 | [diff] [blame] | 214 | RPM_SUSE_PYTHON_DEPS = python3-devel python3-pip python3-rpm-macros |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 215 | |
Laszlo Kiraly | 987318e | 2022-09-02 14:08:36 +0200 | [diff] [blame] | 216 | RPM_SUSE_PLATFORM_DEPS = shadow rpm-build |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 217 | |
| 218 | ifeq ($(OS_ID),opensuse-leap) |
Laszlo Kiraly | 987318e | 2022-09-02 14:08:36 +0200 | [diff] [blame] | 219 | RPM_SUSE_DEVEL_DEPS += xmlto openssl-devel asciidoc git nasm |
| 220 | RPM_SUSE_PYTHON_DEPS += python3 python3-ply python3-virtualenv |
| 221 | RPM_SUSE_PLATFORM_DEPS += distribution-release |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 222 | endif |
| 223 | |
| 224 | RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS) |
| 225 | |
Tom Jones | d823ffc | 2024-02-05 09:50:00 +0000 | [diff] [blame] | 226 | # FreeBSD build and test dependancies |
| 227 | |
| 228 | FBSD_PY_PRE=py311 |
| 229 | |
| 230 | FBSD_TEST_DEPS = setsid rust $(FBSD_PY_PRE)-pyshark |
| 231 | FBSD_PYTHON_DEPS = python3 $(FBSD_PY_PRE)-pyelftools $(FBSD_PY_PRE)-ply |
| 232 | FBSD_DEVEL_DEPS = cscope gdb |
| 233 | FBSD_BUILD_DEPS = bash gmake sudo |
| 234 | FBSD_BUILD_DEPS += git sudo autoconf automake curl gsed |
| 235 | FBSD_BUILD_DEPS += pkgconf ninja cmake libepoll-shim jansson |
| 236 | FBSD_DEPS = $(FBSD_BUILD_DEPS) $(FBSD_PYTHON_DEPS) $(FBSD_TEST_DEPS) $(FBSD_DEVEL_DEPS) |
| 237 | |
Damjan Marion | 0df78dd | 2016-03-29 22:37:02 +0200 | [diff] [blame] | 238 | ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),) |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 239 | STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf |
| 240 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 241 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 242 | ifeq ($(findstring y,$(UNATTENDED)),y) |
Dave Wallace | 8800f73 | 2023-08-31 00:47:44 -0400 | [diff] [blame] | 243 | DEBIAN_FRONTEND=noninteractive |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 244 | CONFIRM=-y |
Saima Yunus | bbc99f4 | 2022-06-10 19:34:04 -0700 | [diff] [blame] | 245 | FORCE=--allow-downgrades --allow-remove-essential --allow-change-held-packages |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 246 | endif |
| 247 | |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 248 | TARGETS = vpp |
| 249 | |
| 250 | ifneq ($(SAMPLE_PLUGIN),no) |
| 251 | TARGETS += sample-plugin |
| 252 | endif |
| 253 | |
Damjan Marion | 4a6cb83 | 2018-09-18 18:41:38 +0200 | [diff] [blame] | 254 | define banner |
| 255 | @echo "========================================================================" |
| 256 | @echo " $(1)" |
| 257 | @echo "========================================================================" |
| 258 | @echo " " |
| 259 | endef |
| 260 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 261 | .PHONY: help |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 262 | help: |
| 263 | @echo "Make Targets:" |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 264 | @echo " install-dep[s] - install software dependencies" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 265 | @echo " wipe - wipe all products of debug build " |
| 266 | @echo " wipe-release - wipe all products of release build " |
| 267 | @echo " build - build debug binaries" |
| 268 | @echo " build-release - build release binaries" |
| 269 | @echo " build-coverity - build coverity artifacts" |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 270 | @echo " build-vpp-gcov - build gcov vpp only" |
Paul Vinciguerra | ea1a651 | 2019-11-01 02:34:32 -0400 | [diff] [blame] | 271 | @echo " rebuild - wipe and build debug binaries" |
| 272 | @echo " rebuild-release - wipe and build release binaries" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 273 | @echo " run - run debug binary" |
| 274 | @echo " run-release - run release binary" |
| 275 | @echo " debug - run debug binary with debugger" |
| 276 | @echo " debug-release - run release binary with debugger" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 277 | @echo " test - build and run tests" |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 278 | @echo " test-cov-hs - build and run host stack tests with coverage" |
| 279 | @echo " test-cov-both - build and run python and host stack tests, merge coverage data" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 280 | @echo " test-help - show help on test framework" |
| 281 | @echo " run-vat - run vpp-api-test tool" |
| 282 | @echo " pkg-deb - build DEB packages" |
| 283 | @echo " pkg-deb-debug - build DEB debug packages" |
Dave Barach | 6d97e62 | 2020-03-18 10:14:40 -0400 | [diff] [blame] | 284 | @echo " pkg-snap - build SNAP package" |
| 285 | @echo " snap-clean - clean up snap build environment" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 286 | @echo " pkg-rpm - build RPM packages" |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 287 | @echo " install-ext-dep[s] - install external development dependencies" |
Dave Wallace | 79c8f99 | 2024-05-15 18:16:40 -0400 | [diff] [blame] | 288 | @echo " install-opt-deps - install optional dependencies" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 289 | @echo " ctags - (re)generate ctags database" |
| 290 | @echo " gtags - (re)generate gtags database" |
| 291 | @echo " cscope - (re)generate cscope database" |
Damjan Marion | 13bcb92 | 2020-05-08 19:01:22 +0200 | [diff] [blame] | 292 | @echo " compdb - (re)generate compile_commands.json" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 293 | @echo " checkstyle - check coding style" |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 294 | @echo " checkstyle-commit - check commit message format" |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 295 | @echo " checkstyle-python - check python coding style using 'black' formatter" |
Ole Troan | 5c318c7 | 2020-05-05 12:23:47 +0200 | [diff] [blame] | 296 | @echo " checkstyle-api - check api for incompatible changes" |
Adrian Villin | 7d1e4a4 | 2024-06-13 08:59:58 +0200 | [diff] [blame] | 297 | @echo " checkstyle-go - check style of .go source files" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 298 | @echo " fixstyle - fix coding style" |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 299 | @echo " fixstyle-python - fix python coding style using 'black' formatter" |
Adrian Villin | 7d1e4a4 | 2024-06-13 08:59:58 +0200 | [diff] [blame] | 300 | @echo " fixstyle-go - format .go source files" |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 301 | @echo " doxygen - DEPRECATED - use 'make docs'" |
| 302 | @echo " bootstrap-doxygen - DEPRECATED" |
| 303 | @echo " wipe-doxygen - DEPRECATED" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 304 | @echo " checkfeaturelist - check FEATURE.yaml according to schema" |
| 305 | @echo " featurelist - dump feature list in markdown" |
| 306 | @echo " json-api-files - (re)-generate json api files" |
Paul Vinciguerra | 9529feb | 2019-07-15 15:22:31 -0400 | [diff] [blame] | 307 | @echo " json-api-files-debug - (re)-generate json api files for debug target" |
Vladimir Lavor | 3ff1598 | 2021-04-08 13:08:04 +0200 | [diff] [blame] | 308 | @echo " go-api-files - (re)-generate golang api files" |
Adrian Villin | 7d1e4a4 | 2024-06-13 08:59:58 +0200 | [diff] [blame] | 309 | @echo " cleanup-hst - stops and removes all docker contaiers and namespaces" |
jdenisco | 3138d72 | 2018-09-24 14:59:33 -0400 | [diff] [blame] | 310 | @echo " docs - Build the Sphinx documentation" |
Dave Wallace | 2777ec7 | 2019-09-24 17:52:36 -0400 | [diff] [blame] | 311 | @echo " docs-venv - Build the virtual environment for the Sphinx docs" |
| 312 | @echo " docs-clean - Remove the generated files from the Sphinx docs" |
Nathan Skrzypczak | 1e167a4 | 2022-03-25 12:06:51 +0100 | [diff] [blame] | 313 | @echo " docs-rebuild - Rebuild all of the Sphinx documentation" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 314 | @echo "" |
| 315 | @echo "Make Arguments:" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 316 | @echo " V=[0|1] - set build verbosity level" |
| 317 | @echo " STARTUP_CONF=<path> - startup configuration file" |
| 318 | @echo " (e.g. /etc/vpp/startup.conf)" |
Paul Vinciguerra | ea1a651 | 2019-11-01 02:34:32 -0400 | [diff] [blame] | 319 | @echo " STARTUP_DIR=<path> - startup directory (e.g. /etc/vpp)" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 320 | @echo " It also sets STARTUP_CONF if" |
| 321 | @echo " startup.conf file is present" |
| 322 | @echo " GDB=<path> - gdb binary to use for debugging" |
| 323 | @echo " PLATFORM=<name> - target platform. default is vpp" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 324 | @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to" |
| 325 | @echo " autogenerated startup.conf" |
| 326 | @echo " (e.g. \"no-pci\" )" |
| 327 | @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin" |
| 328 | @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which" |
| 329 | @echo " should not be loaded" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 330 | @echo "" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 331 | @echo "Current Argument Values:" |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 332 | @echo " V = $(V)" |
| 333 | @echo " STARTUP_CONF = $(STARTUP_CONF)" |
| 334 | @echo " STARTUP_DIR = $(STARTUP_DIR)" |
| 335 | @echo " GDB = $(GDB)" |
| 336 | @echo " PLATFORM = $(PLATFORM)" |
| 337 | @echo " DPDK_VERSION = $(DPDK_VERSION)" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 338 | @echo " DPDK_CONFIG = $(DPDK_CONFIG)" |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 339 | @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)" |
Damjan Marion | b1dab65 | 2017-06-30 11:51:41 +0200 | [diff] [blame] | 340 | @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 341 | |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 342 | $(BR)/.deps.ok: |
Damjan Marion | c21d59f | 2016-11-19 12:04:34 +0100 | [diff] [blame] | 343 | ifeq ($(findstring y,$(UNATTENDED)),y) |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 344 | $(MAKE) install-dep |
Damjan Marion | c21d59f | 2016-11-19 12:04:34 +0100 | [diff] [blame] | 345 | endif |
spencercoder | ecb62d2 | 2023-08-22 12:42:09 +0800 | [diff] [blame] | 346 | ifeq ($(filter ubuntu debian linuxmint,$(OS_ID)),$(OS_ID)) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 347 | @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \ |
| 348 | if [ -n "$$MISSING" ] ; then \ |
| 349 | echo "\nPlease install missing packages: \n$$MISSING\n" ; \ |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 350 | echo "by executing \"make install-dep\"\n" ; \ |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 351 | exit 1 ; \ |
| 352 | fi ; \ |
| 353 | exit 0 |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 354 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 355 | @for i in $(RPM_DEPENDS) ; do \ |
jiangxiaoming | 9f1dbd2 | 2020-08-27 16:00:16 +0800 | [diff] [blame] | 356 | RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3,4) ; \ |
Thomas F Herbert | bd8e242 | 2017-08-03 11:04:24 -0400 | [diff] [blame] | 357 | MISSING+=$$(rpm -q $$RPM | grep "^package") ; \ |
Thomas F Herbert | 70efbfc | 2017-03-20 19:19:51 -0400 | [diff] [blame] | 358 | done ; \ |
| 359 | if [ -n "$$MISSING" ] ; then \ |
| 360 | echo "Please install missing RPMs: \n$$MISSING\n" ; \ |
| 361 | echo "by executing \"make install-dep\"\n" ; \ |
| 362 | exit 1 ; \ |
| 363 | fi ; \ |
| 364 | exit 0 |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 365 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 366 | @touch $@ |
| 367 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 368 | .PHONY: bootstrap |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 369 | bootstrap: |
| 370 | @echo "'make bootstrap' is not needed anymore" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 371 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 372 | .PHONY: install-dep |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 373 | install-dep: |
spencercoder | ecb62d2 | 2023-08-22 12:42:09 +0800 | [diff] [blame] | 374 | ifeq ($(filter ubuntu debian linuxmint,$(OS_ID)),$(OS_ID)) |
Ed Warnicke | eb82e7f | 2017-02-01 16:08:51 -0800 | [diff] [blame] | 375 | @sudo -E apt-get update |
Damjan Marion | 9b6463d | 2017-05-29 12:29:05 +0200 | [diff] [blame] | 376 | @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS) |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 377 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Yichen Wang | 840cd12 | 2018-10-30 22:52:15 -0700 | [diff] [blame] | 378 | ifeq ($(OS_ID),rhel) |
| 379 | @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms |
Yichen Wang | 00cbd57 | 2019-02-04 22:27:20 -0800 | [diff] [blame] | 380 | @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 381 | @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS) |
Florin Coras | 8eeb851 | 2022-04-28 07:55:07 -0700 | [diff] [blame] | 382 | @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs zlib |
Christian Svensson | 184a70a | 2023-02-06 17:25:16 +0100 | [diff] [blame] | 383 | else ifeq ($(OS_ID),rocky) |
| 384 | @sudo -E dnf install $(CONFIRM) dnf-plugins-core epel-release |
| 385 | @sudo -E dnf config-manager --set-enabled \ |
| 386 | $(shell dnf repolist all 2>/dev/null|grep -i crb|cut -d' ' -f1|grep -v source) |
| 387 | @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 388 | @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS) |
Renato Botelho do Couto | c025329 | 2019-11-07 06:10:34 -0600 | [diff] [blame] | 389 | else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8) |
Dave Wallace | 858856d | 2020-09-21 13:07:29 -0400 | [diff] [blame] | 390 | @sudo -E dnf install $(CONFIRM) dnf-plugins-core epel-release |
Dave Wallace | 1affb31 | 2020-12-08 10:50:08 -0500 | [diff] [blame] | 391 | @sudo -E dnf config-manager --set-enabled \ |
Tianyu Li | ab5a124 | 2022-03-03 10:49:39 +0800 | [diff] [blame] | 392 | $(shell dnf repolist all 2>/dev/null|grep -i powertools|cut -d' ' -f1|grep -v source) |
Renato Botelho do Couto | c025329 | 2019-11-07 06:10:34 -0600 | [diff] [blame] | 393 | @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
Dave Wallace | 18c17cb | 2021-06-03 17:37:27 -0400 | [diff] [blame] | 394 | @sudo -E dnf install --skip-broken $(CONFIRM) $(RPM_DEPENDS) |
Yichen Wang | 840cd12 | 2018-10-30 22:52:15 -0700 | [diff] [blame] | 395 | else ifeq ($(OS_ID),centos) |
drenfong.wang | 6dd5e34 | 2019-01-15 08:24:26 +0000 | [diff] [blame] | 396 | @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release |
Yichen Wang | 840cd12 | 2018-10-30 22:52:15 -0700 | [diff] [blame] | 397 | @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
Gabriel Ganne | b17402e | 2017-01-02 16:44:21 +0100 | [diff] [blame] | 398 | @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS) |
Jieqiang Wang | 81b95c1 | 2020-07-23 15:19:25 +0000 | [diff] [blame] | 399 | @sudo -E yum install $(CONFIRM) --enablerepo=base-debuginfo $(RPM_DEPENDS_DEBUG) |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 400 | else ifeq ($(OS_ID),fedora) |
| 401 | @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 402 | @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS) |
Florin Coras | 8eeb851 | 2022-04-28 07:55:07 -0700 | [diff] [blame] | 403 | @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs zlib |
Thomas F Herbert | 6eb6163 | 2018-11-27 15:57:30 -0500 | [diff] [blame] | 404 | endif |
Laszlo Kiraly | 987318e | 2022-09-02 14:08:36 +0200 | [diff] [blame] | 405 | else ifeq ($(filter opensuse-leap-15.3 opensuse-leap-15.4 ,$(OS_ID)-$(OS_VERSION_ID)),$(OS_ID)-$(OS_VERSION_ID)) |
Laszlo Kiraly | e560085 | 2021-11-02 11:07:19 +0100 | [diff] [blame] | 406 | @sudo -E zypper refresh |
| 407 | @sudo -E zypper install -y $(RPM_SUSE_DEPENDS) |
Tom Jones | d823ffc | 2024-02-05 09:50:00 +0000 | [diff] [blame] | 408 | else ifeq ($(OS_ID), freebsd) |
| 409 | @sudo pkg install -y $(FBSD_DEPS) |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 410 | else |
Tom Jones | d823ffc | 2024-02-05 09:50:00 +0000 | [diff] [blame] | 411 | $(error "This option currently works only on Ubuntu, Debian, RHEL, CentOS, openSUSE-leap or FreeBSD systems") |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 412 | endif |
Ole Troan | e4218be | 2019-05-07 10:32:40 +0200 | [diff] [blame] | 413 | git config commit.template .git_commit_template.txt |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 414 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 415 | .PHONY: install-deps |
| 416 | install-deps: install-dep |
| 417 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 418 | define make |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 419 | @$(MAKE) -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 420 | endef |
| 421 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 422 | $(BR)/scripts/.version: |
| 423 | ifneq ("$(wildcard /etc/redhat-release)","") |
| 424 | $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version) |
| 425 | else |
| 426 | $(shell $(BR)/scripts/version > $(BR)/scripts/.version) |
| 427 | endif |
| 428 | |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 429 | DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar |
| 430 | DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-) |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 431 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 432 | .PHONY: dist |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 433 | dist: |
Thomas F Herbert | 8d48722 | 2017-07-18 15:48:03 -0400 | [diff] [blame] | 434 | @if git rev-parse 2> /dev/null ; then \ |
| 435 | git archive \ |
| 436 | --prefix=$(DIST_SUBDIR)/ \ |
| 437 | --format=tar \ |
| 438 | -o $(DIST_FILE) \ |
| 439 | HEAD ; \ |
Andrew Yourtchenko | bfcd4b9 | 2021-05-17 16:16:28 +0000 | [diff] [blame] | 440 | git describe --long > $(BR)/.version ; \ |
Thomas F Herbert | 8d48722 | 2017-07-18 15:48:03 -0400 | [diff] [blame] | 441 | else \ |
| 442 | (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \ |
| 443 | src/scripts/version > $(BR)/.version ; \ |
| 444 | fi |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 445 | @tar --append \ |
| 446 | --file $(DIST_FILE) \ |
| 447 | --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \ |
| 448 | $(BR)/.version |
| 449 | @$(RM) $(BR)/.version $(DIST_FILE).xz |
| 450 | @xz -v --threads=0 $(DIST_FILE) |
| 451 | @$(RM) $(BR)/vpp-latest.tar.xz |
| 452 | @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 453 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 454 | .PHONY: build |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 455 | build: $(BR)/.deps.ok |
Damjan Marion | 9d7a7ba | 2018-03-14 20:58:39 +0100 | [diff] [blame] | 456 | $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 457 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 458 | .PHONY: wipedist |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 459 | wipedist: |
Damjan Marion | c06eeb0 | 2017-04-18 15:26:39 +0200 | [diff] [blame] | 460 | @$(RM) $(BR)/*.tar.xz |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 461 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 462 | .PHONY: wipe |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 463 | wipe: wipedist test-wipe $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 464 | $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS))) |
Tianyu Li | 0b65213 | 2021-06-04 17:43:01 +0800 | [diff] [blame] | 465 | @find . -type f -name "*.api.json" ! -path "./src/*" -exec rm {} \; |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 466 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 467 | .PHONY: rebuild |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 468 | rebuild: wipe build |
| 469 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 470 | .PHONY: build-release |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 471 | build-release: $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 472 | $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 473 | |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 474 | .PHONY: build-vpp-gcov |
| 475 | build-vpp-gcov: |
| 476 | $(call test,vpp_gcov) |
| 477 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 478 | .PHONY: wipe-release |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 479 | wipe-release: test-wipe $(BR)/.deps.ok |
Damjan Marion | 0dc3f19 | 2017-05-31 19:25:08 +0200 | [diff] [blame] | 480 | $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS))) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 481 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 482 | .PHONY: rebuild-release |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 483 | rebuild-release: wipe-release build-release |
| 484 | |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 485 | export TEST_DIR ?= $(WS_ROOT)/test |
| 486 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 487 | define test |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 488 | $(if $(filter-out $(2),retest),$(MAKE) -C $(BR) PLATFORM=vpp TAG=$(1) CC=$(CC) vpp-install,) |
Igor Mikhailov (imichail) | ee29dd2 | 2017-05-09 23:27:14 -0700 | [diff] [blame] | 489 | $(eval libs:=lib lib64) |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 490 | $(MAKE) -C test \ |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 491 | VPP_BUILD_DIR=$(BR)/build-$(1)-native/vpp \ |
| 492 | VPP_BIN=$(BR)/install-$(1)-native/vpp/bin/vpp \ |
| 493 | VPP_INSTALL_PATH=$(BR)/install-$(1)-native/ \ |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 494 | EXTENDED_TESTS=$(EXTENDED_TESTS) \ |
Klement Sekera | ca2f2e1 | 2024-05-23 11:19:51 +0200 | [diff] [blame] | 495 | DECODE_PCAPS=$(DECODE_PCAPS) \ |
Dave Wallace | 878a9f5 | 2023-08-08 15:25:21 -0400 | [diff] [blame] | 496 | TEST_GCOV=$(TEST_GCOV) \ |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 497 | PYTHON=$(PYTHON) \ |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 498 | OS_ID=$(OS_ID) \ |
Paul Vinciguerra | c701e57 | 2019-12-19 16:09:43 -0500 | [diff] [blame] | 499 | RND_SEED=$(RND_SEED) \ |
Klement Sekera | a3d933c | 2017-11-06 09:46:00 +0100 | [diff] [blame] | 500 | CACHE_OUTPUT=$(CACHE_OUTPUT) \ |
Klement Sekera | b23ffd7 | 2021-05-31 16:08:53 +0200 | [diff] [blame] | 501 | TAG=$(1) \ |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 502 | $(2) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 503 | endef |
| 504 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 505 | .PHONY: test |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 506 | test: |
Dave Wallace | ccc17f0 | 2023-12-20 20:02:45 -0500 | [diff] [blame] | 507 | ifeq ($(CC),cc) |
| 508 | $(eval CC=clang) |
| 509 | endif |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 510 | $(call test,vpp,test) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 511 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 512 | .PHONY: test-debug |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 513 | test-debug: |
Dave Wallace | ccc17f0 | 2023-12-20 20:02:45 -0500 | [diff] [blame] | 514 | ifeq ($(CC),cc) |
| 515 | $(eval CC=clang) |
| 516 | endif |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 517 | $(call test,vpp_debug,test) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 518 | |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 519 | .PHONY: test-cov |
| 520 | test-cov: |
| 521 | $(eval CC=gcc) |
| 522 | $(eval TEST_GCOV=1) |
| 523 | $(call test,vpp_gcov,cov) |
| 524 | |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 525 | .PHONY: test-cov-hs |
| 526 | test-cov-hs: |
Renato Botelho do Couto | 893daca | 2024-06-05 18:11:46 +0000 | [diff] [blame] | 527 | @$(MAKE) -C extras/hs-test build-cov |
| 528 | @$(MAKE) -C extras/hs-test test-cov |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 529 | |
| 530 | .PHONY: test-cov-both |
| 531 | test-cov-both: |
| 532 | @echo "Running Python, Golang tests and merging coverage reports." |
| 533 | find $(BR) -name '*.gcda' -delete |
Renato Botelho do Couto | 893daca | 2024-06-05 18:11:46 +0000 | [diff] [blame] | 534 | @$(MAKE) test-cov |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 535 | find $(BR) -name '*.gcda' -delete |
Renato Botelho do Couto | 893daca | 2024-06-05 18:11:46 +0000 | [diff] [blame] | 536 | @$(MAKE) test-cov-hs |
| 537 | @$(MAKE) cov-merge |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 538 | |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 539 | .PHONY: test-cov-build |
| 540 | test-cov-build: |
| 541 | $(eval CC=gcc) |
| 542 | $(eval TEST_GCOV=1) |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 543 | $(call test,vpp_gcov,test) |
Dave Barach | b757d1a | 2019-03-22 08:50:29 -0400 | [diff] [blame] | 544 | |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 545 | .PHONY: test-cov-prep |
| 546 | test-cov-prep: |
| 547 | $(eval CC=gcc) |
| 548 | $(call test,vpp_gcov,cov-prep) |
| 549 | |
| 550 | .PHONY: test-cov-post |
| 551 | test-cov-post: |
| 552 | $(eval CC=gcc) |
| 553 | $(call test,vpp_gcov,cov-post) |
| 554 | |
adrianvillin | 8512145 | 2024-01-11 11:59:47 +0100 | [diff] [blame] | 555 | .PHONY: cov-merge |
| 556 | cov-merge: |
| 557 | @lcov --add-tracefile $(BR)/test-coverage-merged/coverage-filtered.info \ |
| 558 | -a $(BR)/test-coverage-merged/coverage-filtered1.info -o $(BR)/test-coverage-merged/coverage-merged.info |
| 559 | @genhtml $(BR)/test-coverage-merged/coverage-merged.info \ |
| 560 | --output-directory $(BR)/test-coverage-merged/html |
| 561 | @echo "Code coverage report is in $(BR)/test-coverage-merged/html/index.html" |
| 562 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 563 | .PHONY: test-all |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 564 | test-all: |
Klement Sekera | b23ffd7 | 2021-05-31 16:08:53 +0200 | [diff] [blame] | 565 | $(eval EXTENDED_TESTS=1) |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 566 | $(call test,vpp,test) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 567 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 568 | .PHONY: test-all-debug |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 569 | test-all-debug: |
Klement Sekera | b23ffd7 | 2021-05-31 16:08:53 +0200 | [diff] [blame] | 570 | $(eval EXTENDED_TESTS=1) |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 571 | $(call test,vpp_debug,test) |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 572 | |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 573 | .PHONY: test-all-cov |
| 574 | test-all-cov: |
| 575 | $(eval CC=gcc) |
| 576 | $(eval TEST_GCOV=1) |
| 577 | $(eval EXTENDED_TESTS=1) |
| 578 | $(call test,vpp_gcov,test) |
| 579 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 580 | .PHONY: papi-wipe |
| 581 | papi-wipe: test-wipe-papi |
| 582 | $(call banner,"This command is deprecated. Please use 'test-wipe-papi'") |
| 583 | |
| 584 | .PHONY: test-wipe-papi |
| 585 | test-wipe-papi: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 586 | @$(MAKE) -C test wipe-papi |
Paul Vinciguerra | 2648e44 | 2019-07-09 16:49:46 -0400 | [diff] [blame] | 587 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 588 | .PHONY: test-help |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 589 | test-help: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 590 | @$(MAKE) -C test help |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 591 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 592 | .PHONY: test-wipe |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 593 | test-wipe: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 594 | @$(MAKE) -C test wipe |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 595 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 596 | .PHONY: test-shell |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 597 | test-shell: |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 598 | $(call test,vpp,shell) |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 599 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 600 | .PHONY: test-shell-debug |
Damjan Marion | 55f9967 | 2018-03-15 19:36:41 +0100 | [diff] [blame] | 601 | test-shell-debug: |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 602 | $(call test,vpp_debug,shell) |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 603 | |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 604 | .PHONY: test-shell-cov |
| 605 | test-shell-cov: |
| 606 | $(eval CC=gcc) |
| 607 | $(eval TEST_GCOV=1) |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 608 | $(call test,vpp_gcov,shell) |
Dave Barach | 7d31ab2 | 2019-05-08 19:18:18 -0400 | [diff] [blame] | 609 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 610 | .PHONY: test-dep |
Ed Kern | 56ccc23 | 2018-04-02 16:42:48 -0600 | [diff] [blame] | 611 | test-dep: |
Renato Botelho do Couto | 893daca | 2024-06-05 18:11:46 +0000 | [diff] [blame] | 612 | @$(MAKE) -C test test-dep |
Ed Kern | 56ccc23 | 2018-04-02 16:42:48 -0600 | [diff] [blame] | 613 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 614 | .PHONY: test-doc |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 615 | test-doc: |
Dave Wallace | 51a037d | 2021-11-06 10:59:22 -0400 | [diff] [blame] | 616 | @echo "make test-doc is DEPRECATED: use 'make docs'" |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 617 | sleep 300 |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 618 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 619 | .PHONY: test-wipe-doc |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 620 | test-wipe-doc: |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 621 | @echo "make test-wipe-doc is DEPRECATED" |
| 622 | sleep 300 |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 623 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 624 | .PHONY: test-wipe-cov |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 625 | test-wipe-cov: |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 626 | $(call make,$(PLATFORM)_gcov,$(addsuffix -wipe,$(TARGETS))) |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 627 | @$(MAKE) -C test wipe-cov |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 628 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 629 | .PHONY: test-wipe-all |
| 630 | test-wipe-all: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 631 | @$(MAKE) -C test wipe-all |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 632 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 633 | # Note: All python venv consolidated in test/Makefile, test/requirements*.txt |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 634 | .PHONY: test-checkstyle |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 635 | test-checkstyle: |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 636 | $(warning test-checkstyle is deprecated. Running checkstyle-python.") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 637 | @$(MAKE) -C test checkstyle-python-all |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 638 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 639 | # Note: All python venv consolidated in test/Makefile, test/requirements*.txt |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 640 | .PHONY: test-checkstyle-diff |
| 641 | test-checkstyle-diff: |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 642 | $(warning test-checkstyle-diff is deprecated. Running checkstyle-python.") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 643 | @$(MAKE) -C test checkstyle-python-all |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 644 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 645 | .PHONY: test-refresh-deps |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 646 | test-refresh-deps: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 647 | @$(MAKE) -C test refresh-deps |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 648 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 649 | .PHONY: retest |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 650 | retest: |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 651 | $(call test,vpp,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 652 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 653 | .PHONY: retest-debug |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 654 | retest-debug: |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 655 | $(call test,vpp_debug,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 656 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 657 | .PHONY: retest-all |
| 658 | retest-all: |
Klement Sekera | b23ffd7 | 2021-05-31 16:08:53 +0200 | [diff] [blame] | 659 | $(eval EXTENDED_TESTS=1) |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 660 | $(call test,vpp,retest) |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 661 | |
| 662 | .PHONY: retest-all-debug |
| 663 | retest-all-debug: |
Klement Sekera | b23ffd7 | 2021-05-31 16:08:53 +0200 | [diff] [blame] | 664 | $(eval EXTENDED_TESTS=1) |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 665 | $(call test,vpp_debug,retest) |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 666 | |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 667 | .PHONY: test-start-vpp-in-gdb |
| 668 | test-start-vpp-in-gdb: |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 669 | $(call test,vpp,start-gdb) |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 670 | |
| 671 | .PHONY: test-start-vpp-debug-in-gdb |
| 672 | test-start-vpp-debug-in-gdb: |
Klement Sekera | ea2721f | 2021-05-31 16:11:49 +0200 | [diff] [blame] | 673 | $(call test,vpp_debug,start-gdb) |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 674 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 675 | ifeq ("$(wildcard $(STARTUP_CONF))","") |
| 676 | define run |
| 677 | @echo "WARNING: STARTUP_CONF not defined or file doesn't exist." |
| 678 | @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 679 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 680 | $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 681 | endef |
| 682 | else |
| 683 | define run |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 684 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 685 | $(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] | 686 | endef |
| 687 | endif |
| 688 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 689 | %.files: .FORCE |
Damjan Marion | ac8f936 | 2021-04-28 00:11:33 +0200 | [diff] [blame] | 690 | @find src -name '*.[chS]' > $@ |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 691 | |
| 692 | .FORCE: |
| 693 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 694 | .PHONY: run |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 695 | run: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 696 | $(call run, $(BR)/install-$(PLATFORM)_debug-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 697 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 698 | .PHONY: run-release |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 699 | run-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 700 | $(call run, $(BR)/install-$(PLATFORM)-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 701 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 702 | .PHONY: debug |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 703 | debug: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 704 | $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 705 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 706 | .PHONY: build-coverity |
Damjan Marion | 005849e | 2018-07-19 14:39:40 +0200 | [diff] [blame] | 707 | build-coverity: |
Dave Barach | 3ad7704 | 2017-01-04 17:24:32 -0500 | [diff] [blame] | 708 | $(call make,$(PLATFORM)_coverity,install-packages) |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 709 | @$(MAKE) -C build-root PLATFORM=vpp TAG=vpp_coverity libmemif-install |
Dave Barach | 3ad7704 | 2017-01-04 17:24:32 -0500 | [diff] [blame] | 710 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 711 | .PHONY: debug-release |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 712 | debug-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 713 | $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 714 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 715 | .PHONY: build-vat |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 716 | build-vat: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 717 | $(call make,$(PLATFORM)_debug,vpp-api-test-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 718 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 719 | .PHONY: run-vat |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 720 | run-vat: |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 721 | @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 722 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 723 | .PHONY: pkg-deb |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 724 | pkg-deb: |
Damjan Marion | 4d2f86a | 2019-01-18 13:28:22 +0100 | [diff] [blame] | 725 | $(call make,$(PLATFORM),vpp-package-deb) |
| 726 | |
Dave Barach | 6d97e62 | 2020-03-18 10:14:40 -0400 | [diff] [blame] | 727 | .PHONY: pkg-snap |
| 728 | pkg-snap: |
| 729 | cd extras/snap ; \ |
| 730 | ./prep ; \ |
| 731 | SNAPCRAFT_BUILD_ENVIRONMENT_MEMORY=8G \ |
| 732 | SNAPCRAFT_BUILD_ENVIRONMENT_CPU=6 \ |
| 733 | snapcraft --debug |
| 734 | |
| 735 | .PHONY: snap-clean |
| 736 | snap-clean: |
| 737 | cd extras/snap ; \ |
| 738 | snapcraft clean ; \ |
| 739 | rm -f *.snap *.tgz |
| 740 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 741 | .PHONY: pkg-deb-debug |
Damjan Marion | 4d2f86a | 2019-01-18 13:28:22 +0100 | [diff] [blame] | 742 | pkg-deb-debug: |
| 743 | $(call make,$(PLATFORM)_debug,vpp-package-deb) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 744 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 745 | .PHONY: pkg-rpm |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 746 | pkg-rpm: dist |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 747 | $(MAKE) -C extras/rpm |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 748 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 749 | .PHONY: pkg-srpm |
Thomas F Herbert | b60f496 | 2017-07-19 19:17:15 -0400 | [diff] [blame] | 750 | pkg-srpm: dist |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 751 | $(MAKE) -C extras/rpm srpm |
Thomas F Herbert | b60f496 | 2017-07-19 19:17:15 -0400 | [diff] [blame] | 752 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 753 | .PHONY: install-ext-deps |
Damjan Marion | 4a6cb83 | 2018-09-18 18:41:38 +0200 | [diff] [blame] | 754 | install-ext-deps: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 755 | $(MAKE) -C build/external install-$(PKG) |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 756 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 757 | .PHONY: install-ext-dep |
| 758 | install-ext-dep: install-ext-deps |
| 759 | |
Dave Wallace | 79c8f99 | 2024-05-15 18:16:40 -0400 | [diff] [blame] | 760 | .PHONY: install-opt-deps |
| 761 | install-opt-deps: |
| 762 | $(MAKE) -C build/optional install-$(PKG) |
| 763 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 764 | .PHONY: json-api-files |
Paul Vinciguerra | 9529feb | 2019-07-15 15:22:31 -0400 | [diff] [blame] | 765 | json-api-files: |
| 766 | $(WS_ROOT)/src/tools/vppapigen/generate_json.py |
| 767 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 768 | .PHONY: json-api-files-debug |
Paul Vinciguerra | 9529feb | 2019-07-15 15:22:31 -0400 | [diff] [blame] | 769 | json-api-files-debug: |
| 770 | $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target |
| 771 | |
Vladimir Lavor | 3ff1598 | 2021-04-08 13:08:04 +0200 | [diff] [blame] | 772 | .PHONY: go-api-files |
| 773 | go-api-files: json-api-files |
Nathan Skrzypczak | d591b82 | 2022-03-10 12:38:31 +0100 | [diff] [blame] | 774 | $(WS_ROOT)/src/tools/vppapigen/generate_go.py $(ARGS) |
Vladimir Lavor | 3ff1598 | 2021-04-08 13:08:04 +0200 | [diff] [blame] | 775 | |
Adrian Villin | 7d1e4a4 | 2024-06-13 08:59:58 +0200 | [diff] [blame] | 776 | .PHONY: cleanup-hst |
| 777 | cleanup-hst: |
| 778 | $(MAKE) -C extras/hs-test cleanup-hst |
| 779 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 780 | .PHONY: ctags |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 781 | ctags: ctags.files |
Jerome Tollet | df5fbf6 | 2020-12-05 11:01:14 +0100 | [diff] [blame] | 782 | @ctags --totals --tag-relative=yes -L $< |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 783 | @rm $< |
| 784 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 785 | .PHONY: gtags |
Keith Burns (alagalah) | 4b72a58 | 2016-07-02 17:54:36 -0700 | [diff] [blame] | 786 | gtags: ctags |
| 787 | @gtags --gtagslabel=ctags |
| 788 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 789 | .PHONY: cscope |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 790 | cscope: cscope.files |
| 791 | @cscope -b -q -v |
Marek Gradzki | 60c63c7 | 2016-04-26 08:01:31 +0200 | [diff] [blame] | 792 | |
Damjan Marion | 13bcb92 | 2020-05-08 19:01:22 +0200 | [diff] [blame] | 793 | .PHONY: compdb |
| 794 | compdb: |
Damjan Marion | f4ca484 | 2020-10-23 17:20:32 +0200 | [diff] [blame] | 795 | @ninja -C build-root/build-vpp_debug-native/vpp build.ninja |
| 796 | @ninja -C build-root/build-vpp_debug-native/vpp -t compdb | \ |
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 797 | src/scripts/compdb_cleanup.py > compile_commands.json |
Damjan Marion | 13bcb92 | 2020-05-08 19:01:22 +0200 | [diff] [blame] | 798 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 799 | .PHONY: checkstyle |
Ole Troan | f3aebda | 2020-01-03 16:37:27 +0100 | [diff] [blame] | 800 | checkstyle: checkfeaturelist |
Damjan Marion | 942542f | 2020-12-12 19:09:31 +0100 | [diff] [blame] | 801 | @extras/scripts/checkstyle.sh |
Damjan Marion | 2470485 | 2016-09-07 13:10:50 +0200 | [diff] [blame] | 802 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 803 | .PHONY: checkstyle-commit |
| 804 | checkstyle-commit: |
| 805 | @extras/scripts/check_commit_msg.sh |
| 806 | |
| 807 | .PHONY: checkstyle-test |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 808 | checkstyle-test: |
| 809 | $(warning test-checkstyle is deprecated. Running checkstyle-python.") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 810 | @$(MAKE) -C test checkstyle-python-all |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 811 | |
| 812 | # Note: All python venv consolidated in test/Makefile, test/requirements*.txt |
| 813 | .PHONY: checkstyle-python |
| 814 | checkstyle-python: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 815 | @$(MAKE) -C test checkstyle-python-all |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 816 | |
Adrian Villin | 5638740 | 2024-06-11 10:32:08 +0200 | [diff] [blame] | 817 | .PHONY: checkstyle-go |
| 818 | checkstyle-go: |
| 819 | @$(MAKE) -C extras/hs-test checkstyle-go |
| 820 | |
| 821 | .PHONY: fixstyle-go |
| 822 | fixstyle-go: |
| 823 | @$(MAKE) -C extras/hs-test fixstyle-go |
| 824 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 825 | .PHONY: checkstyle-all |
Adrian Villin | 7d1e4a4 | 2024-06-13 08:59:58 +0200 | [diff] [blame] | 826 | checkstyle-all: checkstyle-commit checkstyle checkstyle-python docs-spell checkstyle-go |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 827 | |
| 828 | .PHONY: fixstyle |
Damjan Marion | 2470485 | 2016-09-07 13:10:50 +0200 | [diff] [blame] | 829 | fixstyle: |
Damjan Marion | 942542f | 2020-12-12 19:09:31 +0100 | [diff] [blame] | 830 | @extras/scripts/checkstyle.sh --fix |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 831 | |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 832 | # Note: All python venv consolidated in test/Makefile, test/requirements*.txt |
| 833 | .PHONY: fixstyle-python |
| 834 | fixstyle-python: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 835 | @$(MAKE) -C test fixstyle-python-all |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 836 | |
Ole Troan | 5c318c7 | 2020-05-05 12:23:47 +0200 | [diff] [blame] | 837 | .PHONY: checkstyle-api |
| 838 | checkstyle-api: |
Ole Troan | ab9f573 | 2020-12-15 10:19:25 +0100 | [diff] [blame] | 839 | @extras/scripts/crcchecker.py --check-patchset |
Ole Troan | 5c318c7 | 2020-05-05 12:23:47 +0200 | [diff] [blame] | 840 | |
Paul Vinciguerra | ea1a651 | 2019-11-01 02:34:32 -0400 | [diff] [blame] | 841 | # necessary because Bug 1696324 - Update to python3.6 breaks PyYAML dependencies |
| 842 | # Status: CLOSED CANTFIX |
| 843 | # https://bugzilla.redhat.com/show_bug.cgi?id=1696324 |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 844 | .PHONY: centos-pyyaml |
Paul Vinciguerra | ea1a651 | 2019-11-01 02:34:32 -0400 | [diff] [blame] | 845 | centos-pyyaml: |
Paul Vinciguerra | ea1a651 | 2019-11-01 02:34:32 -0400 | [diff] [blame] | 846 | ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8) |
| 847 | @sudo -E yum install $(CONFIRM) python3-pyyaml |
| 848 | endif |
| 849 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 850 | .PHONY: featurelist |
Paul Vinciguerra | ea1a651 | 2019-11-01 02:34:32 -0400 | [diff] [blame] | 851 | featurelist: centos-pyyaml |
Damjan Marion | ac8f936 | 2021-04-28 00:11:33 +0200 | [diff] [blame] | 852 | @extras/scripts/fts.py --all --markdown |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 853 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 854 | .PHONY: checkfeaturelist |
Paul Vinciguerra | ea1a651 | 2019-11-01 02:34:32 -0400 | [diff] [blame] | 855 | checkfeaturelist: centos-pyyaml |
Damjan Marion | ac8f936 | 2021-04-28 00:11:33 +0200 | [diff] [blame] | 856 | @extras/scripts/fts.py --validate --all |
Ole Troan | 6a3064f | 2019-05-14 13:24:10 +0200 | [diff] [blame] | 857 | |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 858 | # |
| 859 | # Build the documentation |
| 860 | # |
| 861 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 862 | .PHONY: bootstrap-doxygen |
Damjan Marion | 6bbf83a | 2017-01-10 10:39:21 +0100 | [diff] [blame] | 863 | bootstrap-doxygen: |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 864 | @echo "make bootstrap-doxygen is DEPRECATED" |
| 865 | sleep 300 |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 866 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 867 | .PHONY: doxygen |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 868 | doxygen: docs |
| 869 | @echo "make doxygen is DEPRECATED: use 'make docs'" |
| 870 | sleep 300 |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 871 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 872 | .PHONY: wipe-doxygen |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 873 | wipe-doxygen: |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 874 | @echo "make wipe-doxygen is DEPRECATED" |
| 875 | sleep 300 |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 876 | |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 877 | .PHONY: docs-% |
| 878 | docs-%: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 879 | @$(MAKE) -C $(WS_ROOT)/docs $* |
jdenisco | 3138d72 | 2018-09-24 14:59:33 -0400 | [diff] [blame] | 880 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 881 | .PHONY: docs |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 882 | docs: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 883 | @$(MAKE) -C $(WS_ROOT)/docs docs |
jdenisco | 3138d72 | 2018-09-24 14:59:33 -0400 | [diff] [blame] | 884 | |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 885 | .PHONY: pkg-verify |
Dave Wallace | 7b8a30d | 2019-07-15 12:03:51 -0400 | [diff] [blame] | 886 | pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps |
Dave Wallace | 99e26c1 | 2022-09-09 11:34:02 -0400 | [diff] [blame] | 887 | $(call banner,"Building for PLATFORM=vpp") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 888 | @$(MAKE) -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages |
Damjan Marion | 686c1c8 | 2017-04-19 14:09:07 +0200 | [diff] [blame] | 889 | $(call banner,"Building sample-plugin") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 890 | @$(MAKE) -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install |
Damjan Marion | 23d4e8a | 2018-03-26 14:09:38 +0200 | [diff] [blame] | 891 | $(call banner,"Building libmemif") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 892 | @$(MAKE) -C build-root PLATFORM=vpp TAG=vpp libmemif-install |
Damjan Marion | 2ce7f98 | 2017-01-09 20:24:50 +0100 | [diff] [blame] | 893 | $(call banner,"Building $(PKG) packages") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 894 | @$(MAKE) pkg-$(PKG) |
Dave Wallace | 7b8a30d | 2019-07-15 12:03:51 -0400 | [diff] [blame] | 895 | |
Dave Wallace | 99e26c1 | 2022-09-09 11:34:02 -0400 | [diff] [blame] | 896 | # Note: 'make verify' target is not used by ci-management scripts |
| 897 | MAKE_VERIFY_GATE_OS ?= ubuntu-22.04 |
Dave Wallace | e790690 | 2019-11-14 12:19:32 -0500 | [diff] [blame] | 898 | .PHONY: verify |
Dave Wallace | 7b8a30d | 2019-07-15 12:03:51 -0400 | [diff] [blame] | 899 | verify: pkg-verify |
Paul Vinciguerra | 86a9441 | 2018-10-26 05:55:18 -0700 | [diff] [blame] | 900 | ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS)) |
Paul Vinciguerra | 4bf8490 | 2019-07-31 00:34:05 -0400 | [diff] [blame] | 901 | $(call banner,"Testing vppapigen") |
| 902 | @src/tools/vppapigen/test_vppapigen.py |
Damjan Marion | 855e268 | 2018-08-24 13:37:45 +0200 | [diff] [blame] | 903 | $(call banner,"Running tests") |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 904 | @$(MAKE) COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test |
Paul Vinciguerra | 86a9441 | 2018-10-26 05:55:18 -0700 | [diff] [blame] | 905 | else |
| 906 | $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)") |
Damjan Marion | aade2c5 | 2017-05-22 16:56:54 +0200 | [diff] [blame] | 907 | endif |
Mohammed Hawari | 4e939ce | 2022-09-19 16:26:25 +0200 | [diff] [blame] | 908 | |
| 909 | .PHONY: check-dpdk-mlx |
| 910 | check-dpdk-mlx: |
Tom Jones | 0aa0d6f | 2024-01-18 10:48:17 +0000 | [diff] [blame] | 911 | @[ $$($(MAKE) -sC build/external dpdk-show-DPDK_MLX_DEFAULT) = y ] |