]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/power/fuel_gauge/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / drivers / power / fuel_gauge / 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)libfuel_gauge.o
11
12 COBJS-$(CONFIG_POWER_FG_MAX17042) += fg_max17042.o
13
14 COBJS   := $(COBJS-y)
15 SRCS    := $(COBJS:.o=.c)
16 OBJS    := $(addprefix $(obj),$(COBJS))
17
18 all:    $(LIB)
19
20 $(LIB): $(obj).depend $(OBJS)
21         $(call cmd_link_o_target, $(OBJS))
22
23
24 #########################################################################
25
26 # defines $(obj).depend target
27 include $(SRCTREE)/rules.mk
28
29 sinclude $(obj).depend
30
31 ########################################################################