238c65f60d9e37ff075a38254d1932a3835e4bca
[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 obj-$(CONFIG_FUTEX) += futex.o
13 obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o
14 obj-$(CONFIG_SMP) += cpu.o
15 obj-$(CONFIG_UID16) += uid16.o
16 obj-$(CONFIG_MODULES) += module.o
17 obj-$(CONFIG_KALLSYMS) += kallsyms.o
18 obj-$(CONFIG_PM) += power/
19 obj-$(CONFIG_BSD_PROCESS_ACCT) += acct.o
20 obj-$(CONFIG_COMPAT) += compat.o
21 obj-$(CONFIG_IKCONFIG) += configs.o
22 obj-$(CONFIG_IKCONFIG_PROC) += configs.o
23 obj-$(CONFIG_STOP_MACHINE) += stop_machine.o
24 obj-$(CONFIG_AUDIT) += audit.o
25 obj-$(CONFIG_AUDITSYSCALL) += auditsc.o
26
27 ifneq ($(CONFIG_IA64),y)
28 # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is
29 # needed for x86 only.  Why this used to be enabled for all architectures is beyond
30 # me.  I suspect most platforms don't need this, but until we know that for sure
31 # I turn this off for IA-64 only.  Andreas Schwab says it's also needed on m68k
32 # to get a correct value for the wait-channel (WCHAN in ps). --davidm
33 CFLAGS_sched.o := $(PROFILING) -fno-omit-frame-pointer
34 endif
35
36 # configs.o uses generated files - dependecies must be listed explicitly
37 $(obj)/configs.o: $(obj)/ikconfig.h
38
39 ifdef CONFIG_IKCONFIG_PROC
40 $(obj)/configs.o: $(obj)/config_data.h
41 endif
42
43 # ikconfig.h contains all the selected config entries - generated
44 # from top-level Makefile and .config. Info from ikconfig.h can
45 # be extracted from the kernel binary.
46
47 quiet_cmd_ikconfig = IKCFG   $@
48       cmd_ikconfig = $(CONFIG_SHELL) $< .config $(srctree)/Makefile > $@
49
50 targets += ikconfig.h
51 $(obj)/ikconfig.h: scripts/mkconfigs .config Makefile FORCE
52         $(call if_changed,ikconfig)
53
54 # config_data.h contains the same information as ikconfig.h but gzipped.
55 # Info from config_data can be extracted from /proc/config*
56 targets += config_data.gz
57 $(obj)/config_data.gz: .config FORCE
58         $(call if_changed,gzip)
59
60 quiet_cmd_ikconfiggz = IKCFG   $@
61       cmd_ikconfiggz = cat $< | scripts/bin2c kernel_config_data > $@
62 targets += config_data.h
63 $(obj)/config_data.h: $(obj)/config_data.gz FORCE
64         $(call if_changed,ikconfiggz)