makefile

来自「linux嵌入式课程实践中的一个关于声卡驱动程序 。」· 代码 · 共 21 行

TXT
21
字号
## 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.oobj-$(CONFIG_I2O_PCI)	+= i2o_pci.oobj-$(CONFIG_I2O)	+= i2o_core.o 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 + =
减小字号Ctrl + -
显示快捷键?