The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/kernel/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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 
   10 O_TARGET := kernel.o
   11 
   12 export-objs = signal.o sys.o kmod.o context.o ksyms.o pm.o exec_domain.o printk.o
   13 
   14 obj-y     = sched.o dma.o fork.o exec_domain.o panic.o printk.o \
   15             module.o exit.o itimer.o info.o time.o softirq.o resource.o \
   16             sysctl.o acct.o capability.o ptrace.o timer.o user.o \
   17             signal.o sys.o kmod.o context.o
   18 
   19 obj-$(CONFIG_UID16) += uid16.o
   20 obj-$(CONFIG_MODULES) += ksyms.o
   21 obj-$(CONFIG_PM) += pm.o
   22 
   23 ifneq ($(CONFIG_IA64),y)
   24 # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is
   25 # needed for x86 only.  Why this used to be enabled for all architectures is beyond
   26 # me.  I suspect most platforms don't need this, but until we know that for sure
   27 # I turn this off for IA-64 only.  Andreas Schwab says it's also needed on m68k
   28 # to get a correct value for the wait-channel (WCHAN in ps). --davidm
   29 CFLAGS_sched.o := $(PROFILING) -fno-omit-frame-pointer
   30 endif
   31 
   32 include $(TOPDIR)/Rules.make

Cache object: d972cab56dfacec77bbc105a22d0adb9


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.