]> git.sur5r.net Git - u-boot/blob - board/compulab/cm_t35/Makefile
8b922b3d7e53650e29940cc3ef087dec26b5b206
[u-boot] / 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_LCD) += display.o
15
16 COBJS   := cm_t35.o leds.o $(COBJS-y)
17
18 SRCS    := $(COBJS:.o=.c)
19 OBJS    := $(addprefix $(obj),$(COBJS))
20
21 $(LIB): $(obj).depend $(OBJS)
22         $(call cmd_link_o_target, $(OBJS))
23
24 #########################################################################
25
26 # defines $(obj).depend target
27 include $(SRCTREE)/rules.mk
28
29 sinclude $(obj).depend
30
31 #########################################################################