📄 makefile
字号:
## drivers/scsi/aic79xx/Makefile## Makefile for the Linux aic79xx SCSI driver.#O_TARGET := aic79xx_drv.olist-multi := aic79xx.oobj-$(CONFIG_SCSI_AIC79XX) += aic79xx.oEXTRA_CFLAGS += -I..#EXTRA_CFLAGS += -g# Platform Specific U320 Filesobj-aic79xx = aic79xx_osm.o aic79xx_proc.o aic79xx_osm_pci.o# Core Filesobj-aic79xx += aic79xx_core.o aic79xx_pci.oifeq ($(CONFIG_AIC79XX_REG_PRETTY_PRINT),y)obj-aic79xx += aic79xx_reg_print.oendif# Override our module desitnationMOD_DESTDIR = $(shell cd .. && $(CONFIG_SHELL) $(TOPDIR)/scripts/pathdown.sh)include $(TOPDIR)/Rules.makeaic79xx_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_AIC79XX_BUILD_FIRMWARE),y)aic79xx_gen = aic79xx_seq.h aic79xx_reg.hifeq ($(CONFIG_AIC79XX_REG_PRETTY_PRINT),y)aic79xx_gen += aic79xx_reg_print.caic79xx_asm_cmd = aicasm/aicasm -I. -r aic79xx_reg.h \ -p aic79xx_reg_print.c -i aic79xx_osm.h \ -o aic79xx_seq.h aic79xx.seqelseaic79xx_asm_cmd = aicasm/aicasm -I. -r aic79xx_reg.h \ -o aic79xx_seq.h aic79xx.seqendif$(aic79xx_gen): aic79xx.seq aic79xx.reg aicasm/aicasm $(aic79xx_asm_cmd)endifaicasm/aicasm: aicasm/*.[chyl] $(MAKE) -C aicasm
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -