From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH v2 03/15] net/bnx2x: add to meson build Date: Fri, 8 Jun 2018 22:20:36 +0100 Message-ID: <20180608212048.67261-4-bruce.richardson@intel.com> References: <20180517201526.28658-1-bruce.richardson@intel.com> <20180608212048.67261-1-bruce.richardson@intel.com> Cc: Bruce Richardson , Harish Patil , Rasesh Mody To: dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 879991D042 for ; Fri, 8 Jun 2018 23:21:03 +0200 (CEST) In-Reply-To: <20180608212048.67261-1-bruce.richardson@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" CC: Harish Patil CC: Rasesh Mody Signed-off-by: Bruce Richardson --- drivers/net/bnx2x/meson.build | 14 ++++++++++++++ drivers/net/meson.build | 3 ++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 drivers/net/bnx2x/meson.build diff --git a/drivers/net/bnx2x/meson.build b/drivers/net/bnx2x/meson.build new file mode 100644 index 000000000..e3c688869 --- /dev/null +++ b/drivers/net/bnx2x/meson.build @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +dep = cc.find_library('z', required: false) +build = dep.found() +ext_deps += dep +cflags += '-DZLIB_CONST' +sources = files('bnx2x.c', + 'bnx2x_ethdev.c', + 'bnx2x_rxtx.c', + 'bnx2x_stats.c', + 'bnx2x_vfpf.c', + 'ecore_sp.c', + 'elink.c') diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 76bf48f3e..143355458 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -2,7 +2,8 @@ # Copyright(c) 2017 Intel Corporation drivers = ['af_packet', 'ark', 'avp', - 'axgbe', 'bonding', 'dpaa', 'dpaa2', + 'axgbe', 'bonding', 'bnx2x', + 'dpaa', 'dpaa2', 'e1000', 'enic', 'fm10k', 'i40e', 'ixgbe', 'mvpp2', 'null', 'octeontx', 'pcap', 'ring', 'sfc', 'thunderx', 'virtio'] -- 2.17.1