diff options
Diffstat (limited to 'drivers/power/Makefile')
-rw-r--r-- | drivers/power/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/power/Makefile b/drivers/power/Makefile new file mode 100644 index 000000000000..3c88148983a2 --- /dev/null +++ b/drivers/power/Makefile | |||
@@ -0,0 +1,15 @@ | |||
1 | power_supply-objs := power_supply_core.o | ||
2 | |||
3 | ifeq ($(CONFIG_SYSFS),y) | ||
4 | power_supply-objs += power_supply_sysfs.o | ||
5 | endif | ||
6 | |||
7 | ifeq ($(CONFIG_LEDS_TRIGGERS),y) | ||
8 | power_supply-objs += power_supply_leds.o | ||
9 | endif | ||
10 | |||
11 | ifeq ($(CONFIG_POWER_SUPPLY_DEBUG),y) | ||
12 | EXTRA_CFLAGS += -DDEBUG | ||
13 | endif | ||
14 | |||
15 | obj-$(CONFIG_POWER_SUPPLY) += power_supply.o | ||