makefile

来自「linux-2.4.29操作系统的源码」· 代码 · 共 41 行

TXT
41
字号
## This file is subject to the terms and conditions of the GNU General Public# License.  See the file "COPYING" in the main directory of this archive# for more details.## Copyright (C) 2000, 2001  Paolo Alberelli## Makefile for the Linux SH-5 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).#.S.o:	$(CC) $(CFLAGS) $(AFLAGS) -c $< -o $*.oO_TARGET := kernel.oobj-y   := process.o signal.o entry.o traps.o irq.o irq_intc.o \	    ptrace.o setup.o time.o sys_sh64.o semaphore.o sh_ksyms.oobj-$(CONFIG_HEARTBEAT)		+= led.oobj-$(CONFIG_PCI)		+= pci-dma.o pcibios.oifeq ($(CONFIG_PCI),y)obj-$(CONFIG_CPU_SH5)		+= pci_sh5.oendifobj-$(CONFIG_SH_DMA)		+= dma.oexport-objs := sh_ksyms.o dma.oifndef CONFIG_NOFPU_SUPPORTobj-y	+= fpu.oendifall: $(O_TARGET) head.o init_task.oinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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