]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/mx53loco/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / freescale / mx53loco / Makefile
CommitLineData
938080dc
JL
1#
2# (C) Copyright 2011 Freescale Semiconductor, Inc.
3# Jason Liu <r64343@freescale.com>
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
938080dc
JL
6#
7
8include $(TOPDIR)/config.mk
9
10LIB = $(obj)lib$(BOARD).o
11
30ea4be9
VN
12COBJS-y += mx53loco.o
13COBJS-$(CONFIG_VIDEO) += mx53loco_video.o
938080dc 14
30ea4be9 15COBJS := $(COBJS-y)
2fb563f2 16SRCS := $(COBJS:.o=.c)
938080dc 17OBJS := $(addprefix $(obj),$(COBJS))
938080dc 18
2fb563f2
FE
19$(LIB): $(obj).depend $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
938080dc 21
938080dc
JL
22#########################################################################
23
24# defines $(obj).depend target
25include $(SRCTREE)/rules.mk
26
27sinclude $(obj).depend
28
29#########################################################################