Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 1 | # |
Stefan Roese | f3679aa | 2007-06-01 16:15:34 +0200 | [diff] [blame] | 2 | # (C) Copyright 2006-2007 |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 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 |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 25 | include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 26 | |
Wolfgang Denk | 3b258e2 | 2011-03-31 16:26:29 -0500 | [diff] [blame] | 27 | nandobj := $(OBJTREE)/nand_spl/ |
| 28 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 29 | LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds |
Haiying Wang | 6dc1eceb | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 30 | LDFLAGS := -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(LDFLAGS) \ |
| 31 | $(LDFLAGS_FINAL) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 32 | AFLAGS += -DCONFIG_NAND_SPL |
| 33 | CFLAGS += -DCONFIG_NAND_SPL |
| 34 | |
| 35 | SOBJS = start.o init.o resetvec.o |
Stefan Roese | fe9c26b | 2008-01-04 12:00:01 +0100 | [diff] [blame] | 36 | COBJS = denali_data_eye.o nand_boot.o nand_ecc.o ndfc.o sdram.o |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 37 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 38 | SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c)) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 39 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 40 | __OBJS := $(SOBJS) $(COBJS) |
Wolfgang Denk | 3b258e2 | 2011-03-31 16:26:29 -0500 | [diff] [blame] | 41 | LNDIR := $(nandobj)board/$(BOARDDIR) |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 42 | |
| 43 | ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 44 | |
| 45 | all: $(obj).depend $(ALL) |
| 46 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 47 | $(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 48 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@ |
| 49 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 50 | $(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 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 |
Scott Wood | 767589a | 2010-12-10 15:13:39 -0600 | [diff] [blame] | 54 | cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) $(PLATFORM_LIBS) \ |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 55 | -Map $(nandobj)u-boot-spl.map \ |
| 56 | -o $(nandobj)u-boot-spl |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 57 | |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 58 | $(nandobj)u-boot.lds: $(LDSCRIPT) |
| 59 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@ |
| 60 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 61 | # create symbolic links for common files |
| 62 | |
| 63 | # from cpu directory |
Stefan Roese | fe9c26b | 2008-01-04 12:00:01 +0100 | [diff] [blame] | 64 | $(obj)denali_data_eye.c: |
| 65 | @rm -f $(obj)denali_data_eye.c |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 66 | ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/denali_data_eye.c $(obj)denali_data_eye.c |
Stefan Roese | fe9c26b | 2008-01-04 12:00:01 +0100 | [diff] [blame] | 67 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 68 | $(obj)ndfc.c: |
| 69 | @rm -f $(obj)ndfc.c |
Stefan Roese | 12582ac | 2009-07-16 15:12:48 +0200 | [diff] [blame] | 70 | ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 71 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 72 | $(obj)resetvec.S: |
| 73 | @rm -f $(obj)resetvec.S |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 74 | ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 75 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 76 | $(obj)start.S: |
| 77 | @rm -f $(obj)start.S |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 78 | ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 79 | |
| 80 | # from board directory |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 81 | $(obj)init.S: |
| 82 | @rm -f $(obj)init.S |
| 83 | ln -s $(SRCTREE)/board/amcc/sequoia/init.S $(obj)init.S |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 84 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 85 | $(obj)sdram.c: |
| 86 | @rm -f $(obj)sdram.c |
Stefan Roese | 0238898 | 2007-01-05 10:38:05 +0100 | [diff] [blame] | 87 | @rm -f $(obj)sdram.h |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 88 | ln -s $(SRCTREE)/board/amcc/sequoia/sdram.c $(obj)sdram.c |
Stefan Roese | 0238898 | 2007-01-05 10:38:05 +0100 | [diff] [blame] | 89 | ln -s $(SRCTREE)/board/amcc/sequoia/sdram.h $(obj)sdram.h |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 90 | |
| 91 | # from nand_spl directory |
| 92 | $(obj)nand_boot.c: |
| 93 | @rm -f $(obj)nand_boot.c |
| 94 | ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 95 | |
Marcel Ziswiler | 7817cb2 | 2007-12-30 03:30:46 +0100 | [diff] [blame] | 96 | # from drivers/mtd/nand directory |
Stefan Roese | 9d90960 | 2007-06-01 15:29:04 +0200 | [diff] [blame] | 97 | $(obj)nand_ecc.c: |
| 98 | @rm -f $(obj)nand_ecc.c |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 99 | ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c |
Stefan Roese | 9d90960 | 2007-06-01 15:29:04 +0200 | [diff] [blame] | 100 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 101 | ######################################################################### |
| 102 | |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 103 | $(obj)%.o: $(obj)%.S |
| 104 | $(CC) $(AFLAGS) -c -o $@ $< |
| 105 | |
| 106 | $(obj)%.o: $(obj)%.c |
| 107 | $(CC) $(CFLAGS) -c -o $@ $< |
| 108 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 109 | # defines $(obj).depend target |
| 110 | include $(SRCTREE)/rules.mk |
| 111 | |
| 112 | sinclude $(obj).depend |
| 113 | |
| 114 | ######################################################################### |