1*1bff6529SJesse Brandeburg################################################################################ 2*1bff6529SJesse Brandeburg# 3*1bff6529SJesse Brandeburg# Intel Ethernet Controller XL710 Family Linux Driver 4*1bff6529SJesse Brandeburg# Copyright(c) 2013 Intel Corporation. 5*1bff6529SJesse Brandeburg# 6*1bff6529SJesse Brandeburg# This program is free software; you can redistribute it and/or modify it 7*1bff6529SJesse Brandeburg# under the terms and conditions of the GNU General Public License, 8*1bff6529SJesse Brandeburg# version 2, as published by the Free Software Foundation. 9*1bff6529SJesse Brandeburg# 10*1bff6529SJesse Brandeburg# This program is distributed in the hope it will be useful, but WITHOUT 11*1bff6529SJesse Brandeburg# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12*1bff6529SJesse Brandeburg# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13*1bff6529SJesse Brandeburg# more details. 14*1bff6529SJesse Brandeburg# 15*1bff6529SJesse Brandeburg# You should have received a copy of the GNU General Public License along with 16*1bff6529SJesse Brandeburg# this program; if not, write to the Free Software Foundation, Inc., 17*1bff6529SJesse Brandeburg# 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 18*1bff6529SJesse Brandeburg# 19*1bff6529SJesse Brandeburg# The full GNU General Public License is included in this distribution in 20*1bff6529SJesse Brandeburg# the file called "COPYING". 21*1bff6529SJesse Brandeburg# 22*1bff6529SJesse Brandeburg# Contact Information: 23*1bff6529SJesse Brandeburg# e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> 24*1bff6529SJesse Brandeburg# Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 25*1bff6529SJesse Brandeburg# 26*1bff6529SJesse Brandeburg################################################################################ 27*1bff6529SJesse Brandeburg 28*1bff6529SJesse Brandeburg# 29*1bff6529SJesse Brandeburg# Makefile for the Intel(R) Ethernet Connection XL710 (i40e.ko) driver 30*1bff6529SJesse Brandeburg# 31*1bff6529SJesse Brandeburg 32*1bff6529SJesse Brandeburgobj-$(CONFIG_I40E) += i40e.o 33*1bff6529SJesse Brandeburg 34*1bff6529SJesse Brandeburgi40e-objs := i40e_main.o \ 35*1bff6529SJesse Brandeburg i40e_ethtool.o \ 36*1bff6529SJesse Brandeburg i40e_adminq.o \ 37*1bff6529SJesse Brandeburg i40e_common.o \ 38*1bff6529SJesse Brandeburg i40e_hmc.o \ 39*1bff6529SJesse Brandeburg i40e_lan_hmc.o \ 40*1bff6529SJesse Brandeburg i40e_nvm.o \ 41*1bff6529SJesse Brandeburg i40e_debugfs.o \ 42*1bff6529SJesse Brandeburg i40e_diag.o \ 43*1bff6529SJesse Brandeburg i40e_txrx.o \ 44*1bff6529SJesse Brandeburg i40e_virtchnl_pf.o 45