makefile
来自「是关于linux2.5.1的完全源码」· 代码 · 共 35 行
TXT
35 行
# Makefile for the kernel ISDN subsystem and device drivers.# The target object and module list name.O_TARGET := vmlinux-obj.o# Objects that export symbols.export-objs := isdn_common.o# Multipart objects.isdn-objs := isdn_net.o isdn_tty.o isdn_v110.o isdn_common.o# Optional parts of multipart objects.isdn-objs-$(CONFIG_ISDN_PPP) += isdn_ppp.oisdn-objs-$(CONFIG_ISDN_X25) += isdn_concap.o isdn_x25iface.oisdn-objs-$(CONFIG_ISDN_AUDIO) += isdn_audio.oisdn-objs-$(CONFIG_ISDN_TTY_FAX) += isdn_ttyfax.oisdn-objs-$(CONFIG_ISDN_WITH_ABC) += isdn_dwabc.oisdn-objs += $(isdn-objs-y)# Ordering constraints: isdn.o first, rest doesn't matter# Each configuration option enables a list of files.obj-$(CONFIG_ISDN) += isdn.oobj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o# The global Rules.make.include $(TOPDIR)/Rules.make
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?