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

📄 makefile

📁 linux下的无线宽带驱动
💻
字号:
# Makefile for ib-*.o (Linux driver for iBurst network devices).# To build, login to appropriate linux system as any user and do "make".## Caution: the drivers created are specific to the configuration for which they# were built.IB_KERNEL_VERSION ?= $(shell uname -r)MDIR := /lib/modules/$(IB_KERNEL_VERSION)KDIR := $(MDIR)/buildPWD := $(shell pwd)obj-m = ib-net.oobj-m += ib-pcmcia.oobj-m += ib-usb.odefault:	$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modulesinstall:	cp *.ko $(MDIR)/kernel/drivers/net/	echo checking module dependancies...	depmod -auninstall:	rm $(MDIR)/kernel/drivers/net/ib-*.koclean:	rm -f *.mod.c *.ko *.o .*.cmd core Modules.symvers	rm -fr .tmp_versions

⌨️ 快捷键说明

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