Makefile 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #
  2. # (C) Copyright 2006-2007
  3. # Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. #
  5. # (C) Copyright 2008
  6. # Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
  7. #
  8. # See file CREDITS for list of people who contributed to this
  9. # project.
  10. #
  11. # This program is free software; you can redistribute it and/or
  12. # modify it under the terms of the GNU General Public License as
  13. # published by the Free Software Foundation; either version 2 of
  14. # the License, or (at your option) any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License
  22. # along with this program; if not, write to the Free Software
  23. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. # MA 02111-1307 USA
  25. #
  26. CONFIG_NAND_SPL = y
  27. include $(TOPDIR)/config.mk
  28. include $(TOPDIR)/nand_spl/board/$(BOARDDIR)/config.mk
  29. LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds
  30. LDFLAGS = -Bstatic -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_TEXT_BASE) $(PLATFORM_LDFLAGS)
  31. AFLAGS += -DCONFIG_NAND_SPL
  32. CFLAGS += -DCONFIG_NAND_SPL
  33. SOBJS = start.o cpu_init.o lowlevel_init.o
  34. COBJS = nand_boot.o nand_ecc.o s3c64xx.o smdk6400_nand_spl.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) $(nandobj)u-boot.lds
  47. cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \
  48. -Map $(nandobj)u-boot-spl.map \
  49. -o $(nandobj)u-boot-spl
  50. $(nandobj)u-boot.lds: $(LDSCRIPT)
  51. $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
  52. # create symbolic links for common files
  53. # from cpu directory
  54. $(obj)start.S:
  55. @rm -f $@
  56. @ln -s $(TOPDIR)/arch/arm/cpu/arm1176/start.S $@
  57. # from SoC directory
  58. $(obj)cpu_init.S:
  59. @rm -f $@
  60. @ln -s $(TOPDIR)/arch/arm/cpu/arm1176/s3c64xx/cpu_init.S $@
  61. # from board directory
  62. $(obj)lowlevel_init.S:
  63. @rm -f $@
  64. @ln -s $(TOPDIR)/board/samsung/smdk6400/lowlevel_init.S $@
  65. # from nand_spl directory
  66. $(obj)nand_boot.c:
  67. @rm -f $@
  68. @ln -s $(TOPDIR)/nand_spl/nand_boot.c $@
  69. # from drivers/mtd/nand directory
  70. $(obj)nand_ecc.c:
  71. @rm -f $@
  72. @ln -s $(TOPDIR)/drivers/mtd/nand/nand_ecc.c $@
  73. $(obj)s3c64xx.c:
  74. @rm -f $@
  75. @ln -s $(TOPDIR)/drivers/mtd/nand/s3c64xx.c $@
  76. $(obj)smdk6400_nand_spl.c:
  77. @rm -f $@
  78. @ln -s $(TOPDIR)/board/samsung/smdk6400/smdk6400_nand_spl.c $@
  79. #########################################################################
  80. $(obj)%.o: $(obj)%.S
  81. $(CC) $(AFLAGS) -c -o $@ $<
  82. $(obj)%.o: $(obj)%.c
  83. $(CC) $(CFLAGS) -c -o $@ $<
  84. # defines $(obj).depend target
  85. include $(SRCTREE)/rules.mk
  86. sinclude $(obj).depend
  87. #########################################################################