Makefile 480 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright 2019 Google LLC
  4. obj-$(CONFIG_SPL_BUILD) += cpu_spl.o
  5. obj-$(CONFIG_SPL_BUILD) += spl.o
  6. obj-$(CONFIG_SPL_BUILD) += systemagent.o
  7. obj-y += cpu_common.o
  8. ifndef CONFIG_TPL_BUILD
  9. obj-y += cpu.o
  10. obj-y += punit.o
  11. obj-y += fsp_bindings.o
  12. ifdef CONFIG_SPL_BUILD
  13. obj-y += fsp_m.o
  14. endif
  15. endif
  16. ifndef CONFIG_SPL_BUILD
  17. obj-y += acpi.o
  18. obj-y += fsp_s.o
  19. endif
  20. obj-y += hostbridge.o
  21. obj-y += lpc.o
  22. obj-y += pch.o
  23. obj-y += pmc.o
  24. obj-y += uart.o