]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/power/pmic/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / drivers / power / pmic / Makefile
1 #
2 # Copyright (C) 2012 Samsung Electronics
3 # Lukasz Majewski <l.majewski@samsung.com>
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9
10 LIB     := $(obj)libpmic.o
11
12 COBJS-$(CONFIG_POWER_MAX8998) += pmic_max8998.o
13 COBJS-$(CONFIG_POWER_MAX8997) += pmic_max8997.o
14 COBJS-$(CONFIG_POWER_MUIC_MAX8997) += muic_max8997.o
15 COBJS-$(CONFIG_POWER_MAX77686) += pmic_max77686.o
16 COBJS-$(CONFIG_POWER_TPS65217) += pmic_tps65217.o
17 COBJS-$(CONFIG_POWER_TPS65910) += pmic_tps65910.o
18
19 COBJS   := $(COBJS-y)
20 SRCS    := $(COBJS:.o=.c)
21 OBJS    := $(addprefix $(obj),$(COBJS))
22
23 all:    $(LIB)
24
25 $(LIB): $(obj).depend $(OBJS)
26         $(call cmd_link_o_target, $(OBJS))
27
28
29 #########################################################################
30
31 # defines $(obj).depend target
32 include $(SRCTREE)/rules.mk
33
34 sinclude $(obj).depend
35
36 ########################################################################