]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/p1023rdb/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / freescale / p1023rdb / Makefile
CommitLineData
57072338
CL
1#
2# Copyright 2013 Freescale Semiconductor, Inc.
3#
1a459660 4# SPDX-License-Identifier: GPL-2.0+
57072338
CL
5#
6
7include $(TOPDIR)/config.mk
8
9LIB = $(obj)lib$(BOARD).o
10
11COBJS-y += $(BOARD).o
12COBJS-y += ddr.o
13COBJS-y += law.o
14COBJS-y += tlb.o
15
16SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
17OBJS := $(addprefix $(obj),$(COBJS-y))
18SOBJS := $(addprefix $(obj),$(SOBJS))
19
20$(LIB): $(obj).depend $(OBJS) $(SOBJS)
21 $(call cmd_link_o_target, $(OBJS))
22
23#########################################################################
24
25# defines $(obj).depend target
26include $(SRCTREE)/rules.mk
27
28sinclude $(obj).depend
29
30#########################################################################