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

📄 makefile

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻
字号:
## Makefile for the Linux IEEE 1394 implementation## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (not a .c file).## Note 2! The CFLAGS definitions are now in the main makefile.#O_TARGET := ieee1394drv.oexport-objs := ieee1394_syms.olist-multi := ieee1394.oieee1394-objs := ieee1394_core.o ieee1394_transactions.o hosts.o \		 highlevel.o csr.o guid.o ieee1394_syms.oobj-$(CONFIG_IEEE1394) += ieee1394.oobj-$(CONFIG_IEEE1394_PCILYNX) += pcilynx.oobj-$(CONFIG_IEEE1394_AIC5800) += aic5800.oobj-$(CONFIG_IEEE1394_OHCI1394) += ohci1394.oobj-$(CONFIG_IEEE1394_VIDEO1394) += video1394.oobj-$(CONFIG_IEEE1394_RAWIO) += raw1394.oinclude $(TOPDIR)/Rules.makeieee1394.o: $(ieee1394-objs)	$(LD) -r -o $@ $(ieee1394-objs)

⌨️ 快捷键说明

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