patch-2.6.6-vs1.9.0
[linux-2.6.git] / kernel / Makefile
1 #
2 # Makefile for the linux kernel.
3 #
4
5 obj-y     = sched.o fork.o exec_domain.o panic.o printk.o profile.o \
6             exit.o itimer.o time.o softirq.o resource.o \
7             sysctl.o capability.o ptrace.o timer.o user.o \
8             signal.o sys.o kmod.o workqueue.o pid.o \
9             rcupdate.o intermodule.o extable.o params.o posix-timers.o \
10             kthread.o
11
12 # mod-subdirs := vserver
13
14 subdir-y  += vserver
15 obj-y     += vserver/vserver.o
16
17 obj-$(CONFIG_FUTEX) += futex.o
18 obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o
19 obj-$(CONFIG_SMP) += cpu.o
20 obj-$(CONFIG_UID16) += uid16.o
21 obj-$(CONFIG_MODULES) += module.o
22 obj-$(CONFIG_KALLSYMS) += kallsyms.o
23 obj-$(CONFIG_PM) += power/
24 obj-$(CONFIG_BSD_PROCESS_ACCT) += acct.o
25 obj-$(CONFIG_COMPAT) += compat.o
26 obj-$(CONFIG_IKCONFIG) += configs.o
27 obj-$(CONFIG_IKCONFIG_PROC) += configs.o
28 obj-$(CONFIG_STOP_MACHINE) += stop_machine.o
29 obj-$(CONFIG_AUDIT) += audit.o
30 obj-$(CONFIG_AUDITSYSCALL) += auditsc.o
31
32 ifneq ($(CONFIG_IA64),y)
33 # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is
34 # needed for x86 only.  Why this used to be enabled for all architectures is beyond
35 # me.  I suspect most platforms don't need this, but until we know that for sure
36 # I turn this off for IA-64 only.  Andreas Schwab says it's also needed on m68k
37 # to get a correct value for the wait-channel (WCHAN in ps). --davidm
38 CFLAGS_sched.o := $(PROFILING) -fno-omit-frame-pointer
39 endif
40
41 # configs.o uses generated files - dependecies must be listed explicitly
42 $(obj)/configs.o: $(obj)/ikconfig.h
43
44 ifdef CONFIG_IKCONFIG_PROC
45 $(obj)/configs.o: $(obj)/config_data.h
46 endif
47
48 # ikconfig.h contains all the selected config entries - generated
49 # from top-level Makefile and .config. Info from ikconfig.h can
50 # be extracted from the kernel binary.
51
52 quiet_cmd_ikconfig = IKCFG   $@
53       cmd_ikconfig = $(CONFIG_SHELL) $< .config $(srctree)/Makefile > $@
54
55 targets += ikconfig.h
56 $(obj)/ikconfig.h: scripts/mkconfigs .config Makefile FORCE
57         $(call if_changed,ikconfig)
58
59 # config_data.h contains the same information as ikconfig.h but gzipped.
60 # Info from config_data can be extracted from /proc/config*
61 targets += config_data.gz
62 $(obj)/config_data.gz: .config FORCE
63         $(call if_changed,gzip)
64
65 quiet_cmd_ikconfiggz = IKCFG   $@
66       cmd_ikconfiggz = cat $< | scripts/bin2c kernel_config_data > $@
67 targets += config_data.h
68 $(obj)/config_data.h: $(obj)/config_data.gz FORCE
69         $(call if_changed,ikconfiggz)