]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/p1022ds/Makefile
powerpc/p1022ds: Add support for NAND and NAND boot using SPL
[people/ms/u-boot.git] / board / freescale / p1022ds / Makefile
CommitLineData
c59e1b4d
TT
1#
2# Copyright 2010 Freescale Semiconductor, Inc.
3#
4# This program is free software; you can redistribute it and/or modify it
5# under the terms of the GNU General Public License as published by the Free
6# Software Foundation; either version 2 of the License, or (at your option)
7# any later version.
8#
9
10include $(TOPDIR)/config.mk
11
6d8962e8 12LIB = $(obj)lib$(BOARD).o
c59e1b4d 13
f45210d6
MM
14MINIMAL=
15
16ifdef CONFIG_SPL_BUILD
17ifdef CONFIG_SPL_INIT_MINIMAL
18MINIMAL=y
19endif
20endif
21
22ifdef MINIMAL
23
24COBJS-y += spl_minimal.o tlb.o law.o
25
26else
c59e1b4d
TT
27COBJS-y += $(BOARD).o
28COBJS-y += ddr.o
29COBJS-y += law.o
30COBJS-y += tlb.o
31
d5e01e49 32COBJS-$(CONFIG_FSL_DIU_FB) += diu.o
f45210d6 33endif
d5e01e49 34
c59e1b4d
TT
35SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
36OBJS := $(addprefix $(obj),$(COBJS-y))
37SOBJS := $(addprefix $(obj),$(SOBJS))
38
39$(LIB): $(obj).depend $(OBJS) $(SOBJS)
6d8962e8 40 $(call cmd_link_o_target, $(OBJS))
c59e1b4d 41
c59e1b4d
TT
42#########################################################################
43
44# defines $(obj).depend target
45include $(SRCTREE)/rules.mk
46
47sinclude $(obj).depend
48
49#########################################################################