1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2019-2020 Intel Corporation 3 4sources = [ 5 'igc_api.c', 6 'igc_base.c', 7 'igc_i225.c', 8 'igc_mac.c', 9 'igc_manage.c', 10 'igc_nvm.c', 11 'igc_osdep.c', 12 'igc_phy.c', 13] 14 15base_lib = static_library('igc_base', sources, 16 dependencies: static_rte_eal, 17 c_args: cflags) 18 19base_objs = base_lib.extract_all_objects() 20