Makefile 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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 $(LDSCRIPT) -Ttext $(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
  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. # from cpu directory
  52. $(obj)start.S:
  53. @rm -f $@
  54. @ln -s $(TOPDIR)/cpu/arm1176/start.S $@
  55. # from SoC directory
  56. $(obj)cpu_init.S:
  57. @rm -f $@
  58. @ln -s $(TOPDIR)/cpu/arm1176/s3c64xx/cpu_init.S $@
  59. # from board directory
  60. $(obj)lowlevel_init.S:
  61. @rm -f $@
  62. @ln -s $(TOPDIR)/board/samsung/smdk6400/lowlevel_init.S $@
  63. # from nand_spl directory
  64. $(obj)nand_boot.c:
  65. @rm -f $@
  66. @ln -s $(TOPDIR)/nand_spl/nand_boot.c $@
  67. # from drivers/mtd/nand directory
  68. $(obj)nand_ecc.c:
  69. @rm -f $@
  70. @ln -s $(TOPDIR)/drivers/mtd/nand/nand_ecc.c $@
  71. $(obj)s3c64xx.c:
  72. @rm -f $@
  73. @ln -s $(TOPDIR)/drivers/mtd/nand/s3c64xx.c $@
  74. #########################################################################
  75. $(obj)%.o: $(obj)%.S
  76. $(CC) $(AFLAGS) -c -o $@ $<
  77. $(obj)%.o: $(obj)%.c
  78. $(CC) $(CFLAGS) -c -o $@ $<
  79. # defines $(obj).depend target
  80. include $(SRCTREE)/rules.mk
  81. sinclude $(obj).depend
  82. #########################################################################