]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/compulab/cm_t35/Makefile
6d07947d51facb34e2eed0a78c4eedd67035643f
[karo-tx-uboot.git] / board / compulab / cm_t35 / Makefile
1 #
2 # (C) Copyright 2011 - 2013 CompuLab, Ltd. <www.compulab.co.il>
3 #
4 # Authors: Nikita Kiryanov <nikita@compulab.co.il>
5 #          Igor Grinberg <grinberg@compulab.co.il>
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB     = $(obj)lib$(BOARD).o
13
14 COBJS-$(CONFIG_DRIVER_OMAP34XX_I2C) += eeprom.o
15 COBJS-$(CONFIG_LCD) += display.o
16
17 COBJS   := cm_t35.o leds.o $(COBJS-y)
18
19 SRCS    := $(COBJS:.o=.c)
20 OBJS    := $(addprefix $(obj),$(COBJS))
21
22 $(LIB): $(obj).depend $(OBJS)
23         $(call cmd_link_o_target, $(OBJS))
24
25 #########################################################################
26
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
29
30 sinclude $(obj).depend
31
32 #########################################################################