Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 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 | |
| 24 | include $(TOPDIR)/config.mk |
| 25 | include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk |
| 26 | |
| 27 | LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame^] | 28 | LDFLAGS = -Bstatic -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(PLATFORM_LDFLAGS) |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 29 | AFLAGS += -DCONFIG_NAND_SPL |
| 30 | CFLAGS += -DCONFIG_NAND_SPL |
| 31 | |
Stefan Roese | 5d96d40 | 2007-10-31 20:58:34 +0100 | [diff] [blame] | 32 | SOBJS = start.o resetvec.o cache.o |
Stefan Roese | df8a24c | 2007-06-19 16:42:31 +0200 | [diff] [blame] | 33 | COBJS = gpio.o nand_boot.o nand_ecc.o memory.o ndfc.o pll.o |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 34 | |
| 35 | SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c)) |
| 36 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |
| 37 | __OBJS := $(SOBJS) $(COBJS) |
| 38 | LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR) |
| 39 | |
| 40 | nandobj := $(OBJTREE)/nand_spl/ |
| 41 | |
Stefan Roese | df8a24c | 2007-06-19 16:42:31 +0200 | [diff] [blame] | 42 | ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin \ |
| 43 | $(nandobj)System.map |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 44 | |
| 45 | all: $(obj).depend $(ALL) |
| 46 | |
| 47 | $(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl |
| 48 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@ |
| 49 | |
| 50 | $(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl |
| 51 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
| 52 | |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 53 | $(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds |
Kenneth Johansson | 2918eb9 | 2008-05-29 16:32:33 +0200 | [diff] [blame] | 54 | cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \ |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 55 | -Map $(nandobj)u-boot-spl.map \ |
| 56 | -o $(nandobj)u-boot-spl |
| 57 | |
Stefan Roese | df8a24c | 2007-06-19 16:42:31 +0200 | [diff] [blame] | 58 | $(nandobj)System.map: $(nandobj)u-boot-spl |
| 59 | @$(NM) $< | \ |
| 60 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
| 61 | sort > $(nandobj)System.map |
| 62 | |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 63 | $(nandobj)u-boot.lds: $(LDSCRIPT) |
| 64 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@ |
| 65 | |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 66 | # create symbolic links for common files |
| 67 | |
| 68 | # from cpu directory |
Stefan Roese | 5d96d40 | 2007-10-31 20:58:34 +0100 | [diff] [blame] | 69 | $(obj)cache.S: |
| 70 | @rm -f $(obj)cache.S |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 71 | ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/cache.S $(obj)cache.S |
Stefan Roese | 5d96d40 | 2007-10-31 20:58:34 +0100 | [diff] [blame] | 72 | |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 73 | $(obj)gpio.c: |
| 74 | @rm -f $(obj)gpio.c |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 75 | ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/gpio.c $(obj)gpio.c |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 76 | |
| 77 | $(obj)ndfc.c: |
| 78 | @rm -f $(obj)ndfc.c |
Stefan Roese | 12582ac | 2009-07-16 15:12:48 +0200 | [diff] [blame] | 79 | ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 80 | |
| 81 | $(obj)resetvec.S: |
| 82 | @rm -f $(obj)resetvec.S |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 83 | ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 84 | |
| 85 | $(obj)start.S: |
| 86 | @rm -f $(obj)start.S |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 87 | ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 88 | |
| 89 | # from board directory |
| 90 | $(obj)memory.c: |
| 91 | @rm -f $(obj)memory.c |
| 92 | ln -s $(SRCTREE)/board/amcc/acadia/memory.c $(obj)memory.c |
| 93 | |
Stefan Roese | df8a24c | 2007-06-19 16:42:31 +0200 | [diff] [blame] | 94 | $(obj)pll.c: |
| 95 | @rm -f $(obj)pll.c |
| 96 | ln -s $(SRCTREE)/board/amcc/acadia/pll.c $(obj)pll.c |
| 97 | |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 98 | # from nand_spl directory |
| 99 | $(obj)nand_boot.c: |
| 100 | @rm -f $(obj)nand_boot.c |
| 101 | ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c |
| 102 | |
Marcel Ziswiler | 7817cb2 | 2007-12-30 03:30:46 +0100 | [diff] [blame] | 103 | # from drivers/mtd/nand directory |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 104 | $(obj)nand_ecc.c: |
| 105 | @rm -f $(obj)nand_ecc.c |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 106 | ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 107 | |
| 108 | ######################################################################### |
| 109 | |
| 110 | $(obj)%.o: $(obj)%.S |
| 111 | $(CC) $(AFLAGS) -c -o $@ $< |
| 112 | |
| 113 | $(obj)%.o: $(obj)%.c |
| 114 | $(CC) $(CFLAGS) -c -o $@ $< |
| 115 | |
| 116 | # defines $(obj).depend target |
| 117 | include $(SRCTREE)/rules.mk |
| 118 | |
| 119 | sinclude $(obj).depend |
| 120 | |
| 121 | ######################################################################### |