Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the linux kernel.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definitions are now in the main makefile...
  9. O_TARGET := kernel.o
  10. export-objs = signal.o sys.o kmod.o context.o ksyms.o pm.o exec_domain.o printk.o
  11. obj-y     = sched.o dma.o fork.o exec_domain.o panic.o printk.o 
  12.     module.o exit.o itimer.o info.o time.o softirq.o resource.o 
  13.     sysctl.o acct.o capability.o ptrace.o timer.o user.o 
  14.     signal.o sys.o kmod.o context.o
  15. obj-$(CONFIG_UID16) += uid16.o
  16. obj-$(CONFIG_MODULES) += ksyms.o
  17. obj-$(CONFIG_PM) += pm.o
  18. ifneq ($(CONFIG_IA64),y)
  19. # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is
  20. # needed for x86 only.  Why this used to be enabled for all architectures is beyond
  21. # me.  I suspect most platforms don't need this, but until we know that for sure
  22. # I turn this off for IA-64 only.  Andreas Schwab says it's also needed on m68k
  23. # to get a correct value for the wait-channel (WCHAN in ps). --davidm
  24. CFLAGS_sched.o := $(PROFILING) -fno-omit-frame-pointer
  25. endif
  26. include $(TOPDIR)/Rules.make