Makefile 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #
  2. # arch/blackfin/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License. See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. #
  8. CROSS_COMPILE ?= bfin-uclinux-
  9. LDFLAGS_vmlinux := -X
  10. OBJCOPYFLAGS := -O binary -R .note -R .comment -S
  11. GZFLAGS := -9
  12. CFLAGS += $(call cc-option,-mno-fdpic)
  13. AFLAGS += $(call cc-option,-mno-fdpic)
  14. CFLAGS_MODULE += -mlong-calls
  15. KALLSYMS += --symbol-prefix=_
  16. KBUILD_DEFCONFIG := BF537-STAMP_defconfig
  17. # setup the machine name and the machine dependent settings
  18. machine-$(CONFIG_BF522) := bf527
  19. machine-$(CONFIG_BF525) := bf527
  20. machine-$(CONFIG_BF527) := bf527
  21. machine-$(CONFIG_BF531) := bf533
  22. machine-$(CONFIG_BF532) := bf533
  23. machine-$(CONFIG_BF533) := bf533
  24. machine-$(CONFIG_BF534) := bf537
  25. machine-$(CONFIG_BF536) := bf537
  26. machine-$(CONFIG_BF537) := bf537
  27. machine-$(CONFIG_BF542) := bf548
  28. machine-$(CONFIG_BF544) := bf548
  29. machine-$(CONFIG_BF548) := bf548
  30. machine-$(CONFIG_BF549) := bf548
  31. machine-$(CONFIG_BF561) := bf561
  32. MACHINE := $(machine-y)
  33. export MACHINE
  34. cpu-$(CONFIG_BF522) := bf522
  35. cpu-$(CONFIG_BF525) := bf525
  36. cpu-$(CONFIG_BF527) := bf527
  37. cpu-$(CONFIG_BF531) := bf531
  38. cpu-$(CONFIG_BF532) := bf532
  39. cpu-$(CONFIG_BF533) := bf533
  40. cpu-$(CONFIG_BF534) := bf534
  41. cpu-$(CONFIG_BF536) := bf536
  42. cpu-$(CONFIG_BF537) := bf537
  43. cpu-$(CONFIG_BF542) := bf542
  44. cpu-$(CONFIG_BF544) := bf544
  45. cpu-$(CONFIG_BF548) := bf548
  46. cpu-$(CONFIG_BF549) := bf549
  47. cpu-$(CONFIG_BF561) := bf561
  48. rev-$(CONFIG_BF_REV_0_0) := 0.0
  49. rev-$(CONFIG_BF_REV_0_1) := 0.1
  50. rev-$(CONFIG_BF_REV_0_2) := 0.2
  51. rev-$(CONFIG_BF_REV_0_3) := 0.3
  52. rev-$(CONFIG_BF_REV_0_4) := 0.4
  53. rev-$(CONFIG_BF_REV_0_5) := 0.5
  54. rev-$(CONFIG_BF_REV_NONE) := none
  55. rev-$(CONFIG_BF_REV_ANY) := any
  56. KBUILD_CFLAGS += -mcpu=$(cpu-y)-$(rev-y)
  57. KBUILD_AFLAGS += -mcpu=$(cpu-y)-$(rev-y)
  58. head-y := arch/$(ARCH)/mach-$(MACHINE)/head.o arch/$(ARCH)/kernel/init_task.o
  59. core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ arch/$(ARCH)/mach-common/
  60. # If we have a machine-specific directory, then include it in the build.
  61. ifneq ($(machine-y),)
  62. core-y += arch/$(ARCH)/mach-$(MACHINE)/
  63. core-y += arch/$(ARCH)/mach-$(MACHINE)/boards/
  64. endif
  65. libs-y += arch/$(ARCH)/lib/
  66. drivers-$(CONFIG_OPROFILE) += arch/$(ARCH)/oprofile/
  67. # Update machine arch symlinks if something which affects
  68. # them changed. We use .mach to indicate when they were updated
  69. # last, otherwise make uses the target directory mtime.
  70. include/asm-blackfin/.mach: $(wildcard include/config/arch/*.h) include/config/auto.conf
  71. @echo ' SYMLINK include/asm-$(ARCH)/mach-$(MACHINE) -> include/asm-$(ARCH)/mach'
  72. ifneq ($(KBUILD_SRC),)
  73. $(Q)mkdir -p include/asm-$(ARCH)
  74. $(Q)ln -fsn $(srctree)/include/asm-$(ARCH)/mach-$(MACHINE) include/asm-$(ARCH)/mach
  75. else
  76. $(Q)ln -fsn mach-$(MACHINE) include/asm-$(ARCH)/mach
  77. endif
  78. @touch $@
  79. CLEAN_FILES += \
  80. include/asm-$(ARCH)/asm-offsets.h \
  81. arch/$(ARCH)/kernel/asm-offsets.s \
  82. include/asm-$(ARCH)/mach \
  83. include/asm-$(ARCH)/.mach
  84. archprepare: include/asm-blackfin/.mach
  85. archclean:
  86. $(Q)$(MAKE) $(clean)=$(boot)
  87. boot := arch/$(ARCH)/boot
  88. BOOT_TARGETS = vmImage
  89. PHONY += $(BOOT_TARGETS) install
  90. KBUILD_IMAGE := $(boot)/vmImage
  91. all: vmImage
  92. $(BOOT_TARGETS): vmlinux
  93. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  94. install:
  95. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
  96. define archhelp
  97. echo '* vmImage - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage)'
  98. echo ' install - Install kernel using'
  99. echo ' (your) ~/bin/$(CROSS_COMPILE)installkernel or'
  100. echo ' (distribution) PATH: $(CROSS_COMPILE)installkernel or'
  101. echo ' install to $$(INSTALL_PATH)'
  102. endef