makefile
来自「这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自」· 代码 · 共 21 行
TXT
21 行
# 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 + =
减小字号Ctrl + -
显示快捷键?