⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 linux intel 网卡驱动,利用他可以让inel的pro 100 网卡进行网络配置和实用
💻
字号:
################################################################################## # Copyright(c) 1999 - 2002 Intel Corporation. All rights reserved.# # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free # Software Foundation; either version 2 of the License, or (at your option) # any later version.# # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for # more details.# # You should have received a copy of the GNU General Public License along with# this program; if not, write to the Free Software Foundation, Inc., 59 # Temple Place - Suite 330, Boston, MA  02111-1307, USA.# # The full GNU General Public License is included in this distribution in the# file called LICENSE.# # Contact Information:# Linux NICS <linux.nics@intel.com># Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497################################################################################################################################################################ Configuration Section# Optional features - set to 'y' for on, anything else for off# Intel(R) Advanced Network ServicesIANS := y# Intel(R) PRO DiagnosticsIDIAG := y#E100 Proc FS supportE100_PROC_FS := y# debug# CFLAGS += -g#extra warnings#CFLAGS += -W -Wfloat-equal -Wtraditional -Wundef -Wshadow -Wpointer-arith\# -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion\#-Wsign-compare -Waggregate-return -Wmissing-prototypes -Wmissing-declarations\#  -Wpacked -Wpadded -Wredundant-decls -Wnested-externs -Wunreachable-code  -Winline############################################################################### Driver files# core driver filesTARGET := e100.oCFILES = e100_main.c e100_eeprom.c e100_config.c e100_phy.c e100_kcompat.c e100_test.cHFILES = e100.h e100_vendor.h e100_config.h e100_phy.h e100_kcompat.h \		 e100_ucode.h # iANSIANS_CFLAGS = -DIANS -DIANS_BASE_ADAPTER_TEAMING \              -DIANS_BASE_VLAN_TAGGING -DIANS_BASE_VLAN_IDIANS_CFILES = ans.c ans_hw.c ans_os.c ans_driver.cIANS_HFILES = base_comm.h base_comm_os.h ans.h ans_hw.h ans_os.h ans_driver.h# DiagnosticsIDIAG_CFLAGS = -DE100_IDIAG_PRO_SUPPORTIDIAG_CFILES = idiag_e100.cIDIAG_HFILES = idiag_pro.h idiag_e100.h #Proc FSPROCFS_CFLAGS = PROCFS_CFILES = e100_proc.c# ManMAN_FILE = e100.7# pick an appropriate MAN pathMAN_CFG := /etc/man.configMAN_TYPE := man7MSP := $(shell [ -e $(MAN_CFG) ] && grep -e "^MANPATH[^_]" $(MAN_CFG) | awk '{print $$2}')ifeq (,$(MSP))MSP :=	/usr/share/man \	/usr/manendif# prune the list down to only values that existtest_dir = $(shell [ -e $(dir)/$(MAN_TYPE) ] && echo $(dir))MSP := $(foreach dir, $(MSP), $(test_dir))# we will use the first valid entry in the search pathMAN_PATH := $(firstword $(MSP))ifeq (,$(MAN_PATH))  MAN_PATH := /usr/manendifMAN_INSTDIR=$(MAN_PATH)/$(MAN_TYPE)############################################################################ Environment tests# Kernel Search Path# All the places we look for kernel sourceKSP :=  /lib/modules/$(shell uname -r)/build \        /usr/src/linux-$(shell uname -r) \        /usr/src/linux-$(shell uname -r | sed 's/-.*//') \        /usr/src/kernel-headers-$(shell uname -r) \        /usr/src/kernel-source-$(shell uname -r) \        /usr/src/linux-$(shell uname -r | sed 's/\([0-9]*\.[0-9]*\)\..*/\1/') \        /usr/src/linux# prune the list down to only values that exist# and have an include/linux sub-directorytest_dir = $(shell [ -e $(dir)/include/linux ] && echo $(dir))KSP := $(foreach dir, $(KSP), $(test_dir))# we will use this first valid entry in the search pathKSRC := $(firstword $(KSP))ifeq (,$(KSRC))  $(error Linux kernel source not found)endif# files we get information from in KSRCVERSION_FILE := $(KSRC)/include/linux/version.hCONFIG_FILE  := $(KSRC)/include/linux/config.hifeq (,$(wildcard $(VERSION_FILE)))  $(error Linux kernel source not configured - missing version.h)endififeq (,$(wildcard $(CONFIG_FILE)))  $(error Linux kernel source not configured - missing config.h)endif# pick a compilerifneq (,$(findstring egcs-2.91.66, $(shell cat /proc/version)))  CC := kgcc gcc ccelse  CC := gcc ccendiftest_cc = $(shell which $(cc) > /dev/null 2>&1 && echo $(cc))CC := $(foreach cc, $(CC), $(test_cc))CC := $(firstword $(CC))# standard flags for module buildsCFLAGS += -Wall -DLINUX -D__KERNEL__ -DMODULE -DEXPORT_SYMTAB -D__NO_VERSION__ -O2 -pipeCFLAGS += -I$(KSRC)/include -I. -Wstrict-prototypes -fomit-frame-pointerCFLAGS += $(shell [ -f $(KSRC)/include/linux/modversions.h ] && \            echo "-DMODVERSIONS -include $(KSRC)/include/linux/modversions.h")CFLAGS += $(CFLAGS_EXTRA)RHC := $(KSRC)/include/linux/rhconfig.hifneq (,$(wildcard $(RHC)))	# 7.3 typo in rhconfig.h	ifneq (,$(shell $(CC) $(CFLAGS) -E -dM $(RHC) | grep __module__bigmem))		CFLAGS += -D__module_bigmem	endifendif# get the kernel version - we use this to find the correct install pathKVER := $(shell $(CC) $(CFLAGS) -E -dM $(VERSION_FILE) | grep UTS_RELEASE | \          awk '{ print $$3 }' | sed 's/\"//g')ifneq ($(KVER),$(shell uname -r))  $(warning ***)  $(warning *** Warning: kernel source version ($(KVER)))  $(warning *** does not match running kernel  ($(shell uname -r)))  $(warning *** Continuing with build,)  $(warning *** resulting driver may not be what you want)  $(warning ***)endif# pick an appropriate install pathifneq (,$(wildcard /lib/modules/$(KVER)/kernel))  INSTDIR := /lib/modules/$(KVER)/kernel/drivers/netelse  INSTDIR := /lib/modules/$(KVER)/netendif# look for SMP in config.hSMP := $(shell $(CC) $(CFLAGS) -E -dM $(CONFIG_FILE) | \         grep CONFIG_SMP | awk '{ print $$3 }')ifneq ($(SMP),1)  SMP := 0endififneq ($(SMP),$(shell uname -a | grep SMP > /dev/null 2>&1 && echo 1 || echo 0))  $(warning ***)ifeq ($(SMP),1)  $(warning *** Warning: kernel source configuration (SMP))  $(warning *** does not match running kernel (UP))else  $(warning *** Warning: kernel source configuration (UP))  $(warning *** does not match running kernel (SMP))endif  $(warning *** Continuing with build,)  $(warning *** resulting driver may not be what you want)  $(warning ***)endififeq ($(SMP), 1)  CFLAGS += -D__SMP__endif# we need to know what platform the driver is being built on# some additional features are only built on iA32ARCH := $(shell uname -m | sed 's/i.86/i386/')ifneq ($(ARCH),i386)ifneq ($(ARCH),ia64)  IANS := nendifendif# iANSifeq ($(IANS),y)  CFLAGS += $(IANS_CFLAGS)  CFILES += $(IANS_CFILES)  HFILES += $(IANS_HFILES)endif# Diagnostic featuresifeq ($(IDIAG),y)  CFLAGS += $(IDIAG_CFLAGS)  CFILES += $(IDIAG_CFILES)  HFILES += $(IDIAG_HFILES)endif# PROC FS Interfaceifeq ($(E100_PROC_FS),y)  CFLAGS += $(PROCFS_CFLAGS)  CFILES += $(PROCFS_CFILES)endififeq ($(ARCH),ia64)  CFLAGS += -DSTB_WA endif############################################################################ Build rules.SILENT: $(TARGET)$(TARGET): $(filter-out $(TARGET), $(CFILES:.c=.o))	$(LD) -r $^ -o $@	echo; echo	echo "**************************************************"	echo "** $(TARGET) built for $(KVER)"	echo -n "** SMP                      "	if [ "$(SMP)" = "1" ]; \		then echo "Enabled"; else echo "Disabled"; fi	echo -n "** iANS hooks               "	if [ "$(IANS)" = "y" ]; \		then echo "Enabled"; else echo "Disabled"; fi	echo -n "** PRO Diagnostics          "	if [ "$(IDIAG)" = "y" ]; \		then echo "Enabled"; else echo "Disabled"; fi	echo -n "** PROC File System entries "	if [ "$(E100_PROC_FS)" = "y" ]; \		then echo "Enabled"; else echo "Disabled"; fi	echo "**************************************************"	echo$(CFILES:.c=.o): $(HFILES) Makefile$(MAN_FILE).gz: ../$(MAN_FILE)	gzip -c $< > $@install: $(TARGET) $(MAN_FILE).gz	find $(INSTALL_MOD_PATH)/lib/modules/$(KVER) -name $(TARGET) -exec rm {} \; \	|| true	mkdir -p $(INSTALL_MOD_PATH)$(INSTDIR)	install -m 644 -o `id -u` $(TARGET) $(INSTALL_MOD_PATH)$(INSTDIR)	mkdir -p $(INSTALL_MOD_PATH)$(MAN_INSTDIR)	install -m 644 -o `id -u` $(MAN_FILE).gz $(INSTALL_MOD_PATH)$(MAN_INSTDIR)ifeq (,$(INSTALL_MOD_PATH))	/sbin/depmod -aqs || trueelse	/sbin/depmod -b $(INSTALL_MOD_PATH) -aqs || trueendifuninstall:	rm -f $(INSTDIR)/$(TARGET)	rm -f $(MAN_INSTDIR)/$(MAN_FILE).gz	/sbin/depmod -aqsclean:	rm -f $(TARGET) $(CFILES:.c=.o) $(MAN_FILE).gz *~

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -