blob: ad1d1fc9a28c2e875295146f71dbf05e00575704 [file] [log] [blame]
Dave Barach8d0f2f02018-03-12 09:31:36 -04001# 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
Damjan Marion7cd468a2016-12-19 23:05:39 +010014vpp_source = src
Ed Warnickecb9cada2015-12-08 15:45:58 -070015
Damjan Marionad1e1c52018-09-01 20:06:10 +020016ifneq ($(shell which cmake3),)
17CMAKE?=cmake3
18else
19CMAKE?=cmake
20endif
21
Damjan Marion4a6cb832018-09-18 18:41:38 +020022vpp_cmake_prefix_path = /opt/vpp/external/$(shell uname -m)
23vpp_cmake_prefix_path += $(PACKAGE_INSTALL_DIR)external
24vpp_cmake_prefix_path := $(subst $() $(),;,$(vpp_cmake_prefix_path))
25
Damjan Marionad1e1c52018-09-01 20:06:10 +020026vpp_cmake_args ?=
27vpp_cmake_args += -DCMAKE_INSTALL_PREFIX:PATH=$(PACKAGE_INSTALL_DIR)
Damjan Marion2baa1152019-11-07 11:32:16 +010028vpp_cmake_args += -DCMAKE_BUILD_TYPE="$($(TAG)_TAG_BUILD_TYPE)"
Damjan Marion4a6cb832018-09-18 18:41:38 +020029vpp_cmake_args += -DCMAKE_PREFIX_PATH:PATH="$(vpp_cmake_prefix_path)"
Lijian Zhang2e08b1a2018-09-20 18:40:56 +080030ifeq ("$(V)","1")
31vpp_cmake_args += -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
32endif
Damjan Marionad1e1c52018-09-01 20:06:10 +020033
Nathan Skrzypczak29736542019-09-16 16:26:58 +020034ifneq ($(VPP_EXTRA_CMAKE_ARGS),)
35vpp_cmake_args += $(VPP_EXTRA_CMAKE_ARGS)
36endif
37
Damjan Marion4a6cb832018-09-18 18:41:38 +020038vpp_configure_depend += external-install
Damjan Marion612dd6a2018-07-30 12:45:07 +020039vpp_configure = \
40 cd $(PACKAGE_BUILD_DIR) && \
Damjan Marionad1e1c52018-09-01 20:06:10 +020041 $(CMAKE) -G Ninja $(vpp_cmake_args) $(call find_source_fn,$(PACKAGE_SOURCE))
juraj.linkes1c887d92019-08-08 15:59:10 +020042vpp_build = $(CMAKE) --build $(PACKAGE_BUILD_DIR) -- $(MAKE_PARALLEL_FLAGS)
Damjan Marionad1e1c52018-09-01 20:06:10 +020043vpp_install = $(CMAKE) --build $(PACKAGE_BUILD_DIR) -- install | grep -v 'Set runtime path'
Damjan Marion4d2f86a2019-01-18 13:28:22 +010044
45vpp-package-deb: vpp-install
Damjan Marion88b2e362021-04-29 18:47:25 +020046 @$(CMAKE) --build $(PACKAGE_BUILD_DIR)/vpp -- pkg-deb
Damjan Marion4d2f86a2019-01-18 13:28:22 +010047 @find $(PACKAGE_BUILD_DIR) \
Damjan Marion88b2e362021-04-29 18:47:25 +020048 -maxdepth 2 \
Damjan Marion4d2f86a2019-01-18 13:28:22 +010049 \( -name '*.changes' -o -name '*.deb' -o -name '*.buildinfo' \) \
50 -exec mv {} $(CURDIR) \;