# SPDX-License-Identifier: GPL-2.0
#
# (C) COPYRIGHT 2019-2020 ARM Limited. All rights reserved.
#
# This program is free software and is provided to you under the terms of the
# GNU General Public License version 2 as published by the Free Software
# Foundation, and any use by you of this program is subject to the terms
# of such GNU licence.
#
# A copy of the licence is included with the program, and can also be obtained
# from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA  02110-1301, USA.
#
#

ifneq ($(CONFIG_XEN),)
obj-$(CONFIG_MALI_ARBITRATION) := mali_arbif_xenback.o
endif

mali_arbif_xenback-y := mali_arbif_xenback_main.o mali_arbif_xenback_hypercall.o

# Set up defaults if not defined by build system
MALI_ARBITER_TEST_API ?= 0

# Set up our defines, which will be passed to gcc
DEFINES = \
	-DMALI_ARBITER_TEST_API=$(MALI_ARBITER_TEST_API)

# Use our defines when compiling
ccflags-y += $(DEFINES)
subdir-ccflags-y += $(DEFINES)