Makefile 428 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # (C) Copyright 2012 Henrik Nordstrom <henrik@henriknordstrom.net>
  4. #
  5. # Based on some other Makefile
  6. # (C) Copyright 2000-2003
  7. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  8. obj-y += timer.o
  9. obj-$(CONFIG_MACH_SUN6I) += tzpc.o
  10. obj-$(CONFIG_MACH_SUN8I_H3) += tzpc.o
  11. ifndef CONFIG_SPL_BUILD
  12. obj-$(CONFIG_ARMV7_PSCI) += psci.o
  13. endif
  14. ifdef CONFIG_SPL_BUILD
  15. obj-y += fel_utils.o
  16. endif