Makefile 412 B

123456789101112131415161718
  1. #
  2. # (C) Copyright 2002-2006
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # SPDX-License-Identifier: GPL-2.0+
  6. #
  7. obj-y += post.o
  8. obj-$(CONFIG_POST_STD_LIST) += tests.o
  9. obj-y += drivers/
  10. obj-$(CONFIG_PPC) += lib_powerpc/
  11. obj-$(CONFIG_MPC83xx) += cpu/mpc83xx/
  12. obj-$(CONFIG_8xx) += cpu/mpc8xx/
  13. obj-$(CONFIG_4xx) += cpu/ppc4xx/
  14. ifneq ($(filter lwmon5 pdm360ng,$(BOARD)),)
  15. obj-y += board/$(BOARD)/
  16. endif