build: Explicitly use bash for shell scripts
[vpp.git] / build / external / Makefile
1 # 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
15 SHELL := $(shell which bash)
16
17 DL_CACHE_DIR = $(HOME)/Downloads
18 MAKE ?= make
19 MAKE_ARGS ?= -j
20 BUILD_DIR        ?= $(CURDIR)/_build
21 INSTALL_DIR      ?= $(CURDIR)/_install
22 PKG_VERSION ?= $(shell git describe --abbrev=0 --match 'v[0-9]*' | cut -d- -f1 | cut -dv -f2 | cut -d. -f1,2)
23 PKG_SUFFIX ?= $(shell git log --oneline v$(PKG_VERSION)-rc0.. . | wc -l)
24 SOURCE_DATE_EPOCH ?= $(shell git log -1 --pretty=%ct .)
25 JOBS := $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo),\
26         $(shell grep -c ^processor /proc/cpuinfo), 2)
27
28 B := $(BUILD_DIR)
29 I := $(INSTALL_DIR)
30
31 ifneq ($(shell which cmake3),)
32 CMAKE?=cmake3
33 else
34 CMAKE?=cmake
35 endif
36
37 ARCH_X86_64=$(filter x86_64,$(shell uname -m))
38 AARCH64=$(filter aarch64,$(shell uname -m))
39
40 include packages.mk
41 include packages/ipsec-mb.mk
42 include packages/quicly.mk
43 include packages/rdma-core.mk
44 include packages/dpdk.mk
45 include packages/xdp-tools.mk
46 include packages/octeon-roc.mk
47
48 .PHONY: clean
49 clean:
50         @rm -rf $(B) $(I)
51
52 .PHONY: install
53 install: $(if $(ARCH_X86_64), ipsec-mb-install) dpdk-install rdma-core-install quicly-install xdp-tools-install $(if $(AARCH64), octeon-roc-install)
54
55 .PHONY: config
56 config: $(if $(ARCH_X86_64), ipsec-mb-config) dpdk-config rdma-core-config quicly-build
57
58 ##############################################################################
59 # .deb packaging
60 ##############################################################################
61
62 DEB_VER := $(PKG_VERSION)
63 DEB_ARCH=$(shell dpkg --print-architecture 2> /dev/null)
64 DEV_DEB=vpp-ext-deps_$(DEB_VER)-$(PKG_SUFFIX)_$(DEB_ARCH).deb
65 INSTALLED_VER=$(shell dpkg-query --showformat='$${Version}' --show vpp-ext-deps 2> /dev/null)
66
67 .PHONY: build-deb install-deb check-deb
68
69 deb/debian/changelog: Makefile
70         @echo "vpp-ext-deps ($(DEB_VER)-$(PKG_SUFFIX)) unstable; urgency=low" > $@
71         @echo "" >> $@
72         @echo "  * Version $(DEB_VER)" >> $@
73         @echo "" >> $@
74         @echo " -- VPP Dev <vpp-dev@lists.fd.io>  $(shell date -R --date=@${SOURCE_DATE_EPOCH})" >> $@
75
76 $(DEV_DEB): deb/debian/changelog
77         @cd deb && dpkg-buildpackage -b -uc -us
78         git clean -fdx deb
79
80 build-deb: $(DEV_DEB)
81
82 install-deb:
83 ifneq ($(INSTALLED_VER),$(DEB_VER)-$(PKG_SUFFIX))
84         @make $(DEV_DEB)
85         @sudo dpkg -i $(DEV_DEB)
86 else
87         @echo "=========================================================="
88         @echo " Up-to-date vpp-ext-deps package already installed"
89         @echo "=========================================================="
90 endif
91
92 check-deb:
93 ifneq ($(INSTALLED_VER),$(DEB_VER)-$(PKG_SUFFIX))
94         @echo "=========================================================="
95         @echo " Out of date vpp-ext-deps package installed."
96         @echo " Installed: $(INSTALLED_VER)"
97         @echo " Needed: $(DEB_VER)-$(PKG_SUFFIX)"
98         @echo ""
99         @echo " Please upgrade by invoking 'make install-ext-deps'"
100         @echo " from the top level directory."
101         @echo "=========================================================="
102 endif
103
104 ##############################################################################
105 # .rpm packaging
106 ##############################################################################
107
108 RPM_VER := $(PKG_VERSION)
109 RPM_ARCH=$(shell rpm --eval "%{_arch}" 2> /dev/null)
110 DEV_RPM=vpp-ext-deps-$(RPM_VER)-$(PKG_SUFFIX).$(RPM_ARCH).rpm
111 INSTALLED_RPM_VER=$(shell rpm -q --queryformat '%{VERSION}-%{RELEASE}' vpp-ext-deps 2> /dev/null | grep -v "vpp-ext-deps")
112
113 .PHONY: build-rpm install-rpm check-rpm
114
115 $(DEV_RPM): Makefile rpm/vpp-ext-deps.spec
116         @rpmbuild -bb \
117           --define "_topdir $(CURDIR)/rpm" \
118           --define "_version $(RPM_VER)" \
119           --define "_release $(PKG_SUFFIX)" \
120           $(CURDIR)/rpm/vpp-ext-deps.spec
121         mv rpm/RPMS/$(RPM_ARCH)/*.rpm .
122         @git clean -fdx rpm
123
124 build-rpm: $(DEV_RPM)
125
126 install-rpm:
127 ifneq ($(INSTALLED_RPM_VER),$(RPM_VER)-$(PKG_SUFFIX))
128         @$(MAKE) $(DEV_RPM)
129         sudo rpm -e vpp-ext-deps || true
130         sudo rpm -Uih --force $(DEV_RPM)
131 else
132         @echo "=========================================================="
133         @echo " Up-to-date vpp-ext-deps package already installed"
134         @echo "=========================================================="
135 endif
136
137 check-rpm:
138 ifneq ($(INSTALLED_RPM_VER),$(RPM_VER)-$(PKG_SUFFIX))
139         @echo "=========================================================="
140         @echo " Out of date vpp-ext-deps package installed."
141         @echo " Installed: $(INSTALLED_RPM_VER)"
142         @echo " Needed: $(RPM_VER)-$(PKG_SUFFIX)"
143         @echo ""
144         @echo " Please upgrade by invoking 'make install-ext-deps'"
145         @echo " from the top level directory."
146         @echo "=========================================================="
147 endif
148
149 ##############################################################################
150 # ebuild support
151 ##############################################################################
152
153 .PHONY: ebuild-build ebuild-install
154
155 ebuild-build:
156 ifeq ($(INSTALLED_VER)$(INSTALLED_RPM_VER),)
157         @echo "=========================================================="
158         @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"
161         @echo "=========================================================="
162         make config
163 else
164 ifneq ($(INSTALLED_VER),)
165         make check-deb
166 endif
167 ifneq ($(INSTALLED_RPM_VER),)
168         make check-rpm
169 endif
170 endif
171
172 ebuild-install:
173 ifeq ($(INSTALLED_VER)$(INSTALLED_RPM_VER),)
174         make install
175 endif