diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:15:27 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:15:27 -0400 |
commit | f11cfb424c78ef8a6d9fc80922577756cec00282 (patch) | |
tree | d0d7e639001fcfd0481e1ac5f69471b54dcbb117 /arch/x86_64/kernel | |
parent | 08c81f47fcba935d937e45a592ad7b00e9296a2f (diff) |
x86_64: prepare shared kernel/acpi/Makefile
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86_64/kernel')
-rw-r--r-- | arch/x86_64/kernel/acpi/Makefile | 12 | ||||
-rw-r--r-- | arch/x86_64/kernel/acpi/Makefile_64 | 9 |
2 files changed, 13 insertions, 8 deletions
diff --git a/arch/x86_64/kernel/acpi/Makefile b/arch/x86_64/kernel/acpi/Makefile index c24fe95b0d94..6e00bfeb59a9 100644 --- a/arch/x86_64/kernel/acpi/Makefile +++ b/arch/x86_64/kernel/acpi/Makefile | |||
@@ -1,9 +1,5 @@ | |||
1 | obj-y := boot.o | 1 | ifeq ($(CONFIG_X86_32),y) |
2 | boot-y := ../../../i386/kernel/acpi/boot.o | 2 | include ${srctree}/arch/i386/kernel/acpi/Makefile_32 |
3 | obj-$(CONFIG_ACPI_SLEEP) += sleep_64.o wakeup_64.o | 3 | else |
4 | 4 | include ${srctree}/arch/x86_64/kernel/acpi/Makefile_64 | |
5 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
6 | obj-y += processor.o | ||
7 | processor-y := ../../../i386/kernel/acpi/processor.o ../../../i386/kernel/acpi/cstate.o | ||
8 | endif | 5 | endif |
9 | |||
diff --git a/arch/x86_64/kernel/acpi/Makefile_64 b/arch/x86_64/kernel/acpi/Makefile_64 new file mode 100644 index 000000000000..c24fe95b0d94 --- /dev/null +++ b/arch/x86_64/kernel/acpi/Makefile_64 | |||
@@ -0,0 +1,9 @@ | |||
1 | obj-y := boot.o | ||
2 | boot-y := ../../../i386/kernel/acpi/boot.o | ||
3 | obj-$(CONFIG_ACPI_SLEEP) += sleep_64.o wakeup_64.o | ||
4 | |||
5 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
6 | obj-y += processor.o | ||
7 | processor-y := ../../../i386/kernel/acpi/processor.o ../../../i386/kernel/acpi/cstate.o | ||
8 | endif | ||
9 | |||