Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # (C) Copyright 2000-2006
  4. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. obj-y := board.o
  6. ifneq ($(CONFIG_XILINX_PS_INIT_FILE),"")
  7. PS_INIT_FILE := $(shell cd $(srctree); readlink -f $(CONFIG_XILINX_PS_INIT_FILE))
  8. init-objs := ps_init_gpl.o
  9. spl/board/xilinx/zynq/ps_init_gpl.o board/xilinx/zynq/ps_init_gpl.o: $(PS_INIT_FILE)
  10. $(CC) $(c_flags) -I $(srctree)/$(src) -c -o $@ $^
  11. endif
  12. DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%)
  13. ifeq ($(DEVICE_TREE),)
  14. DEVICE_TREE := unset
  15. endif
  16. ifeq ($(init-objs),)
  17. hw-platform-y :=$(shell echo $(DEVICE_TREE))
  18. init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/ps7_init_gpl.c),\
  19. $(hw-platform-y)/ps7_init_gpl.o)
  20. endif
  21. ifeq ($(init-objs),)
  22. ifneq ($(wildcard $(srctree)/$(src)/ps7_init_gpl.c),)
  23. init-objs := ps7_init_gpl.o
  24. $(if $(CONFIG_SPL_BUILD),\
  25. $(warning Put custom ps7_init_gpl.c/h to board/xilinx/zynq/custom_hw_platform/))
  26. endif
  27. endif
  28. ifndef CONFIG_SPL_BUILD
  29. obj-$(CONFIG_CMD_ZYNQ) += cmds.o
  30. obj-$(CONFIG_CMD_ZYNQ_RSA) += bootimg.o
  31. endif
  32. obj-$(CONFIG_SPL_BUILD) += $(init-objs)
  33. # Suppress "warning: function declaration isn't a prototype"
  34. CFLAGS_REMOVE_ps7_init_gpl.o := -Wstrict-prototypes
  35. # To include xil_io.h
  36. CFLAGS_ps7_init_gpl.o := -I$(srctree)/$(src)