]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/p1_p2_rdb_pc/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-usb
[people/ms/u-boot.git] / board / freescale / p1_p2_rdb_pc / Makefile
CommitLineData
14aa71e6
LY
1#
2# Copyright 2010-2011 Freescale Semiconductor, Inc.
3#
1a459660 4# SPDX-License-Identifier: GPL-2.0+
14aa71e6
LY
5#
6
7include $(TOPDIR)/config.mk
8
9LIB = $(obj)lib$(BOARD).o
10
94a45bb1
SW
11MINIMAL=
12
13ifdef CONFIG_SPL_BUILD
14ifdef CONFIG_SPL_INIT_MINIMAL
15MINIMAL=y
16endif
17endif
18
19ifdef MINIMAL
20
21COBJS-y += spl_minimal.o tlb.o law.o
22
23else
3e6e6983
YZ
24ifdef CONFIG_SPL_BUILD
25COBJS-y += spl.o
26endif
94a45bb1 27
14aa71e6
LY
28COBJS-y += $(BOARD).o
29COBJS-y += ddr.o
30COBJS-y += law.o
31COBJS-y += tlb.o
32
94a45bb1
SW
33endif
34
14aa71e6
LY
35SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
36OBJS := $(addprefix $(obj),$(COBJS-y))
37SOBJS := $(addprefix $(obj),$(SOBJS))
38
39$(LIB): $(obj).depend $(OBJS) $(SOBJS)
40 $(call cmd_link_o_target, $(OBJS))
41
14aa71e6
LY
42#########################################################################
43
44# defines $(obj).depend target
45include $(SRCTREE)/rules.mk
46
47sinclude $(obj).depend
48
49#########################################################################