]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/compulab/cm_t35/Makefile
cm-t35: move the display code to common place
[people/ms/u-boot.git] / board / compulab / cm_t35 / Makefile
CommitLineData
36b4e2dd 1#
811acf92
IG
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>
36b4e2dd 6#
1a459660 7# SPDX-License-Identifier: GPL-2.0+
36b4e2dd 8#
36b4e2dd
MR
9
10include $(TOPDIR)/config.mk
11
12LIB = $(obj)lib$(BOARD).o
13
82309250 14COBJS := cm_t35.o leds.o $(COBJS-y)
36b4e2dd
MR
15
16SRCS := $(COBJS:.o=.c)
17OBJS := $(addprefix $(obj),$(COBJS))
18
19$(LIB): $(obj).depend $(OBJS)
26ddff2d 20 $(call cmd_link_o_target, $(OBJS))
36b4e2dd 21
36b4e2dd
MR
22#########################################################################
23
24# defines $(obj).depend target
25include $(SRCTREE)/rules.mk
26
27sinclude $(obj).depend
811acf92
IG
28
29#########################################################################