38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2015 MediaTek Inc.
|
||
|
#
|
||
|
# This program is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License version 2 as
|
||
|
# published by the Free Software Foundation.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
|
||
|
ifeq ($(CONFIG_MTK_SECURITY_SW_SUPPORT), y)
|
||
|
#######################################
|
||
|
# Specify source files
|
||
|
#######################################
|
||
|
#include $(MTK_ROOT_BUILD)/Makefile
|
||
|
|
||
|
MTK_PLATFORM := $(subst ",,$(CONFIG_MTK_PLATFORM))
|
||
|
MASP_CORE_DRIVER_DIR := $(srctree)/drivers/misc/mediatek/masp
|
||
|
|
||
|
#Kernel 3.18 always use asfv2
|
||
|
asf_link := asfv2
|
||
|
|
||
|
############################################
|
||
|
#[core_obj] include all the files under asf/core
|
||
|
################################################
|
||
|
include $(MASP_CORE_DRIVER_DIR)/$(asf_link)/Makefile.core
|
||
|
include $(MASP_CORE_DRIVER_DIR)/$(asf_link)/Makefile.mach
|
||
|
|
||
|
# INCLUDE ASP LIBRARY
|
||
|
sec-y += $(core_obj) $(mach_obj)
|
||
|
|
||
|
# BUILD-IN
|
||
|
obj-y += sec.o
|
||
|
endif
|