Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. ################################################################################
  2. #
  3. # Copyright(c) 1999 - 2002 Intel Corporation. All rights reserved.
  4. # This program is free software; you can redistribute it and/or modify it 
  5. # under the terms of the GNU General Public License as published by the Free 
  6. # Software Foundation; either version 2 of the License, or (at your option) 
  7. # any later version.
  8. # This program is distributed in the hope that it will be useful, but WITHOUT 
  9. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
  10. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for 
  11. # more details.
  12. # You should have received a copy of the GNU General Public License along with
  13. # this program; if not, write to the Free Software Foundation, Inc., 59 
  14. # Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  15. # The full GNU General Public License is included in this distribution in the
  16. # file called LICENSE.
  17. # Contact Information:
  18. # Linux NICS <linux.nics@intel.com>
  19. # Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  20. #
  21. ################################################################################
  22. #
  23. # Makefile for the Intel(R) PRO/1000 ethernet driver
  24. #
  25. O_TARGET := e1000.o
  26. obj-y := e1000_main.o e1000_hw.o e1000_ethtool.o e1000_param.o 
  27.    e1000_proc.o
  28. obj-m := $(O_TARGET)
  29. include $(TOPDIR)/Rules.make