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

📄 makefile

📁 嵌入式系统设计与实例开发实验教材二源码 多线程应用程序设计 串行端口程序设计 AD接口实验 CAN总线通信实验 GPS通信实验 Linux内核移植与编译实验 IC卡读写实验 SD驱动使
💻
字号:
## Makefile for the linux 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).## Note 2! The CFLAGS definitions are now in the main makefile...O_TARGET := kernel.oexport-objs = signal.o sys.o kmod.o context.o ksyms.o pm.o exec_domain.o \	      printk.o fork.o cpufreq.oobj-y     = sched.o fork.o exec_domain.o panic.o printk.o \	    module.o exit.o itimer.o info.o time.o softirq.o resource.o \	    sysctl.o acct.o capability.o ptrace.o timer.o user.o \	    signal.o sys.o kmod.o context.oobj-$(CONFIG_GENERIC_ISA_DMA) += dma.oobj-$(CONFIG_UID16) += uid16.oobj-$(CONFIG_MODULES) += ksyms.oobj-$(CONFIG_PM) += pm.oobj-$(CONFIG_CPU_FREQ) += cpufreq.oifneq ($(CONFIG_IA64),y)# According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is# needed for x86 only.  Why this used to be enabled for all architectures is beyond# me.  I suspect most platforms don't need this, but until we know that for sure# I turn this off for IA-64 only.  Andreas Schwab says it's also needed on m68k# to get a correct value for the wait-channel (WCHAN in ps). --davidmCFLAGS_sched.o := $(PROFILING) -fno-omit-frame-pointerendifinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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