Makefile 396 B

123456789101112131415
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # (C) Copyright 2009
  4. # Marvell Semiconductor <www.marvell.com>
  5. # Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  6. obj-y = cpu.o
  7. obj-y += cache.o
  8. obj-y += mpp.o
  9. # cpu.o and cache.o contain CP15 instructions which cannot be run in
  10. # Thumb state, so build them for ARM state even with CONFIG_SYS_THUMB_BUILD
  11. CFLAGS_cpu.o := -marm
  12. CFLAGS_cache.o := -marm