config.mk 299 B

123456789101112131415161718
  1. #
  2. # (C) Copyright 2002
  3. # Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  4. #
  5. # SPDX-License-Identifier: GPL-2.0+
  6. #
  7. PLATFORM_CPPFLAGS += -march=armv5te
  8. ifneq ($(CONFIG_IMX_CONFIG),)
  9. ifdef CONFIG_SPL
  10. ifdef CONFIG_SPL_BUILD
  11. ALL-y += $(OBJTREE)/SPL
  12. endif
  13. else
  14. ALL-y += u-boot.imx
  15. endif
  16. endif