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