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

📄 source.mf

📁 epson 13506 driver code
💻 MF
字号:
# 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_clk2 hal_curs hal_draw hal_drw2 hal_init hal_ink \
	hal_lut hal_mem hal_misc hal_mllc hal_pci 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -