Merge branch 'master' of git://git.denx.de/u-boot
[oweals/u-boot.git] / board / xilinx / zynqmp / Makefile
1 #
2 # (C) Copyright 2014 - 2016 Xilinx, Inc.
3 # Michal Simek <michal.simek@xilinx.com>
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 obj-y   := zynqmp.o
9
10 hw-platform-y :=$(shell echo $(CONFIG_SYS_CONFIG_NAME))
11
12 init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/psu_init_gpl.c),\
13         $(hw-platform-y)/psu_init_gpl.o)
14
15 ifeq ($(init-objs),)
16 ifneq ($(wildcard $(srctree)/$(src)/psu_init_gpl.c),)
17 init-objs := psu_init_gpl.o
18 $(if $(CONFIG_SPL_BUILD),\
19 $(warning Put custom psu_init_gpl.c/h to board/xilinx/zynqmp/custom_hw_platform/))
20 endif
21 endif
22
23 obj-$(CONFIG_SPL_BUILD) += $(init-objs)
24
25 # Suppress "warning: function declaration isn't a prototype"
26 CFLAGS_REMOVE_psu_init_gpl.o := -Wstrict-prototypes
27
28 # To include xil_io.h
29 CFLAGS_psu_init_gpl.o := -I$(srctree)/$(src)
30
31 # To suppress "warning: cast to pointer from integer of different size"
32 CFLAGS_psu_init_gpl.o += -Wno-int-to-pointer-cast