]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/compulab/cm_t35/Makefile
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[people/ms/u-boot.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 := cm_t35.o leds.o $(COBJS-y)
15
16 SRCS := $(COBJS:.o=.c)
17 OBJS := $(addprefix $(obj),$(COBJS))
18
19 $(LIB): $(obj).depend $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend
28
29 #########################################################################