blob: 1e1f5da1d1f6b2fbab9122956e00ce3db979813c [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
15SHELL := /bin/bash
16
Damjan Marion561f2732018-09-21 12:27:45 +020017DL_CACHE_DIR = $(HOME)/Downloads
18MAKE ?= make
19MAKE_ARGS ?= -j
20BUILD_DIR ?= $(CURDIR)/_build
21INSTALL_DIR ?= $(CURDIR)/_install
Renato Botelho do Coutodcd08b22022-03-08 15:40:49 -030022PKG_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 -070023PKG_SUFFIX ?= $(shell git log --oneline v$(PKG_VERSION)-rc0.. . | wc -l)
Andrew Yourtchenko5ca8bfc2023-10-18 21:18:32 +000024SOURCE_DATE_EPOCH ?= $(shell git log -1 --pretty=%ct .)
Chris Lukeb2861e82017-06-14 11:24:41 -040025JOBS := $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo),\
Damjan Marion93242842017-11-13 20:09:21 +010026 $(shell grep -c ^processor /proc/cpuinfo), 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
Damjan Marion561f2732018-09-21 12:27:45 +020028B := $(BUILD_DIR)
29I := $(INSTALL_DIR)
Ed Warnickecb9cada2015-12-08 15:45:58 -070030
Thomas F Herbertdc66aad2019-03-29 15:41:48 -040031ifneq ($(shell which cmake3),)
32CMAKE?=cmake3
33else
34CMAKE?=cmake
35endif
36
PiotrX Kleski9235d432020-10-12 15:33:11 +020037ARCH_X86_64=$(filter x86_64,$(shell uname -m))
Damjan Marion01fe7ab2023-10-23 18:36:18 +020038AARCH64=$(filter aarch64,$(shell uname -m))
PiotrX Kleski9235d432020-10-12 15:33:11 +020039
Damjan Marion561f2732018-09-21 12:27:45 +020040include packages.mk
Damjan Marion561f2732018-09-21 12:27:45 +020041include packages/ipsec-mb.mk
Aloys Augustin7cae0032019-04-01 16:43:29 +020042include packages/quicly.mk
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
Damjan Marion2ce7f982017-01-09 20:24:50 +010047
Ed Warnickecb9cada2015-12-08 15:45:58 -070048.PHONY: clean
49clean:
50 @rm -rf $(B) $(I)
51
Benoît Gannefe750c22019-03-25 11:41:34 +010052.PHONY: install
Damjan Marion01fe7ab2023-10-23 18:36:18 +020053install: $(if $(ARCH_X86_64), ipsec-mb-install) dpdk-install rdma-core-install quicly-install xdp-tools-install $(if $(AARCH64), octeon-roc-install)
Benoît Gannefe750c22019-03-25 11:41:34 +010054
55.PHONY: config
Damjan Marionaa659ef2022-04-05 19:26:51 +020056config: $(if $(ARCH_X86_64), ipsec-mb-config) dpdk-config rdma-core-config quicly-build
Benoît Gannefe750c22019-03-25 11:41:34 +010057
Damjan Marion2ce7f982017-01-09 20:24:50 +010058##############################################################################
59# .deb packaging
60##############################################################################
61
Damjan Marion4a6cb832018-09-18 18:41:38 +020062DEB_VER := $(PKG_VERSION)
Damjan Marion2ce7f982017-01-09 20:24:50 +010063DEB_ARCH=$(shell dpkg --print-architecture 2> /dev/null)
Damjan Marion4a6cb832018-09-18 18:41:38 +020064DEV_DEB=vpp-ext-deps_$(DEB_VER)-$(PKG_SUFFIX)_$(DEB_ARCH).deb
65INSTALLED_VER=$(shell dpkg-query --showformat='$${Version}' --show vpp-ext-deps 2> /dev/null)
Damjan Marion2ce7f982017-01-09 20:24:50 +010066
67.PHONY: build-deb install-deb check-deb
68
69deb/debian/changelog: Makefile
Damjan Marion4a6cb832018-09-18 18:41:38 +020070 @echo "vpp-ext-deps ($(DEB_VER)-$(PKG_SUFFIX)) unstable; urgency=low" > $@
Damjan Marion2ce7f982017-01-09 20:24:50 +010071 @echo "" >> $@
Damjan Marion4a6cb832018-09-18 18:41:38 +020072 @echo " * Version $(DEB_VER)" >> $@
Damjan Marion2ce7f982017-01-09 20:24:50 +010073 @echo "" >> $@
Andrew Yourtchenko5ca8bfc2023-10-18 21:18:32 +000074 @echo " -- VPP Dev <vpp-dev@lists.fd.io> $(shell date -R --date=@${SOURCE_DATE_EPOCH})" >> $@
Damjan Marion2ce7f982017-01-09 20:24:50 +010075
76$(DEV_DEB): deb/debian/changelog
77 @cd deb && dpkg-buildpackage -b -uc -us
Damjan Mariond93638e2019-03-29 21:22:09 +010078 git clean -fdx deb
Damjan Marion2ce7f982017-01-09 20:24:50 +010079
80build-deb: $(DEV_DEB)
81
82install-deb:
Damjan Marion4a6cb832018-09-18 18:41:38 +020083ifneq ($(INSTALLED_VER),$(DEB_VER)-$(PKG_SUFFIX))
Damjan Marion2ce7f982017-01-09 20:24:50 +010084 @make $(DEV_DEB)
85 @sudo dpkg -i $(DEV_DEB)
86else
87 @echo "=========================================================="
Damjan Marion4a6cb832018-09-18 18:41:38 +020088 @echo " Up-to-date vpp-ext-deps package already installed"
Damjan Marion2ce7f982017-01-09 20:24:50 +010089 @echo "=========================================================="
90endif
91
92check-deb:
Damjan Marion4a6cb832018-09-18 18:41:38 +020093ifneq ($(INSTALLED_VER),$(DEB_VER)-$(PKG_SUFFIX))
Damjan Marion2ce7f982017-01-09 20:24:50 +010094 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +010095 @echo " Out of date vpp-ext-deps package installed."
96 @echo " Installed: $(INSTALLED_VER)"
97 @echo " Needed: $(DEB_VER)-$(PKG_SUFFIX)"
Damjan Marion2ce7f982017-01-09 20:24:50 +010098 @echo ""
Damjan Marion4a6cb832018-09-18 18:41:38 +020099 @echo " Please upgrade by invoking 'make install-ext-deps'"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100100 @echo " from the top level directory."
101 @echo "=========================================================="
102endif
103
104##############################################################################
105# .rpm packaging
106##############################################################################
107
Damjan Marion4a6cb832018-09-18 18:41:38 +0200108RPM_VER := $(PKG_VERSION)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100109RPM_ARCH=$(shell rpm --eval "%{_arch}" 2> /dev/null)
Damjan Marion4a6cb832018-09-18 18:41:38 +0200110DEV_RPM=vpp-ext-deps-$(RPM_VER)-$(PKG_SUFFIX).$(RPM_ARCH).rpm
jiangxiaoming5ab7dc42020-12-30 15:25:15 +0800111INSTALLED_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 +0100112
113.PHONY: build-rpm install-rpm check-rpm
114
Damjan Marion4a6cb832018-09-18 18:41:38 +0200115$(DEV_RPM): Makefile rpm/vpp-ext-deps.spec
Damjan Marion2ce7f982017-01-09 20:24:50 +0100116 @rpmbuild -bb \
117 --define "_topdir $(CURDIR)/rpm" \
Damjan Marion4a6cb832018-09-18 18:41:38 +0200118 --define "_version $(RPM_VER)" \
Damjan Marion2ce7f982017-01-09 20:24:50 +0100119 --define "_release $(PKG_SUFFIX)" \
Damjan Marion4a6cb832018-09-18 18:41:38 +0200120 $(CURDIR)/rpm/vpp-ext-deps.spec
Damjan Marion2ce7f982017-01-09 20:24:50 +0100121 mv rpm/RPMS/$(RPM_ARCH)/*.rpm .
Damjan Mariond93638e2019-03-29 21:22:09 +0100122 @git clean -fdx rpm
Damjan Marion2ce7f982017-01-09 20:24:50 +0100123
124build-rpm: $(DEV_RPM)
125
126install-rpm:
Damjan Marion74447d42018-09-27 14:04:43 +0200127ifneq ($(INSTALLED_RPM_VER),$(RPM_VER)-$(PKG_SUFFIX))
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100128 @$(MAKE) $(DEV_RPM)
Dave Barachb2528482019-07-01 19:08:33 -0400129 sudo rpm -e vpp-ext-deps || true
Marco Varlesefe7740e2018-10-25 11:49:39 +0200130 sudo rpm -Uih --force $(DEV_RPM)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100131else
132 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +0100133 @echo " Up-to-date vpp-ext-deps package already installed"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100134 @echo "=========================================================="
135endif
136
137check-rpm:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200138ifneq ($(INSTALLED_RPM_VER),$(RPM_VER)-$(PKG_SUFFIX))
Damjan Marion2ce7f982017-01-09 20:24:50 +0100139 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +0100140 @echo " Out of date vpp-ext-deps package installed."
141 @echo " Installed: $(INSTALLED_RPM_VER)"
142 @echo " Needed: $(RPM_VER)-$(PKG_SUFFIX)"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100143 @echo ""
Damjan Marion4a6cb832018-09-18 18:41:38 +0200144 @echo " Please upgrade by invoking 'make install-ext-deps'"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100145 @echo " from the top level directory."
146 @echo "=========================================================="
147endif
148
149##############################################################################
150# ebuild support
151##############################################################################
152
153.PHONY: ebuild-build ebuild-install
154
155ebuild-build:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200156ifeq ($(INSTALLED_VER)$(INSTALLED_RPM_VER),)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100157 @echo "=========================================================="
Benoît Gannefe750c22019-03-25 11:41:34 +0100158 @echo "Building vpp-ext-deps from source. Consider installing"
159 @echo "development package by invoking 'make install-ext-deps'"
160 @echo "from the top level directory"
Damjan Marion2ce7f982017-01-09 20:24:50 +0100161 @echo "=========================================================="
162 make config
163else
Damjan Marion4a6cb832018-09-18 18:41:38 +0200164ifneq ($(INSTALLED_VER),)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100165 make check-deb
166endif
167ifneq ($(INSTALLED_RPM_VER),)
168 make check-rpm
169endif
170endif
171
172ebuild-install:
Damjan Marion4a6cb832018-09-18 18:41:38 +0200173ifeq ($(INSTALLED_VER)$(INSTALLED_RPM_VER),)
Damjan Marion2ce7f982017-01-09 20:24:50 +0100174 make install
175endif