brintos

brintos / linux-shallow public Read only

0
0
Text · 562 B · 9faa433 Raw
31 lines · plain
1# SPDX-License-Identifier: GPL-2.02# Copyright(c) 2013 - 2018 Intel Corporation.3 4#5# Makefile for the Intel(R) Ethernet Connection XL710 (i40e.ko) driver6#7 8ccflags-y += -I$(src)9subdir-ccflags-y += -I$(src)10 11obj-$(CONFIG_I40E) += i40e.o12 13i40e-y := i40e_main.o \14	i40e_ethtool.o	\15	i40e_adminq.o	\16	i40e_common.o	\17	i40e_hmc.o	\18	i40e_lan_hmc.o	\19	i40e_nvm.o	\20	i40e_debugfs.o	\21	i40e_diag.o	\22	i40e_txrx.o	\23	i40e_ptp.o	\24	i40e_ddp.o \25	i40e_client.o   \26	i40e_virtchnl_pf.o \27	i40e_xsk.o	\28	i40e_devlink.o29 30i40e-$(CONFIG_I40E_DCB) += i40e_dcb.o i40e_dcb_nl.o31