aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/acpi/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 'drivers/acpi/Makefile')
-rw-r--r--drivers/acpi/Makefile58
1 files changed, 58 insertions, 0 deletions
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
new file mode 100644
index 000000000000..65c92e20566d
--- /dev/null
+++ b/drivers/acpi/Makefile
@@ -0,0 +1,58 @@
1#
2# Makefile for the Linux ACPI interpreter
3#
4
5export ACPI_CFLAGS
6
7ACPI_CFLAGS := -Os
8
9ifdef CONFIG_ACPI_DEBUG
10 ACPI_CFLAGS += -DACPI_DEBUG_OUTPUT
11endif
12
13EXTRA_CFLAGS += $(ACPI_CFLAGS)
14
15#
16# ACPI Boot-Time Table Parsing
17#
18obj-$(CONFIG_ACPI_BOOT) += tables.o
19obj-$(CONFIG_ACPI_INTERPRETER) += blacklist.o
20
21#
22# ACPI Core Subsystem (Interpreter)
23#
24obj-$(CONFIG_ACPI_INTERPRETER) += osl.o utils.o \
25 dispatcher/ events/ executer/ hardware/ \
26 namespace/ parser/ resources/ tables/ \
27 utilities/
28
29#
30# ACPI Bus and Device Drivers
31#
32processor-objs += processor_core.o processor_throttling.o \
33 processor_idle.o processor_thermal.o
34ifdef CONFIG_CPU_FREQ
35processor-objs += processor_perflib.o
36endif
37
38obj-$(CONFIG_ACPI_BUS) += sleep/
39obj-$(CONFIG_ACPI_BUS) += bus.o
40obj-$(CONFIG_ACPI_AC) += ac.o
41obj-$(CONFIG_ACPI_BATTERY) += battery.o
42obj-$(CONFIG_ACPI_BUTTON) += button.o
43obj-$(CONFIG_ACPI_EC) += ec.o
44obj-$(CONFIG_ACPI_FAN) += fan.o
45obj-$(CONFIG_ACPI_VIDEO) += video.o
46obj-$(CONFIG_ACPI_PCI) += pci_root.o pci_link.o pci_irq.o pci_bind.o
47obj-$(CONFIG_ACPI_POWER) += power.o
48obj-$(CONFIG_ACPI_PROCESSOR) += processor.o
49obj-$(CONFIG_ACPI_CONTAINER) += container.o
50obj-$(CONFIG_ACPI_THERMAL) += thermal.o
51obj-$(CONFIG_ACPI_SYSTEM) += system.o event.o
52obj-$(CONFIG_ACPI_DEBUG) += debug.o
53obj-$(CONFIG_ACPI_NUMA) += numa.o
54obj-$(CONFIG_ACPI_ASUS) += asus_acpi.o
55obj-$(CONFIG_ACPI_IBM) += ibm_acpi.o
56obj-$(CONFIG_ACPI_TOSHIBA) += toshiba_acpi.o
57obj-$(CONFIG_ACPI_BUS) += scan.o motherboard.o
58obj-$(CONFIG_ACPI_HOTPLUG_MEMORY) += acpi_memhotplug.o