blob: 03363466605f8eba2afb4097ef9584f62cf89531 [file] [log] [blame]
John Rigby6478a752010-01-25 23:12:58 -07001#
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
Wolfgang Denk29547c62011-03-31 16:26:29 -050027nandobj := $(OBJTREE)/nand_spl/
28
John Rigby6478a752010-01-25 23:12:58 -070029LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
Haiying Wang39358732011-02-22 16:38:05 -050030LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
31 $(LDFLAGS_FINAL)
Aneesh V552a3192011-07-13 05:11:07 +000032AFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
33CFLAGS += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
John Rigby6478a752010-01-25 23:12:58 -070034
35SOBJS = start.o lowlevel_init.o
36COBJS = nand_boot_fsl_nfc.o
37
38SRCS := $(SRCTREE)/nand_spl/nand_boot_fsl_nfc.c
Peter Tyserf7c67372010-04-12 22:28:11 -050039SRCS += $(SRCTREE)/arch/arm/cpu/arm926ejs/start.S
John Rigby6478a752010-01-25 23:12:58 -070040SRCS += $(SRCTREE)/board/karo/tx25/lowlevel_init.S
41OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
42__OBJS := $(SOBJS) $(COBJS)
Wolfgang Denk29547c62011-03-31 16:26:29 -050043LNDIR := $(nandobj)board/$(BOARDDIR)
John Rigby6478a752010-01-25 23:12:58 -070044
45ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
46
47all: $(obj).depend $(ALL)
48
49$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
50 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
51
52$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
53 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
54
55$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
56 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
57 -Map $(nandobj)u-boot-spl.map \
58 -o $@
59
60$(nandobj)u-boot.lds: $(LDSCRIPT)
61 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
62
63#########################################################################
64
Peter Tyserf7c67372010-04-12 22:28:11 -050065$(obj)%.o: $(SRCTREE)/arch/arm/cpu/arm926ejs/%.S
John Rigby6478a752010-01-25 23:12:58 -070066 $(CC) $(AFLAGS) -c -o $@ $<
67
68$(obj)%.o: $(SRCTREE)/board/karo/tx25/%.S
69 $(CC) $(AFLAGS) -c -o $@ $<
70
71$(obj)%.o: $(SRCTREE)/nand_spl/%.c
72 $(CC) $(CFLAGS) -c -o $@ $<
73
74# defines $(obj).depend target
75include $(SRCTREE)/rules.mk
76
77sinclude $(obj).depend
78
79#########################################################################