]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/power/battery/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / drivers / power / battery / 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)libbattery.o
11
12 COBJS-$(CONFIG_POWER_BATTERY_TRATS) += bat_trats.o
13 COBJS-$(CONFIG_POWER_BATTERY_TRATS2) += bat_trats2.o
14
15 COBJS   := $(COBJS-y)
16 SRCS    := $(COBJS:.o=.c)
17 OBJS    := $(addprefix $(obj),$(COBJS))
18
19 all:    $(LIB)
20
21 $(LIB): $(obj).depend $(OBJS)
22         $(call cmd_link_o_target, $(OBJS))
23
24
25 #########################################################################
26
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
29
30 sinclude $(obj).depend
31
32 ########################################################################