]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - nand_spl/board/karo/tx25/Makefile
spi: mxc_spi: Set master mode for all channels
[karo-tx-uboot.git] / nand_spl / board / karo / tx25 / Makefile
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 #
22 CONFIG_NAND_SPL = y
23
24 include $(TOPDIR)/config.mk
25 include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
26
27 nandobj := $(OBJTREE)/nand_spl/
28
29 LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
30 LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \
31            $(LDFLAGS_FINAL)
32 AFLAGS  += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
33 CFLAGS  += -DCONFIG_SPL_BUILD -DCONFIG_NAND_SPL
34
35 SOBJS   = start.o crt0.o lowlevel_init.o
36 COBJS   = nand_boot_fsl_nfc.o
37
38 SRCS    := $(SRCTREE)/nand_spl/nand_boot_fsl_nfc.c
39 SRCS    += $(SRCTREE)/arch/arm/cpu/arm926ejs/start.S
40 SRCS    += $(SRCTREE)/arch/arm/lib/crt0.S
41 SRCS    += $(SRCTREE)/board/karo/tx25/lowlevel_init.S
42 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
43 __OBJS  := $(SOBJS) $(COBJS)
44 LNDIR   := $(nandobj)board/$(BOARDDIR)
45
46 ALL     = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
47
48 all:    $(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
61 $(nandobj)u-boot.lds: $(LDSCRIPT)
62         $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(nandobj)/board/$(BOARDDIR) \
63                 -ansi -D__ASSEMBLY__ -P - <$< >$@
64
65 #########################################################################
66
67 $(obj)%.o:      $(SRCTREE)/arch/arm/cpu/arm926ejs/%.S
68         $(CC) $(AFLAGS) -c -o $@ $<
69
70 $(obj)%.o:      $(SRCTREE)/arch/arm/lib/%.S
71         $(CC) $(AFLAGS) -c -o $@ $<
72
73 $(obj)%.o:      $(SRCTREE)/board/karo/tx25/%.S
74         $(CC) $(AFLAGS) -c -o $@ $<
75
76 $(obj)%.o:      $(SRCTREE)/nand_spl/%.c
77         $(CC) $(CFLAGS) -c -o $@ $<
78
79 # defines $(obj).depend target
80 include $(SRCTREE)/rules.mk
81
82 sinclude $(obj).depend
83
84 #########################################################################