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

📄 makefile

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻
字号:
## Makefile for the Linux/SuperH kernel.## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (ie not a .c file).#all: kernel.o head.o init_task.oclean:O_TARGET := kernel.oexport-objs	:= io.o io_generic.o io_hd64461.o setup_hd64461.o sh_ksyms.oobj-y	:= process.o signal.o entry.o traps.o irq.o irq_ipr.o \	ptrace.o setup.o time.o sys_sh.o semaphore.o \	irq_imask.o io.o io_generic.o sh_ksyms.oobj-$(CONFIG_CF_ENABLER)	+= cf-enabler.oobj-$(CONFIG_CPU_SH4)		+= fpu.oobj-$(CONFIG_PCI)		+= pci-sh.o obj-$(CONFIG_SH_RTC)            += rtc.oobj-$(CONFIG_SH_STANDARD_BIOS)	+= sh_bios.oobj-$(CONFIG_SH_HP600)		+= mach_hp600.omachine-specific-objs		+= mach_hp600.oobj-$(CONFIG_SH_SOLUTION_ENGINE)+= mach_se.o setup_se.o io_se.o led_se.omachine-specific-objs		+= mach_se.o setup_se.o io_se.o led_se.oobj-$(CONFIG_SH_CQREEK)		+= setup_cqreek.omachine-specific-objs		+= setup_cqreek.oobj-$(CONFIG_SH_UNKNOWN)	+= mach_unknown.o io_unknown.omachine-specific-objs		+= mach_unknown.o io_unknown.oobj-$(CONFIG_HD64461)		+= setup_hd64461.o io_hd64461.omachine-specific-objs		+= setup_hd64461.o io_hd64461.o# Doesn't compile well, so don't include in machine-specific-objsobj-$(CONFIG_HD64465)		+= setup_hd64465.o io_hd64465.oobj-$(CONFIG_SH_FOOBAR)		+= mach_foobar.oifeq ($(CONFIG_SH_GENERIC),y)obj-y		+= $(machine-specific-objs)endifUSE_STANDARD_AS_RULE := trueinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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