blob: 138feb78497aca80ec432c598643e922223a0249 [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.
Ed Warnickecb9cada2015-12-08 15:45:58 -070013
Damjan Marion4a6cb832018-09-18 18:41:38 +020014external_source = build
15
Ed Warnickecb9cada2015-12-08 15:45:58 -070016ifneq (,$(findstring debug,$(TAG)))
17 DPDK_DEBUG=y
18else
19 DPDK_DEBUG=n
20endif
21
22DPDK_MAKE_ARGS = -C $(call find_source_fn,$(PACKAGE_SOURCE)) \
Damjan Marion561f2732018-09-21 12:27:45 +020023 BUILD_DIR=$(PACKAGE_BUILD_DIR) \
24 INSTALL_DIR=$(PACKAGE_INSTALL_DIR) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070025 DPDK_DEBUG=$(DPDK_DEBUG)
26
Damjan Marion696f1ad2016-12-23 22:42:41 +010027DPDK_MLX5_PMD=$(strip $($(PLATFORM)_uses_dpdk_mlx5_pmd))
28ifneq ($(DPDK_MLX5_PMD),)
29DPDK_MAKE_ARGS += DPDK_MLX5_PMD=y
30endif
31
Rui Cai60bd3022018-05-11 21:52:22 +000032DPDK_MLX4_PMD=$(strip $($(PLATFORM)_uses_dpdk_mlx4_pmd))
33ifneq ($(DPDK_MLX4_PMD),)
34DPDK_MAKE_ARGS += DPDK_MLX4_PMD=y
35endif
36
Dave Barachb635c562016-05-20 12:56:41 -040037DPDK_PLATFORM_TARGET=$(strip $($(PLATFORM)_dpdk_target))
38ifneq ($(DPDK_PLATFORM_TARGET),)
39DPDK_MAKE_ARGS += DPDK_TARGET=$(DPDK_PLATFORM_TARGET)
Christophe Fontaine737547e2016-05-11 08:40:33 +000040endif
41
42DPDK_MAKE_EXTRA_ARGS = $(strip $($(PLATFORM)_dpdk_make_extra_args))
43ifneq ($(DPDK_MAKE_EXTRA_ARGS),)
44DPDK_MAKE_ARGS += DPDK_MAKE_EXTRA_ARGS="$(DPDK_MAKE_EXTRA_ARGS)"
45endif
46
Damjan Marion4a6cb832018-09-18 18:41:38 +020047external_configure = echo
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Damjan Marion4a6cb832018-09-18 18:41:38 +020049external_make_args = $(DPDK_MAKE_ARGS) -C external ebuild-build
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Damjan Marion4a6cb832018-09-18 18:41:38 +020051external_install = make $(DPDK_MAKE_ARGS) -C external ebuild-install