Makefile 312 B

12345678910111213141516
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (C) 2018, STMicroelectronics - All Rights Reserved
  4. #
  5. obj-y += cpu.o
  6. obj-y += dram_init.o
  7. obj-y += syscon.o
  8. ifdef CONFIG_SPL_BUILD
  9. obj-y += spl.o
  10. else
  11. obj-y += bsec.o
  12. endif
  13. obj-$(CONFIG_ARMV7_PSCI) += psci.o
  14. obj-$(CONFIG_$(SPL_)DM_REGULATOR) += pwr_regulator.o