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

📄 makefile

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻
字号:
## Makefile for the kernel I2O OSM.## Note : at this point, these files are compiled on all systems.# In the future, some of these should be built conditionally.#O_TARGET := i2o.oexport-objs	:= i2o_pci.o i2o_core.o i2o_config.o i2o_block.o i2o_lan.o i2o_scsi.o i2o_proc.o## Do not touch the order here # We must link i2o_core, then i2o_pci, then protocols#obj-$(CONFIG_I2O)	+= i2o_core.oobj-$(CONFIG_I2O_PCI)	+= i2o_pci.oobj-$(CONFIG_I2O)	+= i2o_config.oobj-$(CONFIG_I2O_BLOCK)	+= i2o_block.oobj-$(CONFIG_I2O_LAN)	+= i2o_lan.oobj-$(CONFIG_I2O_SCSI)	+= i2o_scsi.oobj-$(CONFIG_I2O_PROC)	+= i2o_proc.oinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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