📄 makefile
字号:
# Makefile for the Linux video drivers.# 28 Jan 2001, Helge Deller, <mailto:hdeller@redhat.com># Rewritten to use lists instead of if-statements.O_TARGET := sti.o# All of the (potential) objects that export symbols.# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.export-objs := sticore.o sticon.o stifb.o# Each configuration option enables a list of files.obj-$(CONFIG_FB_STI) += sticore.o stifb.oobj-$(CONFIG_STI_CONSOLE) += sticore.o sticon.oinclude $(TOPDIR)/Rules.makeclean: rm -f core *.o *.a *.s
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -