]> git.ipfire.org Git - people/ms/u-boot.git/blame - nand_spl/board/karo/tx25/Makefile
Add support for KARO TX25 board
[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
27LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
28LDFLAGS = -Bstatic -T $(nandobj)u-boot.lds -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
29AFLAGS += -DCONFIG_PRELOADER -DCONFIG_NAND_SPL
30CFLAGS += -DCONFIG_PRELOADER -DCONFIG_NAND_SPL
31
32SOBJS = start.o lowlevel_init.o
33COBJS = nand_boot_fsl_nfc.o
34
35SRCS := $(SRCTREE)/nand_spl/nand_boot_fsl_nfc.c
36SRCS += $(SRCTREE)/cpu/arm926ejs/start.S
37SRCS += $(SRCTREE)/board/karo/tx25/lowlevel_init.S
38OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
39__OBJS := $(SOBJS) $(COBJS)
40LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR)
41
42nandobj := $(OBJTREE)/nand_spl/
43
44ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
45
46all: $(obj).depend $(ALL)
47
48$(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
49 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
50
51$(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
52 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
53
54$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
55 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
56 -Map $(nandobj)u-boot-spl.map \
57 -o $@
58
59$(nandobj)u-boot.lds: $(LDSCRIPT)
60 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
61
62#########################################################################
63
64$(obj)%.o: $(SRCTREE)/cpu/arm926ejs/%.S
65 $(CC) $(AFLAGS) -c -o $@ $<
66
67$(obj)%.o: $(SRCTREE)/board/karo/tx25/%.S
68 $(CC) $(AFLAGS) -c -o $@ $<
69
70$(obj)%.o: $(SRCTREE)/nand_spl/%.c
71 $(CC) $(CFLAGS) -c -o $@ $<
72
73# defines $(obj).depend target
74include $(SRCTREE)/rules.mk
75
76sinclude $(obj).depend
77
78#########################################################################