]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/samsung/common/Makefile
Merge branch 'next' of git://git.denx.de/u-boot-mpc83xx
[karo-tx-uboot.git] / board / samsung / common / 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)libsamsung.o
11
12 COBJS-$(CONFIG_SOFT_I2C_MULTI_BUS) += multi_i2c.o
13
14 SRCS    := $(COBJS-y:.o=.c)
15 OBJS    := $(addprefix $(obj),$(COBJS-y))
16
17 $(LIB): $(obj).depend $(OBJS)
18         $(call cmd_link_o_target, $(OBJS))
19
20 #########################################################################
21
22 # defines $(obj).depend target
23 include $(SRCTREE)/rules.mk
24
25 sinclude $(obj).depend
26
27 #########################################################################