]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/compulab/common/Makefile
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / board / compulab / common / Makefile
1 #
2 # (C) Copyright 2011 - 2013 CompuLab, Ltd. <www.compulab.co.il>
3 #
4 # Author: Igor Grinberg <grinberg@compulab.co.il>
5 #
6 # SPDX-License-Identifier:      GPL-2.0+
7 #
8
9 include $(TOPDIR)/config.mk
10
11 ifneq ($(OBJTREE),$(SRCTREE))
12 $(shell mkdir -p $(obj)board/$(VENDOR)/common)
13 endif
14
15 LIB     = $(obj)lib$(VENDOR).o
16
17 COBJS-$(CONFIG_DRIVER_OMAP34XX_I2C) += eeprom.o
18 COBJS-$(CONFIG_LCD) += omap3_display.o
19
20 COBJS   := $(COBJS-y)
21 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
22 OBJS    := $(addprefix $(obj),$(COBJS))
23 SOBJS   := $(addprefix $(obj),$(SOBJS))
24
25 all:    $(LIB)
26
27 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
28         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
29
30 #########################################################################
31 # This is for $(obj).depend target
32 include $(SRCTREE)/rules.mk
33
34 sinclude $(obj).depend
35
36 #########################################################################