]> git.ipfire.org Git - people/ms/u-boot.git/blame - nand_spl/board/karo/tx25/Makefile
Merge remote-tracking branch 'u-boot/master' into u-boot-arm-merged
[people/ms/u-boot.git] / nand_spl / board / karo / tx25 / Makefile
CommitLineData
6895d451
JR
1#
2# (C) Copyright 2009 DENX Software Engineering
3#
4# See file CREDITS for list of people who contributed to this
5# project.
6#
7# This program is free software; you can redistribute it and/or
8# modify it under the terms of the GNU General Public License as
9# published by the Free Software Foundatio; either version 2 of
10# the License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20# MA 02111-1307 USA
21#
22CONFIG_NAND_SPL = y
23
24include $(TOPDIR)/config.mk
25include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
26
3b258e2e
WD
27nandobj := $(OBJTREE)/nand_spl/
28
6895d451 29LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
97b24d3d 30LSTSCRIPT= $(nandobj)/board/$(BOARDDIR)/u-boot.lst
6dc1eceb
HW
31LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
32 $(LDFLAGS_FINAL)
401bb30b
A
33AFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
34CFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
6895d451
JR
35
36SOBJS = start.o lowlevel_init.o
37COBJS = nand_boot_fsl_nfc.o
38
39SRCS := $(SRCTREE)/nand_spl/nand_boot_fsl_nfc.c
84ad6884 40SRCS += $(SRCTREE)/arch/arm/cpu/arm926ejs/start.S
6895d451
JR
41SRCS += $(SRCTREE)/board/karo/tx25/lowlevel_init.S
42OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
43__OBJS := $(SOBJS) $(COBJS)
3b258e2e 44LNDIR := $(nandobj)board/$(BOARDDIR)
6895d451
JR
45
46ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
47
48all: $(obj).depend $(ALL)
49
50$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
51 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
52
53$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
54 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
55
56$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
57 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
58 -Map $(nandobj)u-boot-spl.map \
59 -o $@
60
97b24d3d
MV
61# The following line expands into whole rule which generates $(LSTSCRIPT),
62# the file containing u-boots LG-array linker section. This is included into
63# $(LDSCRIPT). The function make_u_boot_list is defined in helper.mk file.
64$(eval $(call make_u_boot_list, $(LSTSCRIPT), $(OBJS)))
65$(nandobj)u-boot.lds: $(LDSCRIPT) $(LSTSCRIPT)
a6d0f62a
SW
66 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(nandobj)/board/$(BOARDDIR) \
67 -ansi -D__ASSEMBLY__ -P - <$< >$@
6895d451
JR
68
69#########################################################################
70
84ad6884 71$(obj)%.o: $(SRCTREE)/arch/arm/cpu/arm926ejs/%.S
6895d451
JR
72 $(CC) $(AFLAGS) -c -o $@ $<
73
74$(obj)%.o: $(SRCTREE)/board/karo/tx25/%.S
75 $(CC) $(AFLAGS) -c -o $@ $<
76
77$(obj)%.o: $(SRCTREE)/nand_spl/%.c
78 $(CC) $(CFLAGS) -c -o $@ $<
79
80# defines $(obj).depend target
81include $(SRCTREE)/rules.mk
82
83sinclude $(obj).depend
84
85#########################################################################