Makefile 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. include $(TOPDIR)/config.mk
  24. include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
  25. LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
  26. LDFLAGS = -Bstatic -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(PLATFORM_LDFLAGS)
  27. AFLAGS += -DCONFIG_NAND_SPL
  28. CFLAGS += -DCONFIG_NAND_SPL
  29. SOBJS = start.o resetvec.o cache.o
  30. COBJS = gpio.o nand_boot.o nand_ecc.o memory.o ndfc.o pll.o
  31. SRCS := $(addprefix $(obj),$(SOBJS:.o=.S) $(COBJS:.o=.c))
  32. OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
  33. __OBJS := $(SOBJS) $(COBJS)
  34. LNDIR := $(OBJTREE)/nand_spl/board/$(BOARDDIR)
  35. nandobj := $(OBJTREE)/nand_spl/
  36. ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin \
  37. $(nandobj)System.map
  38. all: $(obj).depend $(ALL)
  39. $(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
  40. $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
  41. $(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
  42. $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
  43. $(nandobj)u-boot-spl: $(OBJS) $(nandobj)u-boot.lds
  44. cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
  45. -Map $(nandobj)u-boot-spl.map \
  46. -o $(nandobj)u-boot-spl
  47. $(nandobj)System.map: $(nandobj)u-boot-spl
  48. @$(NM) $< | \
  49. grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
  50. sort > $(nandobj)System.map
  51. $(nandobj)u-boot.lds: $(LDSCRIPT)
  52. $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
  53. # create symbolic links for common files
  54. # from cpu directory
  55. $(obj)cache.S:
  56. @rm -f $(obj)cache.S
  57. ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/cache.S $(obj)cache.S
  58. $(obj)gpio.c:
  59. @rm -f $(obj)gpio.c
  60. ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/gpio.c $(obj)gpio.c
  61. $(obj)ndfc.c:
  62. @rm -f $(obj)ndfc.c
  63. ln -s $(SRCTREE)/drivers/mtd/nand/ndfc.c $(obj)ndfc.c
  64. $(obj)resetvec.S:
  65. @rm -f $(obj)resetvec.S
  66. ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/resetvec.S $(obj)resetvec.S
  67. $(obj)start.S:
  68. @rm -f $(obj)start.S
  69. ln -s $(SRCTREE)/arch/powerpc/cpu/ppc4xx/start.S $(obj)start.S
  70. # from board directory
  71. $(obj)memory.c:
  72. @rm -f $(obj)memory.c
  73. ln -s $(SRCTREE)/board/amcc/acadia/memory.c $(obj)memory.c
  74. $(obj)pll.c:
  75. @rm -f $(obj)pll.c
  76. ln -s $(SRCTREE)/board/amcc/acadia/pll.c $(obj)pll.c
  77. # from nand_spl directory
  78. $(obj)nand_boot.c:
  79. @rm -f $(obj)nand_boot.c
  80. ln -s $(SRCTREE)/nand_spl/nand_boot.c $(obj)nand_boot.c
  81. # from drivers/mtd/nand directory
  82. $(obj)nand_ecc.c:
  83. @rm -f $(obj)nand_ecc.c
  84. ln -s $(SRCTREE)/drivers/mtd/nand/nand_ecc.c $(obj)nand_ecc.c
  85. #########################################################################
  86. $(obj)%.o: $(obj)%.S
  87. $(CC) $(AFLAGS) -c -o $@ $<
  88. $(obj)%.o: $(obj)%.c
  89. $(CC) $(CFLAGS) -c -o $@ $<
  90. # defines $(obj).depend target
  91. include $(SRCTREE)/rules.mk
  92. sinclude $(obj).depend
  93. #########################################################################