#
# Copyright (C) 2010-2012 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.
#

DRIVER_DIR_UMP=$(srctree)/$(src)

UMP_FILE_PREFIX =
UDD_FILE_PREFIX = ../mali/

ifneq ($(DRIVER_DIR_UMP),)
include $(DRIVER_DIR_UMP)/Makefile.common
else
include ./Makefile.common
endif

# For each arch check: CROSS_COMPILE , KDIR , CFLAGS += -DARCH

ARCH ?= arm
BUILD ?= debug

EXTRA_CFLAGS += -DDEBUG -DMALI_STATE_TRACKING=0
ifeq ($(BUILD), debug)
EXTRA_CFLAGS += -DDEBUG
endif

# linux build system integration

EXTRA_CFLAGS += -I$(DRIVER_DIR_UMP) -I$(DRIVER_DIR_UMP)/common -I$(DRIVER_DIR_UMP)/linux -I$(DRIVER_DIR_UMP)/../mali/common -I$(DRIVER_DIR_UMP)/../mali/linux -I$(DRIVER_DIR_UMP)/../../ump/include/ump -I$(DRIVER_DIR_UMP)/../include/ump

# For customer releases the Linux Device Drivers will be provided as ARM proprietary and GPL releases:
# The ARM proprietary product will only include the license/proprietary directory
# The GPL product will only include the license/gpl directory

ifeq ($(wildcard $(DRIVER_DIR_UMP)/linux/license/gpl/*),)
EXTRA_CFLAGS += -I$(DRIVER_DIR_UMP)/linux/license/proprietary
else
EXTRA_CFLAGS += -I$(DRIVER_DIR_UMP)/linux/license/gpl
endif

SRC +=	$(UMP_FILE_PREFIX)linux/ump_kernel_linux.c \
	$(UMP_FILE_PREFIX)linux/ump_kernel_memory_backend_os.c \
	$(UMP_FILE_PREFIX)linux/ump_kernel_memory_backend_dedicated.c \
	$(UMP_FILE_PREFIX)linux/ump_memory_backend.c \
	$(UMP_FILE_PREFIX)linux/ump_ukk_wrappers.c \
	$(UMP_FILE_PREFIX)linux/ump_ukk_ref_wrappers.c \
	$(UMP_FILE_PREFIX)linux/ump_osk_atomics.c \
	$(UMP_FILE_PREFIX)linux/ump_osk_low_level_mem.c \
	$(UMP_FILE_PREFIX)linux/ump_osk_misc.c \
	$(UDD_FILE_PREFIX)linux/mali_osk_atomics.c \
	$(UDD_FILE_PREFIX)linux/mali_osk_locks.c \
	$(UDD_FILE_PREFIX)linux/mali_osk_memory.c \
	$(UDD_FILE_PREFIX)linux/mali_osk_math.c \
	$(UDD_FILE_PREFIX)linux/mali_osk_misc.c

# Selecting files to compile by parsing the config file

MODULE:=ump.ko

obj-m := $(MODULE:.ko=.o)
$(MODULE:.ko=-y) := $(SRC:.c=.o)
