libfdt.mk 536 B

1234567891011121314151617181920212223
  1. #
  2. # Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. ifndef libfdt-mk
  7. libfdt-mk := 1
  8. LIBFDT_SRCS := $(addprefix lib/libfdt/, \
  9. fdt.c \
  10. fdt_addresses.c \
  11. fdt_empty_tree.c \
  12. fdt_ro.c \
  13. fdt_rw.c \
  14. fdt_strerror.c \
  15. fdt_sw.c \
  16. fdt_wip.c)
  17. INCLUDES += -Iinclude/lib/libfdt
  18. $(eval $(call MAKE_LIB,fdt))
  19. endif