mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 09:08:05 -04:00
16 lines
562 B
Makefile
16 lines
562 B
Makefile
#
|
|
# Makefile for Secure OS booster API
|
|
#
|
|
obj-$(CONFIG_SECURE_OS_BOOSTER_API) += sec_os_booster.o
|
|
|
|
# MobiCore kernel driver path
|
|
GUD_ROOT_FOLDER := drivers/gud/gud-exynos8890
|
|
|
|
# Choose one platform from the folder
|
|
MOBICORE_PLATFORM := $(shell (ls -1 $(GUD_ROOT_FOLDER)/MobiCoreDriver/platforms | tail -1) )
|
|
# Use the available platform folder
|
|
ccflags-y += -I$(GUD_ROOT_FOLDER)/MobiCoreDriver/platforms/$(MOBICORE_PLATFORM)
|
|
|
|
# Includes MobiCore kernel driver
|
|
ccflags-y += -I$(GUD_ROOT_FOLDER)/MobiCoreDriver
|
|
ccflags-y += -I$(GUD_ROOT_FOLDER)/MobiCoreDriver/public
|