Makefile 767 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # (C) Copyright 2000-2006
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # SPDX-License-Identifier: GPL-2.0+
  6. #
  7. obj-y := board.o
  8. hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE))
  9. init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/ps7_init_gpl.c),\
  10. $(hw-platform-y)/ps7_init_gpl.o)
  11. ifeq ($(init-objs),)
  12. ifneq ($(wildcard $(srctree)/$(src)/ps7_init_gpl.c),)
  13. init-objs := ps7_init_gpl.o
  14. $(if $(CONFIG_SPL_BUILD),\
  15. $(warning Put custom ps7_init_gpl.c/h to board/xilinx/zynq/custom_hw_platform/))
  16. endif
  17. endif
  18. obj-$(CONFIG_SPL_BUILD) += $(init-objs)
  19. # Suppress "warning: function declaration isn't a prototype"
  20. CFLAGS_REMOVE_ps7_init_gpl.o := -Wstrict-prototypes
  21. # To include xil_io.h
  22. CFLAGS_ps7_init_gpl.o := -I$(srctree)/$(src)