diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
| commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
| tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /kernel/Makefile | |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'kernel/Makefile')
| -rw-r--r-- | kernel/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/kernel/Makefile b/kernel/Makefile new file mode 100644 index 000000000000..eb88b446c2cc --- /dev/null +++ b/kernel/Makefile | |||
| @@ -0,0 +1,53 @@ | |||
| 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 wait.o kfifo.o sys_ni.o posix-cpu-timers.o | ||
| 11 | |||
| 12 | obj-$(CONFIG_FUTEX) += futex.o | ||
| 13 | obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o | ||
| 14 | obj-$(CONFIG_SMP) += cpu.o spinlock.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_CPUSETS) += cpuset.o | ||
| 22 | obj-$(CONFIG_IKCONFIG) += configs.o | ||
| 23 | obj-$(CONFIG_IKCONFIG_PROC) += configs.o | ||
| 24 | obj-$(CONFIG_STOP_MACHINE) += stop_machine.o | ||
| 25 | obj-$(CONFIG_AUDIT) += audit.o | ||
| 26 | obj-$(CONFIG_AUDITSYSCALL) += auditsc.o | ||
| 27 | obj-$(CONFIG_KPROBES) += kprobes.o | ||
| 28 | obj-$(CONFIG_SYSFS) += ksysfs.o | ||
| 29 | obj-$(CONFIG_GENERIC_HARDIRQS) += irq/ | ||
| 30 | obj-$(CONFIG_SECCOMP) += seccomp.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 | $(obj)/configs.o: $(obj)/config_data.h | ||
| 42 | |||
| 43 | # config_data.h contains the same information as ikconfig.h but gzipped. | ||
| 44 | # Info from config_data can be extracted from /proc/config* | ||
| 45 | targets += config_data.gz | ||
| 46 | $(obj)/config_data.gz: .config FORCE | ||
| 47 | $(call if_changed,gzip) | ||
| 48 | |||
| 49 | quiet_cmd_ikconfiggz = IKCFG $@ | ||
| 50 | cmd_ikconfiggz = (echo "static const char kernel_config_data[] = MAGIC_START"; cat $< | scripts/bin2c; echo "MAGIC_END;") > $@ | ||
| 51 | targets += config_data.h | ||
| 52 | $(obj)/config_data.h: $(obj)/config_data.gz FORCE | ||
| 53 | $(call if_changed,ikconfiggz) | ||
