1*d1a890faSShreyas Bhatewara################################################################################ 2*d1a890faSShreyas Bhatewara# 3*d1a890faSShreyas Bhatewara# Linux driver for VMware's vmxnet3 ethernet NIC. 4*d1a890faSShreyas Bhatewara# 5*d1a890faSShreyas Bhatewara# Copyright (C) 2007-2009, VMware, Inc. All Rights Reserved. 6*d1a890faSShreyas Bhatewara# 7*d1a890faSShreyas Bhatewara# This program is free software; you can redistribute it and/or modify it 8*d1a890faSShreyas Bhatewara# under the terms of the GNU General Public License as published by the 9*d1a890faSShreyas Bhatewara# Free Software Foundation; version 2 of the License and no later version. 10*d1a890faSShreyas Bhatewara# 11*d1a890faSShreyas Bhatewara# This program is distributed in the hope that it will be useful, but 12*d1a890faSShreyas Bhatewara# WITHOUT ANY WARRANTY; without even the implied warranty of 13*d1a890faSShreyas Bhatewara# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or 14*d1a890faSShreyas Bhatewara# NON INFRINGEMENT. See the GNU General Public License for more 15*d1a890faSShreyas Bhatewara# details. 16*d1a890faSShreyas Bhatewara# 17*d1a890faSShreyas Bhatewara# You should have received a copy of the GNU General Public License 18*d1a890faSShreyas Bhatewara# along with this program; if not, write to the Free Software 19*d1a890faSShreyas Bhatewara# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20*d1a890faSShreyas Bhatewara# 21*d1a890faSShreyas Bhatewara# The full GNU General Public License is included in this distribution in 22*d1a890faSShreyas Bhatewara# the file called "COPYING". 23*d1a890faSShreyas Bhatewara# 24*d1a890faSShreyas Bhatewara# Maintained by: Shreyas Bhatewara <pv-drivers@vmware.com> 25*d1a890faSShreyas Bhatewara# 26*d1a890faSShreyas Bhatewara# 27*d1a890faSShreyas Bhatewara################################################################################ 28*d1a890faSShreyas Bhatewara 29*d1a890faSShreyas Bhatewara# 30*d1a890faSShreyas Bhatewara# Makefile for the VMware vmxnet3 ethernet NIC driver 31*d1a890faSShreyas Bhatewara# 32*d1a890faSShreyas Bhatewara 33*d1a890faSShreyas Bhatewaraobj-$(CONFIG_VMXNET3) += vmxnet3.o 34*d1a890faSShreyas Bhatewara 35*d1a890faSShreyas Bhatewaravmxnet3-objs := vmxnet3_drv.o vmxnet3_ethtool.o 36