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

📄 makefile

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻
字号:
## drivers/scsi/aic7xxx/Makefile## Makefile for the Linux aic7xxx SCSI driver.#O_TARGET := aic7xxx_drv.olist-multi	:= aic7xxx.o aic79xx.oobj-$(CONFIG_SCSI_AIC7XXX)	+= aic7xxx.oifeq ($(CONFIG_PCI),y)obj-$(CONFIG_SCSI_AIC79XX)	+= aic79xx.oendif#EXTRA_CFLAGS += -g# Platform Specific Filesobj-aic7xxx = aic7xxx_osm.o aic7xxx_proc.o aic7770_osm.o#PCI Specific Platform Filesifeq ($(CONFIG_PCI),y)obj-aic7xxx += aic7xxx_osm_pci.oendif# Core Filesobj-aic7xxx += aic7xxx_core.o aic7xxx_93cx6.o aic7770.o#PCI Specific Core Filesifeq ($(CONFIG_PCI),y)obj-aic7xxx += aic7xxx_pci.oendif# Platform Specific U320 Filesobj-aic79xx = aic79xx_osm.o obj-aic79xx += aic79xx_proc.oobj-aic79xx += aic79xx_osm_pci.o# Core Filesobj-aic79xx += aic79xx_core.oobj-aic79xx += aic79xx_pci.o# Override our module desitnationMOD_DESTDIR = $(shell cd .. && $(CONFIG_SHELL) $(TOPDIR)/scripts/pathdown.sh)include $(TOPDIR)/Rules.makeaic7xxx_core.o: aic7xxx_seq.h$(obj-aic7xxx): aic7xxx_reg.haic7xxx.o: aic7xxx_seq.h aic7xxx_reg.h $(obj-aic7xxx)	$(LD) $(LD_RFLAG) -r -o $@ $(obj-aic7xxx)aic79xx_core.o: aic79xx_seq.h$(obj-aic79xx): aic79xx_reg.haic79xx.o: aic79xx_seq.h aic79xx_reg.h $(obj-aic79xx)	$(LD) $(LD_RFLAG) -r -o $@ $(obj-aic79xx)ifeq ($(CONFIG_AIC7XXX_BUILD_FIRMWARE),y)aic7xxx_seq.h aic7xxx_reg.h: aic7xxx.seq aic7xxx.reg aicasm/aicasm	aicasm/aicasm -I. -r aic7xxx_reg.h -o aic7xxx_seq.h aic7xxx.seqendififeq ($(CONFIG_AIC79XX_BUILD_FIRMWARE),y)aic79xx_seq.h aic79xx_reg.h: aic79xx.seq aic79xx.reg aicasm/aicasm	aicasm/aicasm -I. -r aic79xx_reg.h -o aic79xx_seq.h aic79xx.seqendifaicasm/aicasm: aicasm/*.[chyl]	$(MAKE) -C aicasm

⌨️ 快捷键说明

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