blob: db31added72d37e61cb53a6865d7ad15bac6212b [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
Nick Brownae4ed322021-09-07 18:24:42 +010037ifeq ("$(V)","1")
38DPDK_MAKE_ARGS += DPDK_VERBOSE=1
39endif
40
Damjan Marion4a6cb832018-09-18 18:41:38 +020041external_configure = echo
Ed Warnickecb9cada2015-12-08 15:45:58 -070042
Mohammed Hawari8f5c6102020-11-30 15:04:43 +010043external_build = echo
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
Mohammed Hawari8f5c6102020-11-30 15:04:43 +010045external_install = make $(DPDK_MAKE_ARGS) -C external ebuild-build ebuild-install