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