source.mf

来自「epson公司的一个关于s1d13706的低层驱动程序」· MF 代码 · 共 33 行

MF
33
字号
# source.mf makefile fragment for hal

# tell make not to try to rebuild this file
FRAGMENTS	:= $(FRAGMENTS) $(TopDir)/$(CHIPNAME)hal/source.mf

# add this lib to the list of all libs
# HAL should come first in the list
# since it will probably need stuff from other libs
LIBS		:= $(CHIPNAME)hal $(LIBS)

ifneq "$(NEEDRULES)" ""

# phony target to build library
.PHONY: $(CHIPNAME)hal
$(CHIPNAME)hal: $(CHIPNAME)hal.$(LIB)

# library dependancies
HALOBJS := $(CHIPNAME)hal hal_clk hal_draw hal_drw2 hal_init \
	hal_lut hal_mem hal_misc hal_mllc hal_pci hal_pwm hal_regs hal_virt priority $(HAL_EXTRAS)

$(CHIPNAME)hal.$(LIB): $(patsubst %, $(CHIPNAME)hal.$(LIB)(%.$(OBJ)), $(HALOBJS))
	$(RANLIB)

# include any dependancy files that are available
HALDEPS := $(patsubst %, %.$(DEP), $(HALOBJS))
.PHONY: $(HALDEPS)
-include $(HALDEPS)

endif

# end of source.mf

⌨️ 快捷键说明

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