Makefile (4300a0f8bdcce5a03b88bfa16fc9827e15c52dc4) Makefile (2fa97feb4406c546b52e35b6b6c50cb8f63425d2)
1#
2# Makefile for the Linux ACPI interpreter
3#
4
5ccflags-y := -Os
6ccflags-$(CONFIG_ACPI_DEBUG) += -DACPI_DEBUG_OUTPUT
7
8#

--- 29 unchanged lines hidden (view full) ---

38acpi-y += ec.o
39acpi-$(CONFIG_ACPI_DOCK) += dock.o
40acpi-y += pci_root.o pci_link.o pci_irq.o
41acpi-$(CONFIG_X86_INTEL_LPSS) += acpi_lpss.o
42acpi-y += acpi_platform.o
43acpi-y += power.o
44acpi-y += event.o
45acpi-y += sysfs.o
1#
2# Makefile for the Linux ACPI interpreter
3#
4
5ccflags-y := -Os
6ccflags-$(CONFIG_ACPI_DEBUG) += -DACPI_DEBUG_OUTPUT
7
8#

--- 29 unchanged lines hidden (view full) ---

38acpi-y += ec.o
39acpi-$(CONFIG_ACPI_DOCK) += dock.o
40acpi-y += pci_root.o pci_link.o pci_irq.o
41acpi-$(CONFIG_X86_INTEL_LPSS) += acpi_lpss.o
42acpi-y += acpi_platform.o
43acpi-y += power.o
44acpi-y += event.o
45acpi-y += sysfs.o
46acpi-$(CONFIG_X86) += acpi_cmos_rtc.o
46acpi-$(CONFIG_DEBUG_FS) += debugfs.o
47acpi-$(CONFIG_ACPI_NUMA) += numa.o
48acpi-$(CONFIG_ACPI_PROCFS_POWER) += cm_sbs.o
49ifdef CONFIG_ACPI_VIDEO
50acpi-y += video_detect.o
51endif
52
53# These are (potentially) separate modules

--- 30 unchanged lines hidden ---
47acpi-$(CONFIG_DEBUG_FS) += debugfs.o
48acpi-$(CONFIG_ACPI_NUMA) += numa.o
49acpi-$(CONFIG_ACPI_PROCFS_POWER) += cm_sbs.o
50ifdef CONFIG_ACPI_VIDEO
51acpi-y += video_detect.o
52endif
53
54# These are (potentially) separate modules

--- 30 unchanged lines hidden ---