Makefile 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #
  2. # (C) Copyright 2007
  3. # Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. # (C) Copyright 2008 Freescale Semiconductor
  5. # (C) Copyright Sheldon Instruments, Inc. 2008
  6. #
  7. # See file CREDITS for list of people who contributed to this
  8. # project.
  9. #
  10. # This program is free software; you can redistribute it and/or
  11. # modify it under the terms of the GNU General Public License as
  12. # published by the Free Software Foundation; either version 2 of
  13. # the License, or (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program; if not, write to the Free Software
  22. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. # MA 02111-1307 USA
  24. #
  25. NAND_SPL := y
  26. TEXT_BASE := 0xfff00000
  27. include $(TOPDIR)/config.mk
  28. LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
  29. LDFLAGS = -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
  30. AFLAGS += -DCONFIG_NAND_SPL
  31. CFLAGS += -DCONFIG_NAND_SPL
  32. SOBJS = start.o ticks.o
  33. COBJS = nand_boot_fsl_elbc.o $(BOARD).o sdram.o ns16550.o nand_init.o \
  34. time.o cache.o
  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. nandobj := $(OBJTREE)/nand_spl/
  40. ALL = $(nandobj)u-boot-spl $(nandobj)u-boot-spl.bin $(nandobj)u-boot-spl-16k.bin
  41. all: $(obj).depend $(ALL)
  42. $(nandobj)u-boot-spl-16k.bin: $(nandobj)u-boot-spl
  43. $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $< $@
  44. $(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl
  45. $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
  46. $(nandobj)u-boot-spl: $(OBJS)
  47. cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
  48. -Map $(nandobj)u-boot-spl.map \
  49. -o $(nandobj)u-boot-spl
  50. # create symbolic links for common files
  51. $(obj)start.S:
  52. @rm -f $@
  53. ln -s $(SRCTREE)/cpu/mpc83xx/start.S $@
  54. $(obj)nand_boot_fsl_elbc.c:
  55. @rm -f $@
  56. ln -s $(SRCTREE)/nand_spl/nand_boot_fsl_elbc.c $@
  57. $(obj)sdram.c:
  58. @rm -f $@
  59. ln -s $(SRCTREE)/board/$(BOARDDIR)/sdram.c $@
  60. $(obj)$(BOARD).c:
  61. @rm -f $@
  62. ln -s $(SRCTREE)/board/$(BOARDDIR)/$(BOARD).c $@
  63. $(obj)ns16550.c:
  64. @rm -f $@
  65. ln -s $(SRCTREE)/drivers/serial/ns16550.c $@
  66. $(obj)nand_init.c:
  67. @rm -f $@
  68. ln -s $(SRCTREE)/cpu/mpc83xx/nand_init.c $@
  69. $(obj)cache.c:
  70. @rm -f $@
  71. ln -s $(SRCTREE)/lib_ppc/cache.c $@
  72. $(obj)time.c:
  73. @rm -f $@
  74. ln -s $(SRCTREE)/lib_ppc/time.c $@
  75. $(obj)ticks.S:
  76. @rm -f $@
  77. ln -s $(SRCTREE)/lib_ppc/ticks.S $@
  78. #########################################################################
  79. $(obj)%.o: $(obj)%.S
  80. $(CC) $(AFLAGS) -c -o $@ $<
  81. $(obj)%.o: $(obj)%.c
  82. $(CC) $(CFLAGS) -c -o $@ $<
  83. # defines $(obj).depend target
  84. include $(SRCTREE)/rules.mk
  85. sinclude $(obj).depend
  86. #########################################################################