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 /arch/x86_64/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 'arch/x86_64/kernel/Makefile')
-rw-r--r-- | arch/x86_64/kernel/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/Makefile b/arch/x86_64/kernel/Makefile new file mode 100644 index 000000000000..0a3318e08ab6 --- /dev/null +++ b/arch/x86_64/kernel/Makefile | |||
@@ -0,0 +1,45 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | extra-y := head.o head64.o init_task.o vmlinux.lds | ||
6 | EXTRA_AFLAGS := -traditional | ||
7 | obj-y := process.o semaphore.o signal.o entry.o traps.o irq.o \ | ||
8 | ptrace.o time.o ioport.o ldt.o setup.o i8259.o sys_x86_64.o \ | ||
9 | x8664_ksyms.o i387.o syscall.o vsyscall.o \ | ||
10 | setup64.o bootflag.o e820.o reboot.o quirks.o | ||
11 | |||
12 | obj-$(CONFIG_X86_MCE) += mce.o | ||
13 | obj-$(CONFIG_X86_MCE_INTEL) += mce_intel.o | ||
14 | obj-$(CONFIG_MTRR) += ../../i386/kernel/cpu/mtrr/ | ||
15 | obj-$(CONFIG_ACPI_BOOT) += acpi/ | ||
16 | obj-$(CONFIG_X86_MSR) += msr.o | ||
17 | obj-$(CONFIG_MICROCODE) += microcode.o | ||
18 | obj-$(CONFIG_X86_CPUID) += cpuid.o | ||
19 | obj-$(CONFIG_SMP) += smp.o smpboot.o trampoline.o | ||
20 | obj-$(CONFIG_X86_LOCAL_APIC) += apic.o nmi.o | ||
21 | obj-$(CONFIG_X86_IO_APIC) += io_apic.o mpparse.o \ | ||
22 | genapic.o genapic_cluster.o genapic_flat.o | ||
23 | obj-$(CONFIG_PM) += suspend.o | ||
24 | obj-$(CONFIG_SOFTWARE_SUSPEND) += suspend_asm.o | ||
25 | obj-$(CONFIG_CPU_FREQ) += cpufreq/ | ||
26 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
27 | obj-$(CONFIG_GART_IOMMU) += pci-gart.o aperture.o | ||
28 | obj-$(CONFIG_DUMMY_IOMMU) += pci-nommu.o pci-dma.o | ||
29 | obj-$(CONFIG_SWIOTLB) += swiotlb.o | ||
30 | obj-$(CONFIG_KPROBES) += kprobes.o | ||
31 | |||
32 | obj-$(CONFIG_MODULES) += module.o | ||
33 | |||
34 | obj-y += topology.o | ||
35 | obj-y += intel_cacheinfo.o | ||
36 | |||
37 | CFLAGS_vsyscall.o := $(PROFILING) -g0 | ||
38 | |||
39 | bootflag-y += ../../i386/kernel/bootflag.o | ||
40 | cpuid-$(subst m,y,$(CONFIG_X86_CPUID)) += ../../i386/kernel/cpuid.o | ||
41 | topology-y += ../../i386/mach-default/topology.o | ||
42 | swiotlb-$(CONFIG_SWIOTLB) += ../../ia64/lib/swiotlb.o | ||
43 | microcode-$(subst m,y,$(CONFIG_MICROCODE)) += ../../i386/kernel/microcode.o | ||
44 | intel_cacheinfo-y += ../../i386/kernel/cpu/intel_cacheinfo.o | ||
45 | quirks-y += ../../i386/kernel/quirks.o | ||