blob: c5e6f634dd739b0dbdbb4a76ea4885fe4061efc7 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001# Copyright (c) 2015 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
14# Scripts require non-POSIX parts of bash
Tom Jonesc3b416c2024-01-18 14:51:44 +000015SHELL := $(shell which bash)
Ed Warnickecb9cada2015-12-08 15:45:58 -070016
Damjan Marion561f2732018-09-21 12:27:45 +020017DL_CACHE_DIR = $(HOME)/Downloads
Damjan Marion561f2732018-09-21 12:27:45 +020018MAKE_ARGS ?= -j
19BUILD_DIR ?= $(CURDIR)/_build
20INSTALL_DIR ?= $(CURDIR)/_install
Renato Botelho do Coutodcd08b22022-03-08 15:40:49 -030021PKG_VERSION ?= $(shell git describe --abbrev=0 --match 'v[0-9]*' | cut -d- -f1 | cut -dv -f2 | cut -d. -f1,2)
Damjan Marion4f5f8d72018-10-11 09:18:26 -070022PKG_SUFFIX ?= $(shell git log --oneline v$(PKG_VERSION)-rc0.. . | wc -l)
Andrew Yourtchenko5ca8bfc2023-10-18 21:18:32 +000023SOURCE_DATE_EPOCH ?= $(shell git log -1 --pretty=%ct .)
Chris Lukeb2861e82017-06-14 11:24:41 -040024JOBS := $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo),\
Damjan Marion93242842017-11-13 20:09:21 +010025 $(shell grep -c ^processor /proc/cpuinfo), 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Damjan Marion561f2732018-09-21 12:27:45 +020027B := $(BUILD_DIR)
28I := $(INSTALL_DIR)
Ed Warnickecb9cada2015-12-08 15:45:58 -070029
Thomas F Herbertdc66aad2019-03-29 15:41:48 -040030ifneq ($(shell which cmake3),)
31CMAKE?=cmake3
32else
33CMAKE?=cmake
34endif
35
PiotrX Kleski9235d432020-10-12 15:33:11 +020036ARCH_X86_64=$(filter x86_64,$(shell uname -m))
Damjan Marion01fe7ab2023-10-23 18:36:18 +020037AARCH64=$(filter aarch64,$(shell uname -m))
PiotrX Kleski9235d432020-10-12 15:33:11 +020038
Damjan Marion561f2732018-09-21 12:27:45 +020039include packages.mk
Damjan Marion561f2732018-09-21 12:27:45 +020040include packages/ipsec-mb.mk
Aloys Augustin7cae0032019-04-01 16:43:29 +020041include packages/quicly.mk
Tom Jonesb077d662024-01-24 10:46:44 +000042ifneq ($(shell uname), FreeBSD)
Benoît Gannefe750c22019-03-25 11:41:34 +010043include packages/rdma-core.mk
Mohammed Hawari4e939ce2022-09-19 16:26:25 +020044include packages/dpdk.mk
Yulong Peif9a17482023-01-05 02:26:32 +000045include packages/xdp-tools.mk
Damjan Marion01fe7ab2023-10-23 18:36:18 +020046include packages/octeon-roc.mk
Tom Jonesb077d662024-01-24 10:46:44 +000047endif # FreeBSD
Damjan Marion2ce7f982017-01-09 20:24:50 +010048
Ed Warnickecb9cada2015-12-08 15:45:58 -070049.PHONY: clean
50clean:
51 @rm -rf $(B) $(I)
52
Benoît Gannefe750c22019-03-25 11:41:34 +010053.PHONY: install
Tom Jonesb077d662024-01-24 10:46:44 +000054ifeq ($(shell uname), FreeBSD)
55install: $(if $(ARCH_X86_64), ipsec-mb-install) quicly-install
56else
Damjan Marion01fe7ab2023-10-23 18:36:18 +020057install: $(if $(ARCH_X86_64), ipsec-mb-install) dpdk-install rdma-core-install quicly-install xdp-tools-install $(if $(AARCH64), octeon-roc-install)
Tom Jonesb077d662024-01-24 10:46:44 +000058endif # FreeBSD
Benoît Gannefe750c22019-03-25 11:41:34 +010059
60.PHONY: config
Tom Jonesb077d662024-01-24 10:46:44 +000061ifeq ($(shell uname), FreeBSD)
62config: $(if $(ARCH_X86_64), ipsec-mb-config) quicly-build
63else
Damjan Marionaa659ef2022-04-05 19:26:51 +020064config: $(if $(ARCH_X86_64), ipsec-mb-config) dpdk-config rdma-core-config quicly-build
Tom Jonesb077d662024-01-24 10:46:44 +000065endif # FreeBSD
Benoît Gannefe750c22019-03-25 11:41:34 +010066
Damjan Marion2ce7f982017-01-09 20:24:50 +010067##############################################################################
68# .deb packaging
69##############################################################################
70
Damjan Marion4a6cb832018-09-18 18:41:38 +020071DEB_VER := $(PKG_VERSION)
Damjan Marion2ce7f982017-01-09 20:24:50 +010072DEB_ARCH=$(shell dpkg --print-architecture 2> /dev/null)
Damjan Marion4a6cb832018-09-18 18:41:38 +020073DEV_DEB=vpp-ext-deps_$(DEB_VER)-$(PKG_SUFFIX)_$(DEB_ARCH).deb
74INSTALLED_VER=$(shell dpkg-query --showformat='$${Version}' --show vpp-ext-deps 2> /dev/null)
Damjan Marion2ce7f982017-01-09 20:24:50 +010075
76.PHONY: build-deb install-deb check-deb
77
78deb/debian/changelog: Makefile
Damjan Marion4a6cb832018-09-18 18:41:38 +020079 @echo "vpp-ext-deps ($(DEB_VER)-$(PKG_SUFFIX)) unstable; urgency=low" > $@
Damjan Marion2ce7f982017-01-09 20:24:50 +010080 @echo "" >> $@
Damjan Marion4a6cb832018-09-18 18:41:38 +020081 @echo " * Version $(DEB_VER)" >> $@
Damjan Marion2ce7f982017-01-09 20:24:50 +010082 @echo "" >> $@
Andrew Yourtchenko5ca8bfc2023-10-18 21:18:32 +000083 @echo " -- VPP Dev <vpp-dev@lists.fd.io> $(shell date -R --date=@${SOURCE_DATE_EPOCH})" >> $@
Damjan Marion2ce7f982017-01-09 20:24:50 +010084
85$(DEV_DEB): deb/debian/changelog
86 @cd deb && dpkg-buildpackage -b -uc -us
Damjan Mariond93638e2019-03-29 21:22:09 +010087 git clean -fdx deb
Damjan Marion2ce7f982017-01-09 20:24:50 +010088
89build-deb: $(DEV_DEB)
90
91install-deb:
Damjan Marion4a6cb832018-09-18 18:41:38 +020092ifneq ($(INSTALLED_VER),$(DEB_VER)-$(PKG_SUFFIX))
Damjan Marion2ce7f982017-01-09 20:24:50 +010093 @make $(DEV_DEB)
94 @sudo dpkg -i $(DEV_DEB)
95else
96 @echo "=========================================================="
Damjan Marion4a6cb832018-09-18 18:41:38 +020097 @echo " Up-to-date vpp-ext-deps package already installed"
Damjan Marion2ce7f982017-01-09 20:24:50 +010098 @echo "=========================================================="
99endif
100
101check-deb:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200102ifneq ($(INSTALLED_VER),$(DEB_VER)-$(PKG_SUFFIX))
Damjan Marion2ce7f982017-01-09 20:24:50 +0100103 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +0100104 @echo " Out of date vpp-ext-deps package installed."
105 @echo " Installed: $(INSTALLED_VER)"
106 @echo " Needed: $(DEB_VER)-$(PKG_SUFFIX)"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100107 @echo ""
Damjan Marion4a6cb832018-09-18 18:41:38 +0200108 @echo " Please upgrade by invoking 'make install-ext-deps'"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100109 @echo " from the top level directory."
110 @echo "=========================================================="
111endif
112
113##############################################################################
114# .rpm packaging
115##############################################################################
116
Damjan Marion4a6cb832018-09-18 18:41:38 +0200117RPM_VER := $(PKG_VERSION)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100118RPM_ARCH=$(shell rpm --eval "%{_arch}" 2> /dev/null)
Damjan Marion4a6cb832018-09-18 18:41:38 +0200119DEV_RPM=vpp-ext-deps-$(RPM_VER)-$(PKG_SUFFIX).$(RPM_ARCH).rpm
jiangxiaoming5ab7dc42020-12-30 15:25:15 +0800120INSTALLED_RPM_VER=$(shell rpm -q --queryformat '%{VERSION}-%{RELEASE}' vpp-ext-deps 2> /dev/null | grep -v "vpp-ext-deps")
Damjan Marion2ce7f982017-01-09 20:24:50 +0100121
122.PHONY: build-rpm install-rpm check-rpm
123
Damjan Marion4a6cb832018-09-18 18:41:38 +0200124$(DEV_RPM): Makefile rpm/vpp-ext-deps.spec
Damjan Marion2ce7f982017-01-09 20:24:50 +0100125 @rpmbuild -bb \
126 --define "_topdir $(CURDIR)/rpm" \
Damjan Marion4a6cb832018-09-18 18:41:38 +0200127 --define "_version $(RPM_VER)" \
Damjan Marion2ce7f982017-01-09 20:24:50 +0100128 --define "_release $(PKG_SUFFIX)" \
Damjan Marion4a6cb832018-09-18 18:41:38 +0200129 $(CURDIR)/rpm/vpp-ext-deps.spec
Damjan Marion2ce7f982017-01-09 20:24:50 +0100130 mv rpm/RPMS/$(RPM_ARCH)/*.rpm .
Damjan Mariond93638e2019-03-29 21:22:09 +0100131 @git clean -fdx rpm
Damjan Marion2ce7f982017-01-09 20:24:50 +0100132
133build-rpm: $(DEV_RPM)
134
135install-rpm:
Damjan Marion74447d42018-09-27 14:04:43 +0200136ifneq ($(INSTALLED_RPM_VER),$(RPM_VER)-$(PKG_SUFFIX))
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100137 @$(MAKE) $(DEV_RPM)
Dave Barachb2528482019-07-01 19:08:33 -0400138 sudo rpm -e vpp-ext-deps || true
Marco Varlesefe7740e2018-10-25 11:49:39 +0200139 sudo rpm -Uih --force $(DEV_RPM)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100140else
141 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +0100142 @echo " Up-to-date vpp-ext-deps package already installed"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100143 @echo "=========================================================="
144endif
145
146check-rpm:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200147ifneq ($(INSTALLED_RPM_VER),$(RPM_VER)-$(PKG_SUFFIX))
Damjan Marion2ce7f982017-01-09 20:24:50 +0100148 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +0100149 @echo " Out of date vpp-ext-deps package installed."
150 @echo " Installed: $(INSTALLED_RPM_VER)"
151 @echo " Needed: $(RPM_VER)-$(PKG_SUFFIX)"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100152 @echo ""
Damjan Marion4a6cb832018-09-18 18:41:38 +0200153 @echo " Please upgrade by invoking 'make install-ext-deps'"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100154 @echo " from the top level directory."
155 @echo "=========================================================="
156endif
157
158##############################################################################
159# ebuild support
160##############################################################################
161
162.PHONY: ebuild-build ebuild-install
163
164ebuild-build:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200165ifeq ($(INSTALLED_VER)$(INSTALLED_RPM_VER),)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100166 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +0100167 @echo "Building vpp-ext-deps from source. Consider installing"
168 @echo "development package by invoking 'make install-ext-deps'"
169 @echo "from the top level directory"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100170 @echo "=========================================================="
Tom Jones0aa0d6f2024-01-18 10:48:17 +0000171 $(MAKE) config
Damjan Marion2ce7f982017-01-09 20:24:50 +0100172else
Damjan Marion4a6cb832018-09-18 18:41:38 +0200173ifneq ($(INSTALLED_VER),)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100174 make check-deb
175endif
176ifneq ($(INSTALLED_RPM_VER),)
Tom Jones0aa0d6f2024-01-18 10:48:17 +0000177 $(MAKE) check-rpm
Damjan Marion2ce7f982017-01-09 20:24:50 +0100178endif
179endif
180
181ebuild-install:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200182ifeq ($(INSTALLED_VER)$(INSTALLED_RPM_VER),)
Tom Jones0aa0d6f2024-01-18 10:48:17 +0000183 $(MAKE) install
Damjan Marion2ce7f982017-01-09 20:24:50 +0100184endif