]> git.ipfire.org Git - people/ms/u-boot.git/blame - nand_spl/board/amcc/acadia/Makefile
Introduce a new linker flag LDFLAGS_FINAL
[people/ms/u-boot.git] / nand_spl / board / amcc / acadia / Makefile
CommitLineData
c440bfe6
SR
1#
2# (C) Copyright 2007
3# Stefan Roese, DENX Software Engineering, sr@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
25include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
26
27LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
6dc1eceb
HW
28LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
29 $(LDFLAGS_FINAL)
c440bfe6
SR
30AFLAGS += -DCONFIG_NAND_SPL
31CFLAGS += -DCONFIG_NAND_SPL
32
5d96d40d 33SOBJS = start.o resetvec.o cache.o
df8a24cd 34COBJS = gpio.o nand_boot.o nand_ecc.o memory.o ndfc.o pll.o
c440bfe6
SR
35
36SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
37OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
38__OBJS := $(SOBJS) $(COBJS)
39LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR)
40
41nandobj := $(OBJTREE)/nand_spl/
42
df8a24cd
SR
43ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin \
44 $(nandobj)System.map
c440bfe6
SR
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
1aada9cd 54$(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
767589a7 55 cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) $(PLATFORM_LIBS) \
c440bfe6
SR
56 -Map $(nandobj)u-boot-spl.map \
57 -o $(nandobj)u-boot-spl
58
df8a24cd
SR
59$(nandobj)System.map: $(nandobj)u-boot-spl
60 @$(NM) $< | \
61 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
62 sort > $(nandobj)System.map
63
1aada9cd
WD
64$(nandobj)u-boot.lds: $(LDSCRIPT)
65 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
66
c440bfe6
SR
67# create symbolic links for common files
68
69# from cpu directory
5d96d40d
SR
70$(obj)cache.S:
71 @rm -f $(obj)cache.S
a47a12be 72 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/cache.S $(obj)cache.S
5d96d40d 73
c440bfe6
SR
74$(obj)gpio.c:
75 @rm -f $(obj)gpio.c
a47a12be 76 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/gpio.c $(obj)gpio.c
c440bfe6
SR
77
78$(obj)ndfc.c:
79 @rm -f $(obj)ndfc.c
12582ac7 80 ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c
c440bfe6
SR
81
82$(obj)resetvec.S:
83 @rm -f $(obj)resetvec.S
a47a12be 84 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
c440bfe6
SR
85
86$(obj)start.S:
87 @rm -f $(obj)start.S
a47a12be 88 ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S
c440bfe6
SR
89
90# from board directory
91$(obj)memory.c:
92 @rm -f $(obj)memory.c
93 ln -s $(SRCTREE)/board/amcc/acadia/memory.c $(obj)memory.c
94
df8a24cd
SR
95$(obj)pll.c:
96 @rm -f $(obj)pll.c
97 ln -s $(SRCTREE)/board/amcc/acadia/pll.c $(obj)pll.c
98
c440bfe6
SR
99# from nand_spl directory
100$(obj)nand_boot.c:
101 @rm -f $(obj)nand_boot.c
102 ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
103
7817cb20 104# from drivers/mtd/nand directory
c440bfe6
SR
105$(obj)nand_ecc.c:
106 @rm -f $(obj)nand_ecc.c
59829cc1 107 ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c
c440bfe6
SR
108
109#########################################################################
110
111$(obj)%.o: $(obj)%.S
112 $(CC) $(AFLAGS) -c -o $@ $<
113
114$(obj)%.o: $(obj)%.c
115 $(CC) $(CFLAGS) -c -o $@ $<
116
117# defines $(obj).depend target
118include $(SRCTREE)/rules.mk
119
120sinclude $(obj).depend
121
122#########################################################################