Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
 if dpdk_conf.has('RTE_LIBRTE_PDUMP')
        deps += 'pdump'
 endif
+if dpdk_conf.has('RTE_LIBRTE_BNXT_PMD')
+       deps += 'pmd_bnxt'
+endif
 if dpdk_conf.has('RTE_LIBRTE_I40E_PMD')
        deps += 'pmd_i40e'
 endif
 
--- /dev/null
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2018 Intel Corporation
+
+install_headers('rte_pmd_bnxt.h')
+version = 2
+sources = files('bnxt_cpr.c',
+       'bnxt_ethdev.c',
+       'bnxt_filter.c',
+       'bnxt_hwrm.c',
+       'bnxt_irq.c',
+       'bnxt_ring.c',
+       'bnxt_rxq.c',
+       'bnxt_rxr.c',
+       'bnxt_stats.c',
+       'bnxt_txq.c',
+       'bnxt_txr.c',
+       'bnxt_vnic.c',
+       'rte_pmd_bnxt.c')
 
        'avp',
        'axgbe', 'bonding',
        'bnx2x',
+       'bnxt',
        'dpaa', 'dpaa2',
        'e1000', 'enic', 'fm10k', 'i40e',
        'ifc',