]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/compulab/cm_t35/Makefile
cm-t35: move the eeprom 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
7878ca51 14COBJS-$(CONFIG_LCD) += display.o
82309250
NK
15
16COBJS := cm_t35.o leds.o $(COBJS-y)
36b4e2dd
MR
17
18SRCS := $(COBJS:.o=.c)
19OBJS := $(addprefix $(obj),$(COBJS))
20
21$(LIB): $(obj).depend $(OBJS)
26ddff2d 22 $(call cmd_link_o_target, $(OBJS))
36b4e2dd 23
36b4e2dd
MR
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
811acf92
IG
30
31#########################################################################